From 268f5b9159269dc26c12407d56864cee2ccc944c Mon Sep 17 00:00:00 2001 From: wlt233 <1486185683@qq.com> Date: Wed, 13 Nov 2024 14:53:49 +0800 Subject: [PATCH] v0.1 --- .gitignore | 112 ++ conf.ini | 11 + cookie.py | 69 + data/able_d1.json | 1 + data/able_d2.json | 1 + data/chromedriver.exe | Bin 0 -> 17848832 bytes data/common_old.onnx | Bin 0 -> 13606051 bytes ocr/__init__.py | 2803 +++++++++++++++++++++++++++++++++++++++++ ticket.py | 251 ++++ 9 files changed, 3248 insertions(+) create mode 100644 .gitignore create mode 100644 conf.ini create mode 100644 cookie.py create mode 100644 data/able_d1.json create mode 100644 data/able_d2.json create mode 100644 data/chromedriver.exe create mode 100644 data/common_old.onnx create mode 100644 ocr/__init__.py create mode 100644 ticket.py diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..c1805bb --- /dev/null +++ b/.gitignore @@ -0,0 +1,112 @@ + + +captcha.jpg + + +# Byte-compiled / optimized / DLL files +__pycache__/ +*.py[cod] +*$py.class + +# C extensions +*.so + +# Distribution / packaging +.Python +build/ +develop-eggs/ +dist/ +downloads/ +eggs/ +.eggs/ +lib/ +lib64/ +parts/ +sdist/ +var/ +wheels/ +*.egg-info/ +.installed.cfg +*.egg +MANIFEST + +# PyInstaller +# Usually these files are written by a python script from a template +# before PyInstaller builds the exe, so as to inject date/other infos into it. +*.manifest +*.spec + +# Installer logs +pip-log.txt +pip-delete-this-directory.txt + +# Unit test / coverage reports +htmlcov/ +.tox/ +.coverage +.coverage.* +.cache +nosetests.xml +coverage.xml +*.cover +.hypothesis/ +.pytest_cache/ + +# Translations +*.mo +*.pot + +# Django stuff: +*.log +local_settings.py +db.sqlite3 + +# Flask stuff: +instance/ +.webassets-cache + +# Scrapy stuff: +.scrapy + +# Sphinx documentation +docs/_build/ + +# PyBuilder +target/ + +# Jupyter Notebook +.ipynb_checkpoints + +# pyenv +.python-version + +# celery beat schedule file +celerybeat-schedule + +# SageMath parsed files +*.sage.py + +# Environments +.env +.venv +env/ +venv/ +ENV/ +env.bak/ +venv.bak/ + +# Spyder project settings +.spyderproject +.spyproject + +# Rope project settings +.ropeproject + +# mkdocs documentation +/site + +# mypy +.mypy_cache/ + +# add +.idea/ \ No newline at end of file diff --git a/conf.ini b/conf.ini new file mode 100644 index 0000000..a37eefc --- /dev/null +++ b/conf.ini @@ -0,0 +1,11 @@ +[conf] +proxy = socks5://localhost:7890 +headless = 1 +interval = 1000 +username = vj.zhzh.dbb.d.udhj.db@gmail.com +password = Nijigasaki27 +cookie = + +[seat] +seats = d1 1층 FLOOR 4구역 8열 2번,d2 1층 4구역 7열 4번 + diff --git a/cookie.py b/cookie.py new file mode 100644 index 0000000..6e81d46 --- /dev/null +++ b/cookie.py @@ -0,0 +1,69 @@ + +import time +import traceback + +from loguru import logger +from selenium import webdriver +from selenium.webdriver.chrome.options import Options +from selenium.webdriver.common.by import By + +from ocr import DdddOcr + +# code by wlt233 | for LoveLive! Series AsiaTour 2024 +# 2024.11.10 | v0.1 +# ref: https://www.ticketlink.co.kr/global/zh/product/51390 + +def get_cookie(username, password, headless): + try: + ocr = DdddOcr(origin_onnx_path="./data/common_old.onnx", show_ad=False) + ocr.set_ranges(2) + + options = Options() + options.headless = headless + driver = webdriver.Chrome(chrome_options=options, + executable_path="./data/chromedriver.exe") + driver.get("https://www.ticketlink.co.kr/global/zh/product/51390") + driver.find_element(by=By.ID,value="loginBtn").click() + time.sleep(3) + + driver.switch_to.window(driver.window_handles[-1]) + driver.find_element(by=By.ID,value="id").send_keys(username) + driver.find_element(by=By.ID,value="pw").send_keys(password) + driver.find_element(by=By.ID,value="loginBtn").click() + time.sleep(3) + + driver.switch_to.window(driver.window_handles[-1]) + driver.get("https://www.ticketlink.co.kr/global/zh/reserve/plan/schedule/1740993756") + + driver.find_element(by=By.ID,value="captcha_img").screenshot("./data/captcha.jpg") + with open("./data/captcha.jpg", "rb") as f: + img = f.read() + result = str(ocr.classification(img)).upper() + logger.info(f"验证码:{result}") + driver.find_element(by=By.ID,value="ipt_captcha").send_keys(result) + driver.find_element(by=By.CLASS_NAME,value="btn_submit").click() + time.sleep(1) + error_cls = driver.execute_script("return document.getElementsByClassName('txt_error')[0].getAttribute('class');") + while not "ng-hide" in error_cls: + driver.execute_script("document.getElementsByClassName('btn_refresh')[2].click();") + time.sleep(1) + driver.find_element(by=By.ID,value="captcha_img").screenshot("./data/captcha.jpg") + with open("./data/captcha.jpg", "rb") as f: + img = f.read() + result = str(ocr.classification(img)).upper() + logger.info(f"验证码:{result}") + driver.find_element(by=By.ID,value="ipt_captcha").send_keys(result) + driver.find_element(by=By.CLASS_NAME,value="btn_submit").click() + time.sleep(1) + error_cls = driver.execute_script("return document.getElementsByClassName('txt_error')[0].getAttribute('class');") + + cookies = driver.execute_script("return document.cookie;") + return cookies + except Exception as e: + logger.error(f"{e} {e.args}\n{traceback.format_exc()}") + return "" + + + +if __name__ == "__main__": + get_cookie("vj.zhzh.dbb.d.udhj.db@gmail.com", "Nijigasaki27", False) \ No newline at end of file diff --git a/data/able_d1.json b/data/able_d1.json new file mode 100644 index 0000000..4465908 --- /dev/null +++ b/data/able_d1.json @@ -0,0 +1 @@ +{"3:2": [{"logicalSeatId": 1537114782, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 734.0}, "se": {"x": 896.0, "y": 744.0}, "sw": {"x": 906.0, "y": 734.0}, "nw": {"x": 906.0, "y": 744.0}}, "position": {"x": 901.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114783, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 734.0}, "se": {"x": 910.0, "y": 744.0}, "sw": {"x": 920.0, "y": 734.0}, "nw": {"x": 920.0, "y": 744.0}}, "position": {"x": 915.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114784, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 734.0}, "se": {"x": 924.0, "y": 744.0}, "sw": {"x": 934.0, "y": 734.0}, "nw": {"x": 934.0, "y": 744.0}}, "position": {"x": 929.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114785, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 734.0}, "se": {"x": 938.0, "y": 744.0}, "sw": {"x": 948.0, "y": 734.0}, "nw": {"x": 948.0, "y": 744.0}}, "position": {"x": 943.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114786, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 748.0}, "se": {"x": 868.0, "y": 758.0}, "sw": {"x": 878.0, "y": 748.0}, "nw": {"x": 878.0, "y": 758.0}}, "position": {"x": 873.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114787, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 748.0}, "se": {"x": 882.0, "y": 758.0}, "sw": {"x": 892.0, "y": 748.0}, "nw": {"x": 892.0, "y": 758.0}}, "position": {"x": 887.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114788, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 748.0}, "se": {"x": 896.0, "y": 758.0}, "sw": {"x": 906.0, "y": 748.0}, "nw": {"x": 906.0, "y": 758.0}}, "position": {"x": 901.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114789, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 748.0}, "se": {"x": 910.0, "y": 758.0}, "sw": {"x": 920.0, "y": 748.0}, "nw": {"x": 920.0, "y": 758.0}}, "position": {"x": 915.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114790, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 748.0}, "se": {"x": 924.0, "y": 758.0}, "sw": {"x": 934.0, "y": 748.0}, "nw": {"x": 934.0, "y": 758.0}}, "position": {"x": 929.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114791, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 748.0}, "se": {"x": 938.0, "y": 758.0}, "sw": {"x": 948.0, "y": 748.0}, "nw": {"x": 948.0, "y": 758.0}}, "position": {"x": 943.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114792, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 762.0}, "se": {"x": 840.0, "y": 772.0}, "sw": {"x": 850.0, "y": 762.0}, "nw": {"x": 850.0, "y": 772.0}}, "position": {"x": 845.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114793, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 762.0}, "se": {"x": 854.0, "y": 772.0}, "sw": {"x": 864.0, "y": 762.0}, "nw": {"x": 864.0, "y": 772.0}}, "position": {"x": 859.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114794, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 762.0}, "se": {"x": 868.0, "y": 772.0}, "sw": {"x": 878.0, "y": 762.0}, "nw": {"x": 878.0, "y": 772.0}}, "position": {"x": 873.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114795, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 762.0}, "se": {"x": 882.0, "y": 772.0}, "sw": {"x": 892.0, "y": 762.0}, "nw": {"x": 892.0, "y": 772.0}}, "position": {"x": 887.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114796, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 762.0}, "se": {"x": 896.0, "y": 772.0}, "sw": {"x": 906.0, "y": 762.0}, "nw": {"x": 906.0, "y": 772.0}}, "position": {"x": 901.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114797, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 762.0}, "se": {"x": 910.0, "y": 772.0}, "sw": {"x": 920.0, "y": 762.0}, "nw": {"x": 920.0, "y": 772.0}}, "position": {"x": 915.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114798, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 762.0}, "se": {"x": 924.0, "y": 772.0}, "sw": {"x": 934.0, "y": 762.0}, "nw": {"x": 934.0, "y": 772.0}}, "position": {"x": 929.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114799, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 762.0}, "se": {"x": 938.0, "y": 772.0}, "sw": {"x": 948.0, "y": 762.0}, "nw": {"x": 948.0, "y": 772.0}}, "position": {"x": 943.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "2:3": [{"logicalSeatId": 1537114119, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 813.0}, "se": {"x": 604.0, "y": 813.0}, "sw": {"x": 614.0, "y": 823.0}, "nw": {"x": 604.0, "y": 823.0}}, "position": {"x": 609.0, "y": 818.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1435, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114120, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 827.0}, "se": {"x": 604.0, "y": 827.0}, "sw": {"x": 614.0, "y": 837.0}, "nw": {"x": 604.0, "y": 837.0}}, "position": {"x": 609.0, "y": 832.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1434, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114121, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 841.0}, "se": {"x": 604.0, "y": 841.0}, "sw": {"x": 614.0, "y": 851.0}, "nw": {"x": 604.0, "y": 851.0}}, "position": {"x": 609.0, "y": 846.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1433, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114122, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 855.0}, "se": {"x": 604.0, "y": 855.0}, "sw": {"x": 614.0, "y": 865.0}, "nw": {"x": 604.0, "y": 865.0}}, "position": {"x": 609.0, "y": 860.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1432, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114123, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 869.0}, "se": {"x": 604.0, "y": 869.0}, "sw": {"x": 614.0, "y": 879.0}, "nw": {"x": 604.0, "y": 879.0}}, "position": {"x": 609.0, "y": 874.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1431, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114124, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 883.0}, "se": {"x": 604.0, "y": 883.0}, "sw": {"x": 614.0, "y": 893.0}, "nw": {"x": 604.0, "y": 893.0}}, "position": {"x": 609.0, "y": 888.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1430, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114125, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 897.0}, "se": {"x": 604.0, "y": 897.0}, "sw": {"x": 614.0, "y": 907.0}, "nw": {"x": 604.0, "y": 907.0}}, "position": {"x": 609.0, "y": 902.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1429, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114126, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 911.0}, "se": {"x": 604.0, "y": 911.0}, "sw": {"x": 614.0, "y": 921.0}, "nw": {"x": 604.0, "y": 921.0}}, "position": {"x": 609.0, "y": 916.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1428, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114127, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 925.0}, "se": {"x": 604.0, "y": 925.0}, "sw": {"x": 614.0, "y": 935.0}, "nw": {"x": 604.0, "y": 935.0}}, "position": {"x": 609.0, "y": 930.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1427, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114128, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 939.0}, "se": {"x": 604.0, "y": 939.0}, "sw": {"x": 614.0, "y": 949.0}, "nw": {"x": 604.0, "y": 949.0}}, "position": {"x": 609.0, "y": 944.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1426, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114129, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 953.0}, "se": {"x": 604.0, "y": 953.0}, "sw": {"x": 614.0, "y": 963.0}, "nw": {"x": 604.0, "y": 963.0}}, "position": {"x": 609.0, "y": 958.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1425, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114130, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 967.0}, "se": {"x": 604.0, "y": 967.0}, "sw": {"x": 614.0, "y": 977.0}, "nw": {"x": 604.0, "y": 977.0}}, "position": {"x": 609.0, "y": 972.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1424, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114131, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 981.0}, "se": {"x": 604.0, "y": 981.0}, "sw": {"x": 614.0, "y": 991.0}, "nw": {"x": 604.0, "y": 991.0}}, "position": {"x": 609.0, "y": 986.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1423, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114132, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 995.0}, "se": {"x": 604.0, "y": 995.0}, "sw": {"x": 614.0, "y": 1005.0}, "nw": {"x": 604.0, "y": 1005.0}}, "position": {"x": 609.0, "y": 1000.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1422, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114133, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1009.0}, "se": {"x": 604.0, "y": 1009.0}, "sw": {"x": 614.0, "y": 1019.0}, "nw": {"x": 604.0, "y": 1019.0}}, "position": {"x": 609.0, "y": 1014.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1421, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114141, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 813.0}, "se": {"x": 590.0, "y": 813.0}, "sw": {"x": 600.0, "y": 823.0}, "nw": {"x": 590.0, "y": 823.0}}, "position": {"x": 595.0, "y": 818.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1328, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114142, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 827.0}, "se": {"x": 590.0, "y": 827.0}, "sw": {"x": 600.0, "y": 837.0}, "nw": {"x": 590.0, "y": 837.0}}, "position": {"x": 595.0, "y": 832.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1327, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114143, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 841.0}, "se": {"x": 590.0, "y": 841.0}, "sw": {"x": 600.0, "y": 851.0}, "nw": {"x": 590.0, "y": 851.0}}, "position": {"x": 595.0, "y": 846.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1326, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114144, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 855.0}, "se": {"x": 590.0, "y": 855.0}, "sw": {"x": 600.0, "y": 865.0}, "nw": {"x": 590.0, "y": 865.0}}, "position": {"x": 595.0, "y": 860.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1325, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114145, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 869.0}, "se": {"x": 590.0, "y": 869.0}, "sw": {"x": 600.0, "y": 879.0}, "nw": {"x": 590.0, "y": 879.0}}, "position": {"x": 595.0, "y": 874.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1324, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114146, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 883.0}, "se": {"x": 590.0, "y": 883.0}, "sw": {"x": 600.0, "y": 893.0}, "nw": {"x": 590.0, "y": 893.0}}, "position": {"x": 595.0, "y": 888.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1323, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114147, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 897.0}, "se": {"x": 590.0, "y": 897.0}, "sw": {"x": 600.0, "y": 907.0}, "nw": {"x": 590.0, "y": 907.0}}, "position": {"x": 595.0, "y": 902.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1322, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114148, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 911.0}, "se": {"x": 590.0, "y": 911.0}, "sw": {"x": 600.0, "y": 921.0}, "nw": {"x": 590.0, "y": 921.0}}, "position": {"x": 595.0, "y": 916.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1321, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114149, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 925.0}, "se": {"x": 590.0, "y": 925.0}, "sw": {"x": 600.0, "y": 935.0}, "nw": {"x": 590.0, "y": 935.0}}, "position": {"x": 595.0, "y": 930.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1320, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114150, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 939.0}, "se": {"x": 590.0, "y": 939.0}, "sw": {"x": 600.0, "y": 949.0}, "nw": {"x": 590.0, "y": 949.0}}, "position": {"x": 595.0, "y": 944.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1319, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114151, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 953.0}, "se": {"x": 590.0, "y": 953.0}, "sw": {"x": 600.0, "y": 963.0}, "nw": {"x": 590.0, "y": 963.0}}, "position": {"x": 595.0, "y": 958.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1318, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114152, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 967.0}, "se": {"x": 590.0, "y": 967.0}, "sw": {"x": 600.0, "y": 977.0}, "nw": {"x": 590.0, "y": 977.0}}, "position": {"x": 595.0, "y": 972.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1317, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114153, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 981.0}, "se": {"x": 590.0, "y": 981.0}, "sw": {"x": 600.0, "y": 991.0}, "nw": {"x": 590.0, "y": 991.0}}, "position": {"x": 595.0, "y": 986.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1316, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114154, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 995.0}, "se": {"x": 590.0, "y": 995.0}, "sw": {"x": 600.0, "y": 1005.0}, "nw": {"x": 590.0, "y": 1005.0}}, "position": {"x": 595.0, "y": 1000.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1315, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114155, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1009.0}, "se": {"x": 590.0, "y": 1009.0}, "sw": {"x": 600.0, "y": 1019.0}, "nw": {"x": 590.0, "y": 1019.0}}, "position": {"x": 595.0, "y": 1014.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1314, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}], "3:3": [{"logicalSeatId": 1537114800, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 776.0}, "se": {"x": 812.0, "y": 786.0}, "sw": {"x": 822.0, "y": 776.0}, "nw": {"x": 822.0, "y": 786.0}}, "position": {"x": 817.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114801, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 776.0}, "se": {"x": 826.0, "y": 786.0}, "sw": {"x": 836.0, "y": 776.0}, "nw": {"x": 836.0, "y": 786.0}}, "position": {"x": 831.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114802, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 776.0}, "se": {"x": 840.0, "y": 786.0}, "sw": {"x": 850.0, "y": 776.0}, "nw": {"x": 850.0, "y": 786.0}}, "position": {"x": 845.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114803, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 776.0}, "se": {"x": 854.0, "y": 786.0}, "sw": {"x": 864.0, "y": 776.0}, "nw": {"x": 864.0, "y": 786.0}}, "position": {"x": 859.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114804, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 776.0}, "se": {"x": 868.0, "y": 786.0}, "sw": {"x": 878.0, "y": 776.0}, "nw": {"x": 878.0, "y": 786.0}}, "position": {"x": 873.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114805, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 776.0}, "se": {"x": 882.0, "y": 786.0}, "sw": {"x": 892.0, "y": 776.0}, "nw": {"x": 892.0, "y": 786.0}}, "position": {"x": 887.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114806, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 776.0}, "se": {"x": 896.0, "y": 786.0}, "sw": {"x": 906.0, "y": 776.0}, "nw": {"x": 906.0, "y": 786.0}}, "position": {"x": 901.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114807, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 776.0}, "se": {"x": 910.0, "y": 786.0}, "sw": {"x": 920.0, "y": 776.0}, "nw": {"x": 920.0, "y": 786.0}}, "position": {"x": 915.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114808, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 776.0}, "se": {"x": 924.0, "y": 786.0}, "sw": {"x": 934.0, "y": 776.0}, "nw": {"x": 934.0, "y": 786.0}}, "position": {"x": 929.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114809, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 776.0}, "se": {"x": 938.0, "y": 786.0}, "sw": {"x": 948.0, "y": 776.0}, "nw": {"x": 948.0, "y": 786.0}}, "position": {"x": 943.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114810, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 790.0}, "se": {"x": 812.0, "y": 800.0}, "sw": {"x": 822.0, "y": 790.0}, "nw": {"x": 822.0, "y": 800.0}}, "position": {"x": 817.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114811, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 790.0}, "se": {"x": 826.0, "y": 800.0}, "sw": {"x": 836.0, "y": 790.0}, "nw": {"x": 836.0, "y": 800.0}}, "position": {"x": 831.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114812, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 790.0}, "se": {"x": 840.0, "y": 800.0}, "sw": {"x": 850.0, "y": 790.0}, "nw": {"x": 850.0, "y": 800.0}}, "position": {"x": 845.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114813, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 790.0}, "se": {"x": 854.0, "y": 800.0}, "sw": {"x": 864.0, "y": 790.0}, "nw": {"x": 864.0, "y": 800.0}}, "position": {"x": 859.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114814, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 790.0}, "se": {"x": 868.0, "y": 800.0}, "sw": {"x": 878.0, "y": 790.0}, "nw": {"x": 878.0, "y": 800.0}}, "position": {"x": 873.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114815, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 790.0}, "se": {"x": 882.0, "y": 800.0}, "sw": {"x": 892.0, "y": 790.0}, "nw": {"x": 892.0, "y": 800.0}}, "position": {"x": 887.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114816, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 790.0}, "se": {"x": 896.0, "y": 800.0}, "sw": {"x": 906.0, "y": 790.0}, "nw": {"x": 906.0, "y": 800.0}}, "position": {"x": 901.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114817, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 790.0}, "se": {"x": 910.0, "y": 800.0}, "sw": {"x": 920.0, "y": 790.0}, "nw": {"x": 920.0, "y": 800.0}}, "position": {"x": 915.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114818, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 790.0}, "se": {"x": 924.0, "y": 800.0}, "sw": {"x": 934.0, "y": 790.0}, "nw": {"x": 934.0, "y": 800.0}}, "position": {"x": 929.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114819, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 790.0}, "se": {"x": 938.0, "y": 800.0}, "sw": {"x": 948.0, "y": 790.0}, "nw": {"x": 948.0, "y": 800.0}}, "position": {"x": 943.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114820, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 804.0}, "se": {"x": 812.0, "y": 814.0}, "sw": {"x": 822.0, "y": 804.0}, "nw": {"x": 822.0, "y": 814.0}}, "position": {"x": 817.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114821, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 804.0}, "se": {"x": 826.0, "y": 814.0}, "sw": {"x": 836.0, "y": 804.0}, "nw": {"x": 836.0, "y": 814.0}}, "position": {"x": 831.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114822, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 804.0}, "se": {"x": 840.0, "y": 814.0}, "sw": {"x": 850.0, "y": 804.0}, "nw": {"x": 850.0, "y": 814.0}}, "position": {"x": 845.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114823, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 804.0}, "se": {"x": 854.0, "y": 814.0}, "sw": {"x": 864.0, "y": 804.0}, "nw": {"x": 864.0, "y": 814.0}}, "position": {"x": 859.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114824, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 804.0}, "se": {"x": 868.0, "y": 814.0}, "sw": {"x": 878.0, "y": 804.0}, "nw": {"x": 878.0, "y": 814.0}}, "position": {"x": 873.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114825, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 804.0}, "se": {"x": 882.0, "y": 814.0}, "sw": {"x": 892.0, "y": 804.0}, "nw": {"x": 892.0, "y": 814.0}}, "position": {"x": 887.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114826, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 804.0}, "se": {"x": 896.0, "y": 814.0}, "sw": {"x": 906.0, "y": 804.0}, "nw": {"x": 906.0, "y": 814.0}}, "position": {"x": 901.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114827, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 804.0}, "se": {"x": 910.0, "y": 814.0}, "sw": {"x": 920.0, "y": 804.0}, "nw": {"x": 920.0, "y": 814.0}}, "position": {"x": 915.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114828, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 804.0}, "se": {"x": 924.0, "y": 814.0}, "sw": {"x": 934.0, "y": 804.0}, "nw": {"x": 934.0, "y": 814.0}}, "position": {"x": 929.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114829, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 804.0}, "se": {"x": 938.0, "y": 814.0}, "sw": {"x": 948.0, "y": 804.0}, "nw": {"x": 948.0, "y": 814.0}}, "position": {"x": 943.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114830, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 818.0}, "se": {"x": 812.0, "y": 828.0}, "sw": {"x": 822.0, "y": 818.0}, "nw": {"x": 822.0, "y": 828.0}}, "position": {"x": 817.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114831, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 818.0}, "se": {"x": 826.0, "y": 828.0}, "sw": {"x": 836.0, "y": 818.0}, "nw": {"x": 836.0, "y": 828.0}}, "position": {"x": 831.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114832, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 818.0}, "se": {"x": 840.0, "y": 828.0}, "sw": {"x": 850.0, "y": 818.0}, "nw": {"x": 850.0, "y": 828.0}}, "position": {"x": 845.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114833, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 818.0}, "se": {"x": 854.0, "y": 828.0}, "sw": {"x": 864.0, "y": 818.0}, "nw": {"x": 864.0, "y": 828.0}}, "position": {"x": 859.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114834, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 818.0}, "se": {"x": 868.0, "y": 828.0}, "sw": {"x": 878.0, "y": 818.0}, "nw": {"x": 878.0, "y": 828.0}}, "position": {"x": 873.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114835, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 818.0}, "se": {"x": 882.0, "y": 828.0}, "sw": {"x": 892.0, "y": 818.0}, "nw": {"x": 892.0, "y": 828.0}}, "position": {"x": 887.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114836, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 818.0}, "se": {"x": 896.0, "y": 828.0}, "sw": {"x": 906.0, "y": 818.0}, "nw": {"x": 906.0, "y": 828.0}}, "position": {"x": 901.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114837, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 818.0}, "se": {"x": 910.0, "y": 828.0}, "sw": {"x": 920.0, "y": 818.0}, "nw": {"x": 920.0, "y": 828.0}}, "position": {"x": 915.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114838, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 818.0}, "se": {"x": 924.0, "y": 828.0}, "sw": {"x": 934.0, "y": 818.0}, "nw": {"x": 934.0, "y": 828.0}}, "position": {"x": 929.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114839, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 818.0}, "se": {"x": 938.0, "y": 828.0}, "sw": {"x": 948.0, "y": 818.0}, "nw": {"x": 948.0, "y": 828.0}}, "position": {"x": 943.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114840, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 832.0}, "se": {"x": 812.0, "y": 842.0}, "sw": {"x": 822.0, "y": 832.0}, "nw": {"x": 822.0, "y": 842.0}}, "position": {"x": 817.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114841, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 832.0}, "se": {"x": 826.0, "y": 842.0}, "sw": {"x": 836.0, "y": 832.0}, "nw": {"x": 836.0, "y": 842.0}}, "position": {"x": 831.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114842, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 832.0}, "se": {"x": 840.0, "y": 842.0}, "sw": {"x": 850.0, "y": 832.0}, "nw": {"x": 850.0, "y": 842.0}}, "position": {"x": 845.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114843, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 832.0}, "se": {"x": 854.0, "y": 842.0}, "sw": {"x": 864.0, "y": 832.0}, "nw": {"x": 864.0, "y": 842.0}}, "position": {"x": 859.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114844, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 832.0}, "se": {"x": 868.0, "y": 842.0}, "sw": {"x": 878.0, "y": 832.0}, "nw": {"x": 878.0, "y": 842.0}}, "position": {"x": 873.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114845, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 832.0}, "se": {"x": 882.0, "y": 842.0}, "sw": {"x": 892.0, "y": 832.0}, "nw": {"x": 892.0, "y": 842.0}}, "position": {"x": 887.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114846, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 832.0}, "se": {"x": 896.0, "y": 842.0}, "sw": {"x": 906.0, "y": 832.0}, "nw": {"x": 906.0, "y": 842.0}}, "position": {"x": 901.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114847, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 832.0}, "se": {"x": 910.0, "y": 842.0}, "sw": {"x": 920.0, "y": 832.0}, "nw": {"x": 920.0, "y": 842.0}}, "position": {"x": 915.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114848, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 832.0}, "se": {"x": 924.0, "y": 842.0}, "sw": {"x": 934.0, "y": 832.0}, "nw": {"x": 934.0, "y": 842.0}}, "position": {"x": 929.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114849, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 832.0}, "se": {"x": 938.0, "y": 842.0}, "sw": {"x": 948.0, "y": 832.0}, "nw": {"x": 948.0, "y": 842.0}}, "position": {"x": 943.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114850, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 873.0}, "se": {"x": 812.0, "y": 883.0}, "sw": {"x": 822.0, "y": 873.0}, "nw": {"x": 822.0, "y": 883.0}}, "position": {"x": 817.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114851, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 873.0}, "se": {"x": 826.0, "y": 883.0}, "sw": {"x": 836.0, "y": 873.0}, "nw": {"x": 836.0, "y": 883.0}}, "position": {"x": 831.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114852, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 873.0}, "se": {"x": 840.0, "y": 883.0}, "sw": {"x": 850.0, "y": 873.0}, "nw": {"x": 850.0, "y": 883.0}}, "position": {"x": 845.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114853, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 873.0}, "se": {"x": 854.0, "y": 883.0}, "sw": {"x": 864.0, "y": 873.0}, "nw": {"x": 864.0, "y": 883.0}}, "position": {"x": 859.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114854, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 873.0}, "se": {"x": 868.0, "y": 883.0}, "sw": {"x": 878.0, "y": 873.0}, "nw": {"x": 878.0, "y": 883.0}}, "position": {"x": 873.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114855, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 873.0}, "se": {"x": 882.0, "y": 883.0}, "sw": {"x": 892.0, "y": 873.0}, "nw": {"x": 892.0, "y": 883.0}}, "position": {"x": 887.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114856, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 873.0}, "se": {"x": 896.0, "y": 883.0}, "sw": {"x": 906.0, "y": 873.0}, "nw": {"x": 906.0, "y": 883.0}}, "position": {"x": 901.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114857, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 873.0}, "se": {"x": 910.0, "y": 883.0}, "sw": {"x": 920.0, "y": 873.0}, "nw": {"x": 920.0, "y": 883.0}}, "position": {"x": 915.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114858, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 873.0}, "se": {"x": 924.0, "y": 883.0}, "sw": {"x": 934.0, "y": 873.0}, "nw": {"x": 934.0, "y": 883.0}}, "position": {"x": 929.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114859, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 873.0}, "se": {"x": 938.0, "y": 883.0}, "sw": {"x": 948.0, "y": 873.0}, "nw": {"x": 948.0, "y": 883.0}}, "position": {"x": 943.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114860, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 887.0}, "se": {"x": 812.0, "y": 897.0}, "sw": {"x": 822.0, "y": 887.0}, "nw": {"x": 822.0, "y": 897.0}}, "position": {"x": 817.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114861, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 887.0}, "se": {"x": 826.0, "y": 897.0}, "sw": {"x": 836.0, "y": 887.0}, "nw": {"x": 836.0, "y": 897.0}}, "position": {"x": 831.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114862, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 887.0}, "se": {"x": 840.0, "y": 897.0}, "sw": {"x": 850.0, "y": 887.0}, "nw": {"x": 850.0, "y": 897.0}}, "position": {"x": 845.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114863, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 887.0}, "se": {"x": 854.0, "y": 897.0}, "sw": {"x": 864.0, "y": 887.0}, "nw": {"x": 864.0, "y": 897.0}}, "position": {"x": 859.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114864, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 887.0}, "se": {"x": 868.0, "y": 897.0}, "sw": {"x": 878.0, "y": 887.0}, "nw": {"x": 878.0, "y": 897.0}}, "position": {"x": 873.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114865, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 887.0}, "se": {"x": 882.0, "y": 897.0}, "sw": {"x": 892.0, "y": 887.0}, "nw": {"x": 892.0, "y": 897.0}}, "position": {"x": 887.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114866, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 887.0}, "se": {"x": 896.0, "y": 897.0}, "sw": {"x": 906.0, "y": 887.0}, "nw": {"x": 906.0, "y": 897.0}}, "position": {"x": 901.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114867, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 887.0}, "se": {"x": 910.0, "y": 897.0}, "sw": {"x": 920.0, "y": 887.0}, "nw": {"x": 920.0, "y": 897.0}}, "position": {"x": 915.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114868, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 887.0}, "se": {"x": 924.0, "y": 897.0}, "sw": {"x": 934.0, "y": 887.0}, "nw": {"x": 934.0, "y": 897.0}}, "position": {"x": 929.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114869, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 887.0}, "se": {"x": 938.0, "y": 897.0}, "sw": {"x": 948.0, "y": 887.0}, "nw": {"x": 948.0, "y": 897.0}}, "position": {"x": 943.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114870, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 901.0}, "se": {"x": 812.0, "y": 911.0}, "sw": {"x": 822.0, "y": 901.0}, "nw": {"x": 822.0, "y": 911.0}}, "position": {"x": 817.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114871, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 901.0}, "se": {"x": 826.0, "y": 911.0}, "sw": {"x": 836.0, "y": 901.0}, "nw": {"x": 836.0, "y": 911.0}}, "position": {"x": 831.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114872, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 901.0}, "se": {"x": 840.0, "y": 911.0}, "sw": {"x": 850.0, "y": 901.0}, "nw": {"x": 850.0, "y": 911.0}}, "position": {"x": 845.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114873, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 901.0}, "se": {"x": 854.0, "y": 911.0}, "sw": {"x": 864.0, "y": 901.0}, "nw": {"x": 864.0, "y": 911.0}}, "position": {"x": 859.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114874, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 901.0}, "se": {"x": 868.0, "y": 911.0}, "sw": {"x": 878.0, "y": 901.0}, "nw": {"x": 878.0, "y": 911.0}}, "position": {"x": 873.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114875, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 901.0}, "se": {"x": 882.0, "y": 911.0}, "sw": {"x": 892.0, "y": 901.0}, "nw": {"x": 892.0, "y": 911.0}}, "position": {"x": 887.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114876, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 901.0}, "se": {"x": 896.0, "y": 911.0}, "sw": {"x": 906.0, "y": 901.0}, "nw": {"x": 906.0, "y": 911.0}}, "position": {"x": 901.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114877, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 901.0}, "se": {"x": 910.0, "y": 911.0}, "sw": {"x": 920.0, "y": 901.0}, "nw": {"x": 920.0, "y": 911.0}}, "position": {"x": 915.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114878, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 901.0}, "se": {"x": 924.0, "y": 911.0}, "sw": {"x": 934.0, "y": 901.0}, "nw": {"x": 934.0, "y": 911.0}}, "position": {"x": 929.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114879, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 901.0}, "se": {"x": 938.0, "y": 911.0}, "sw": {"x": 948.0, "y": 901.0}, "nw": {"x": 948.0, "y": 911.0}}, "position": {"x": 943.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114880, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 915.0}, "se": {"x": 812.0, "y": 925.0}, "sw": {"x": 822.0, "y": 915.0}, "nw": {"x": 822.0, "y": 925.0}}, "position": {"x": 817.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114881, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 915.0}, "se": {"x": 826.0, "y": 925.0}, "sw": {"x": 836.0, "y": 915.0}, "nw": {"x": 836.0, "y": 925.0}}, "position": {"x": 831.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114882, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 915.0}, "se": {"x": 840.0, "y": 925.0}, "sw": {"x": 850.0, "y": 915.0}, "nw": {"x": 850.0, "y": 925.0}}, "position": {"x": 845.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114883, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 915.0}, "se": {"x": 854.0, "y": 925.0}, "sw": {"x": 864.0, "y": 915.0}, "nw": {"x": 864.0, "y": 925.0}}, "position": {"x": 859.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114884, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 915.0}, "se": {"x": 868.0, "y": 925.0}, "sw": {"x": 878.0, "y": 915.0}, "nw": {"x": 878.0, "y": 925.0}}, "position": {"x": 873.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114885, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 915.0}, "se": {"x": 882.0, "y": 925.0}, "sw": {"x": 892.0, "y": 915.0}, "nw": {"x": 892.0, "y": 925.0}}, "position": {"x": 887.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114886, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 915.0}, "se": {"x": 896.0, "y": 925.0}, "sw": {"x": 906.0, "y": 915.0}, "nw": {"x": 906.0, "y": 925.0}}, "position": {"x": 901.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114887, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 915.0}, "se": {"x": 910.0, "y": 925.0}, "sw": {"x": 920.0, "y": 915.0}, "nw": {"x": 920.0, "y": 925.0}}, "position": {"x": 915.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114888, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 915.0}, "se": {"x": 924.0, "y": 925.0}, "sw": {"x": 934.0, "y": 915.0}, "nw": {"x": 934.0, "y": 925.0}}, "position": {"x": 929.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114889, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 915.0}, "se": {"x": 938.0, "y": 925.0}, "sw": {"x": 948.0, "y": 915.0}, "nw": {"x": 948.0, "y": 925.0}}, "position": {"x": 943.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114890, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 929.0}, "se": {"x": 812.0, "y": 939.0}, "sw": {"x": 822.0, "y": 929.0}, "nw": {"x": 822.0, "y": 939.0}}, "position": {"x": 817.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114891, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 929.0}, "se": {"x": 826.0, "y": 939.0}, "sw": {"x": 836.0, "y": 929.0}, "nw": {"x": 836.0, "y": 939.0}}, "position": {"x": 831.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114892, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 929.0}, "se": {"x": 840.0, "y": 939.0}, "sw": {"x": 850.0, "y": 929.0}, "nw": {"x": 850.0, "y": 939.0}}, "position": {"x": 845.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114893, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 929.0}, "se": {"x": 854.0, "y": 939.0}, "sw": {"x": 864.0, "y": 929.0}, "nw": {"x": 864.0, "y": 939.0}}, "position": {"x": 859.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114894, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 929.0}, "se": {"x": 868.0, "y": 939.0}, "sw": {"x": 878.0, "y": 929.0}, "nw": {"x": 878.0, "y": 939.0}}, "position": {"x": 873.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114895, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 929.0}, "se": {"x": 882.0, "y": 939.0}, "sw": {"x": 892.0, "y": 929.0}, "nw": {"x": 892.0, "y": 939.0}}, "position": {"x": 887.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114896, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 929.0}, "se": {"x": 896.0, "y": 939.0}, "sw": {"x": 906.0, "y": 929.0}, "nw": {"x": 906.0, "y": 939.0}}, "position": {"x": 901.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114897, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 929.0}, "se": {"x": 910.0, "y": 939.0}, "sw": {"x": 920.0, "y": 929.0}, "nw": {"x": 920.0, "y": 939.0}}, "position": {"x": 915.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114898, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 929.0}, "se": {"x": 924.0, "y": 939.0}, "sw": {"x": 934.0, "y": 929.0}, "nw": {"x": 934.0, "y": 939.0}}, "position": {"x": 929.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114899, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 929.0}, "se": {"x": 938.0, "y": 939.0}, "sw": {"x": 948.0, "y": 929.0}, "nw": {"x": 948.0, "y": 939.0}}, "position": {"x": 943.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114900, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 943.0}, "se": {"x": 812.0, "y": 953.0}, "sw": {"x": 822.0, "y": 943.0}, "nw": {"x": 822.0, "y": 953.0}}, "position": {"x": 817.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114901, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 943.0}, "se": {"x": 826.0, "y": 953.0}, "sw": {"x": 836.0, "y": 943.0}, "nw": {"x": 836.0, "y": 953.0}}, "position": {"x": 831.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114902, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 943.0}, "se": {"x": 840.0, "y": 953.0}, "sw": {"x": 850.0, "y": 943.0}, "nw": {"x": 850.0, "y": 953.0}}, "position": {"x": 845.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114903, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 943.0}, "se": {"x": 854.0, "y": 953.0}, "sw": {"x": 864.0, "y": 943.0}, "nw": {"x": 864.0, "y": 953.0}}, "position": {"x": 859.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114904, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 943.0}, "se": {"x": 868.0, "y": 953.0}, "sw": {"x": 878.0, "y": 943.0}, "nw": {"x": 878.0, "y": 953.0}}, "position": {"x": 873.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114905, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 943.0}, "se": {"x": 882.0, "y": 953.0}, "sw": {"x": 892.0, "y": 943.0}, "nw": {"x": 892.0, "y": 953.0}}, "position": {"x": 887.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114906, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 943.0}, "se": {"x": 896.0, "y": 953.0}, "sw": {"x": 906.0, "y": 943.0}, "nw": {"x": 906.0, "y": 953.0}}, "position": {"x": 901.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114907, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 943.0}, "se": {"x": 910.0, "y": 953.0}, "sw": {"x": 920.0, "y": 943.0}, "nw": {"x": 920.0, "y": 953.0}}, "position": {"x": 915.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114908, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 943.0}, "se": {"x": 924.0, "y": 953.0}, "sw": {"x": 934.0, "y": 943.0}, "nw": {"x": 934.0, "y": 953.0}}, "position": {"x": 929.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114909, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 943.0}, "se": {"x": 938.0, "y": 953.0}, "sw": {"x": 948.0, "y": 943.0}, "nw": {"x": 948.0, "y": 953.0}}, "position": {"x": 943.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114910, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 957.0}, "se": {"x": 812.0, "y": 967.0}, "sw": {"x": 822.0, "y": 957.0}, "nw": {"x": 822.0, "y": 967.0}}, "position": {"x": 817.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114911, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 957.0}, "se": {"x": 826.0, "y": 967.0}, "sw": {"x": 836.0, "y": 957.0}, "nw": {"x": 836.0, "y": 967.0}}, "position": {"x": 831.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114912, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 957.0}, "se": {"x": 840.0, "y": 967.0}, "sw": {"x": 850.0, "y": 957.0}, "nw": {"x": 850.0, "y": 967.0}}, "position": {"x": 845.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114913, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 957.0}, "se": {"x": 854.0, "y": 967.0}, "sw": {"x": 864.0, "y": 957.0}, "nw": {"x": 864.0, "y": 967.0}}, "position": {"x": 859.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114914, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 957.0}, "se": {"x": 868.0, "y": 967.0}, "sw": {"x": 878.0, "y": 957.0}, "nw": {"x": 878.0, "y": 967.0}}, "position": {"x": 873.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114915, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 957.0}, "se": {"x": 882.0, "y": 967.0}, "sw": {"x": 892.0, "y": 957.0}, "nw": {"x": 892.0, "y": 967.0}}, "position": {"x": 887.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114916, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 957.0}, "se": {"x": 896.0, "y": 967.0}, "sw": {"x": 906.0, "y": 957.0}, "nw": {"x": 906.0, "y": 967.0}}, "position": {"x": 901.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114917, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 957.0}, "se": {"x": 910.0, "y": 967.0}, "sw": {"x": 920.0, "y": 957.0}, "nw": {"x": 920.0, "y": 967.0}}, "position": {"x": 915.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114918, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 957.0}, "se": {"x": 924.0, "y": 967.0}, "sw": {"x": 934.0, "y": 957.0}, "nw": {"x": 934.0, "y": 967.0}}, "position": {"x": 929.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114919, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 957.0}, "se": {"x": 938.0, "y": 967.0}, "sw": {"x": 948.0, "y": 957.0}, "nw": {"x": 948.0, "y": 967.0}}, "position": {"x": 943.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114920, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 971.0}, "se": {"x": 812.0, "y": 981.0}, "sw": {"x": 822.0, "y": 971.0}, "nw": {"x": 822.0, "y": 981.0}}, "position": {"x": 817.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114921, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 971.0}, "se": {"x": 826.0, "y": 981.0}, "sw": {"x": 836.0, "y": 971.0}, "nw": {"x": 836.0, "y": 981.0}}, "position": {"x": 831.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114922, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 971.0}, "se": {"x": 840.0, "y": 981.0}, "sw": {"x": 850.0, "y": 971.0}, "nw": {"x": 850.0, "y": 981.0}}, "position": {"x": 845.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114923, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 971.0}, "se": {"x": 854.0, "y": 981.0}, "sw": {"x": 864.0, "y": 971.0}, "nw": {"x": 864.0, "y": 981.0}}, "position": {"x": 859.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114924, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 971.0}, "se": {"x": 868.0, "y": 981.0}, "sw": {"x": 878.0, "y": 971.0}, "nw": {"x": 878.0, "y": 981.0}}, "position": {"x": 873.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114925, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 971.0}, "se": {"x": 882.0, "y": 981.0}, "sw": {"x": 892.0, "y": 971.0}, "nw": {"x": 892.0, "y": 981.0}}, "position": {"x": 887.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114926, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 971.0}, "se": {"x": 896.0, "y": 981.0}, "sw": {"x": 906.0, "y": 971.0}, "nw": {"x": 906.0, "y": 981.0}}, "position": {"x": 901.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114927, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 971.0}, "se": {"x": 910.0, "y": 981.0}, "sw": {"x": 920.0, "y": 971.0}, "nw": {"x": 920.0, "y": 981.0}}, "position": {"x": 915.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114928, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 971.0}, "se": {"x": 924.0, "y": 981.0}, "sw": {"x": 934.0, "y": 971.0}, "nw": {"x": 934.0, "y": 981.0}}, "position": {"x": 929.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114929, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 971.0}, "se": {"x": 938.0, "y": 981.0}, "sw": {"x": 948.0, "y": 971.0}, "nw": {"x": 948.0, "y": 981.0}}, "position": {"x": 943.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "2:4": [{"logicalSeatId": 1537113744, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1150.0}, "se": {"x": 604.0, "y": 1150.0}, "sw": {"x": 614.0, "y": 1160.0}, "nw": {"x": 604.0, "y": 1160.0}}, "position": {"x": 609.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1413, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113745, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1164.0}, "se": {"x": 604.0, "y": 1164.0}, "sw": {"x": 614.0, "y": 1174.0}, "nw": {"x": 604.0, "y": 1174.0}}, "position": {"x": 609.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1412, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113746, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1178.0}, "se": {"x": 604.0, "y": 1178.0}, "sw": {"x": 614.0, "y": 1188.0}, "nw": {"x": 604.0, "y": 1188.0}}, "position": {"x": 609.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1411, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113747, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1192.0}, "se": {"x": 604.0, "y": 1192.0}, "sw": {"x": 614.0, "y": 1202.0}, "nw": {"x": 604.0, "y": 1202.0}}, "position": {"x": 609.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1410, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113748, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1206.0}, "se": {"x": 604.0, "y": 1206.0}, "sw": {"x": 614.0, "y": 1216.0}, "nw": {"x": 604.0, "y": 1216.0}}, "position": {"x": 609.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1409, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113749, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1220.0}, "se": {"x": 604.0, "y": 1220.0}, "sw": {"x": 614.0, "y": 1230.0}, "nw": {"x": 604.0, "y": 1230.0}}, "position": {"x": 609.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1408, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113750, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1234.0}, "se": {"x": 604.0, "y": 1234.0}, "sw": {"x": 614.0, "y": 1244.0}, "nw": {"x": 604.0, "y": 1244.0}}, "position": {"x": 609.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1407, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113751, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1248.0}, "se": {"x": 604.0, "y": 1248.0}, "sw": {"x": 614.0, "y": 1258.0}, "nw": {"x": 604.0, "y": 1258.0}}, "position": {"x": 609.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1406, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113752, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1262.0}, "se": {"x": 604.0, "y": 1262.0}, "sw": {"x": 614.0, "y": 1272.0}, "nw": {"x": 604.0, "y": 1272.0}}, "position": {"x": 609.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1405, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113765, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1150.0}, "se": {"x": 590.0, "y": 1150.0}, "sw": {"x": 600.0, "y": 1160.0}, "nw": {"x": 590.0, "y": 1160.0}}, "position": {"x": 595.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1306, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113766, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1164.0}, "se": {"x": 590.0, "y": 1164.0}, "sw": {"x": 600.0, "y": 1174.0}, "nw": {"x": 590.0, "y": 1174.0}}, "position": {"x": 595.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1305, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113767, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1178.0}, "se": {"x": 590.0, "y": 1178.0}, "sw": {"x": 600.0, "y": 1188.0}, "nw": {"x": 590.0, "y": 1188.0}}, "position": {"x": 595.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1304, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113768, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1192.0}, "se": {"x": 590.0, "y": 1192.0}, "sw": {"x": 600.0, "y": 1202.0}, "nw": {"x": 590.0, "y": 1202.0}}, "position": {"x": 595.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1303, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113769, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1206.0}, "se": {"x": 590.0, "y": 1206.0}, "sw": {"x": 600.0, "y": 1216.0}, "nw": {"x": 590.0, "y": 1216.0}}, "position": {"x": 595.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1302, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113770, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1220.0}, "se": {"x": 590.0, "y": 1220.0}, "sw": {"x": 600.0, "y": 1230.0}, "nw": {"x": 590.0, "y": 1230.0}}, "position": {"x": 595.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1301, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113771, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1234.0}, "se": {"x": 590.0, "y": 1234.0}, "sw": {"x": 600.0, "y": 1244.0}, "nw": {"x": 590.0, "y": 1244.0}}, "position": {"x": 595.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1300, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113772, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1248.0}, "se": {"x": 590.0, "y": 1248.0}, "sw": {"x": 600.0, "y": 1258.0}, "nw": {"x": 590.0, "y": 1258.0}}, "position": {"x": 595.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1299, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113773, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1262.0}, "se": {"x": 590.0, "y": 1262.0}, "sw": {"x": 600.0, "y": 1272.0}, "nw": {"x": 590.0, "y": 1272.0}}, "position": {"x": 595.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1298, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113786, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1150.0}, "se": {"x": 576.0, "y": 1150.0}, "sw": {"x": 586.0, "y": 1160.0}, "nw": {"x": 576.0, "y": 1160.0}}, "position": {"x": 581.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1219, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113787, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1164.0}, "se": {"x": 576.0, "y": 1164.0}, "sw": {"x": 586.0, "y": 1174.0}, "nw": {"x": 576.0, "y": 1174.0}}, "position": {"x": 581.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1218, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113788, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1178.0}, "se": {"x": 576.0, "y": 1178.0}, "sw": {"x": 586.0, "y": 1188.0}, "nw": {"x": 576.0, "y": 1188.0}}, "position": {"x": 581.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1217, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113789, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1192.0}, "se": {"x": 576.0, "y": 1192.0}, "sw": {"x": 586.0, "y": 1202.0}, "nw": {"x": 576.0, "y": 1202.0}}, "position": {"x": 581.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1216, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113790, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1206.0}, "se": {"x": 576.0, "y": 1206.0}, "sw": {"x": 586.0, "y": 1216.0}, "nw": {"x": 576.0, "y": 1216.0}}, "position": {"x": 581.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1215, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113791, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1220.0}, "se": {"x": 576.0, "y": 1220.0}, "sw": {"x": 586.0, "y": 1230.0}, "nw": {"x": 576.0, "y": 1230.0}}, "position": {"x": 581.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1214, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113792, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1234.0}, "se": {"x": 576.0, "y": 1234.0}, "sw": {"x": 586.0, "y": 1244.0}, "nw": {"x": 576.0, "y": 1244.0}}, "position": {"x": 581.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1213, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113793, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1248.0}, "se": {"x": 576.0, "y": 1248.0}, "sw": {"x": 586.0, "y": 1258.0}, "nw": {"x": 576.0, "y": 1258.0}}, "position": {"x": 581.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1212, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113794, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1262.0}, "se": {"x": 576.0, "y": 1262.0}, "sw": {"x": 586.0, "y": 1272.0}, "nw": {"x": 576.0, "y": 1272.0}}, "position": {"x": 581.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1211, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113807, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1150.0}, "se": {"x": 562.0, "y": 1150.0}, "sw": {"x": 572.0, "y": 1160.0}, "nw": {"x": 562.0, "y": 1160.0}}, "position": {"x": 567.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113808, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1164.0}, "se": {"x": 562.0, "y": 1164.0}, "sw": {"x": 572.0, "y": 1174.0}, "nw": {"x": 562.0, "y": 1174.0}}, "position": {"x": 567.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113809, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1178.0}, "se": {"x": 562.0, "y": 1178.0}, "sw": {"x": 572.0, "y": 1188.0}, "nw": {"x": 562.0, "y": 1188.0}}, "position": {"x": 567.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113810, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1192.0}, "se": {"x": 562.0, "y": 1192.0}, "sw": {"x": 572.0, "y": 1202.0}, "nw": {"x": 562.0, "y": 1202.0}}, "position": {"x": 567.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113811, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1206.0}, "se": {"x": 562.0, "y": 1206.0}, "sw": {"x": 572.0, "y": 1216.0}, "nw": {"x": 562.0, "y": 1216.0}}, "position": {"x": 567.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113813, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1234.0}, "se": {"x": 562.0, "y": 1234.0}, "sw": {"x": 572.0, "y": 1244.0}, "nw": {"x": 562.0, "y": 1244.0}}, "position": {"x": 567.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113814, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1248.0}, "se": {"x": 562.0, "y": 1248.0}, "sw": {"x": 572.0, "y": 1258.0}, "nw": {"x": 562.0, "y": 1258.0}}, "position": {"x": 567.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113815, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1262.0}, "se": {"x": 562.0, "y": 1262.0}, "sw": {"x": 572.0, "y": 1272.0}, "nw": {"x": 562.0, "y": 1272.0}}, "position": {"x": 567.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114134, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1023.0}, "se": {"x": 604.0, "y": 1023.0}, "sw": {"x": 614.0, "y": 1033.0}, "nw": {"x": 604.0, "y": 1033.0}}, "position": {"x": 609.0, "y": 1028.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1420, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114135, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1037.0}, "se": {"x": 604.0, "y": 1037.0}, "sw": {"x": 614.0, "y": 1047.0}, "nw": {"x": 604.0, "y": 1047.0}}, "position": {"x": 609.0, "y": 1042.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1419, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114136, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1051.0}, "se": {"x": 604.0, "y": 1051.0}, "sw": {"x": 614.0, "y": 1061.0}, "nw": {"x": 604.0, "y": 1061.0}}, "position": {"x": 609.0, "y": 1056.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1418, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114137, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1065.0}, "se": {"x": 604.0, "y": 1065.0}, "sw": {"x": 614.0, "y": 1075.0}, "nw": {"x": 604.0, "y": 1075.0}}, "position": {"x": 609.0, "y": 1070.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1417, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114138, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1079.0}, "se": {"x": 604.0, "y": 1079.0}, "sw": {"x": 614.0, "y": 1089.0}, "nw": {"x": 604.0, "y": 1089.0}}, "position": {"x": 609.0, "y": 1084.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1416, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114139, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1093.0}, "se": {"x": 604.0, "y": 1093.0}, "sw": {"x": 614.0, "y": 1103.0}, "nw": {"x": 604.0, "y": 1103.0}}, "position": {"x": 609.0, "y": 1098.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1415, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114140, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1107.0}, "se": {"x": 604.0, "y": 1107.0}, "sw": {"x": 614.0, "y": 1117.0}, "nw": {"x": 604.0, "y": 1117.0}}, "position": {"x": 609.0, "y": 1112.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1414, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114156, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1023.0}, "se": {"x": 590.0, "y": 1023.0}, "sw": {"x": 600.0, "y": 1033.0}, "nw": {"x": 590.0, "y": 1033.0}}, "position": {"x": 595.0, "y": 1028.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1313, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114157, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1037.0}, "se": {"x": 590.0, "y": 1037.0}, "sw": {"x": 600.0, "y": 1047.0}, "nw": {"x": 590.0, "y": 1047.0}}, "position": {"x": 595.0, "y": 1042.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1312, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114158, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1051.0}, "se": {"x": 590.0, "y": 1051.0}, "sw": {"x": 600.0, "y": 1061.0}, "nw": {"x": 590.0, "y": 1061.0}}, "position": {"x": 595.0, "y": 1056.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1311, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114159, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1065.0}, "se": {"x": 590.0, "y": 1065.0}, "sw": {"x": 600.0, "y": 1075.0}, "nw": {"x": 590.0, "y": 1075.0}}, "position": {"x": 595.0, "y": 1070.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1310, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114160, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1079.0}, "se": {"x": 590.0, "y": 1079.0}, "sw": {"x": 600.0, "y": 1089.0}, "nw": {"x": 590.0, "y": 1089.0}}, "position": {"x": 595.0, "y": 1084.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1309, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114161, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1093.0}, "se": {"x": 590.0, "y": 1093.0}, "sw": {"x": 600.0, "y": 1103.0}, "nw": {"x": 590.0, "y": 1103.0}}, "position": {"x": 595.0, "y": 1098.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1308, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537114162, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1107.0}, "se": {"x": 590.0, "y": 1107.0}, "sw": {"x": 600.0, "y": 1117.0}, "nw": {"x": 590.0, "y": 1117.0}}, "position": {"x": 595.0, "y": 1112.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1307, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}], "4:2": [{"logicalSeatId": 1537114930, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 734.0}, "se": {"x": 1031.0, "y": 744.0}, "sw": {"x": 1041.0, "y": 734.0}, "nw": {"x": 1041.0, "y": 744.0}}, "position": {"x": 1036.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114931, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 734.0}, "se": {"x": 1045.0, "y": 744.0}, "sw": {"x": 1055.0, "y": 734.0}, "nw": {"x": 1055.0, "y": 744.0}}, "position": {"x": 1050.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114932, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 734.0}, "se": {"x": 1059.0, "y": 744.0}, "sw": {"x": 1069.0, "y": 734.0}, "nw": {"x": 1069.0, "y": 744.0}}, "position": {"x": 1064.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114933, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 734.0}, "se": {"x": 1073.0, "y": 744.0}, "sw": {"x": 1083.0, "y": 734.0}, "nw": {"x": 1083.0, "y": 744.0}}, "position": {"x": 1078.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114934, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 734.0}, "se": {"x": 1087.0, "y": 744.0}, "sw": {"x": 1097.0, "y": 734.0}, "nw": {"x": 1097.0, "y": 744.0}}, "position": {"x": 1092.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114935, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 734.0}, "se": {"x": 1101.0, "y": 744.0}, "sw": {"x": 1111.0, "y": 734.0}, "nw": {"x": 1111.0, "y": 744.0}}, "position": {"x": 1106.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114936, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 734.0}, "se": {"x": 1115.0, "y": 744.0}, "sw": {"x": 1125.0, "y": 734.0}, "nw": {"x": 1125.0, "y": 744.0}}, "position": {"x": 1120.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114937, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 734.0}, "se": {"x": 1129.0, "y": 744.0}, "sw": {"x": 1139.0, "y": 734.0}, "nw": {"x": 1139.0, "y": 744.0}}, "position": {"x": 1134.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114938, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 734.0}, "se": {"x": 1143.0, "y": 744.0}, "sw": {"x": 1153.0, "y": 734.0}, "nw": {"x": 1153.0, "y": 744.0}}, "position": {"x": 1148.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114939, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 734.0}, "se": {"x": 1157.0, "y": 744.0}, "sw": {"x": 1167.0, "y": 734.0}, "nw": {"x": 1167.0, "y": 744.0}}, "position": {"x": 1162.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114940, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 748.0}, "se": {"x": 1031.0, "y": 758.0}, "sw": {"x": 1041.0, "y": 748.0}, "nw": {"x": 1041.0, "y": 758.0}}, "position": {"x": 1036.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114941, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 748.0}, "se": {"x": 1045.0, "y": 758.0}, "sw": {"x": 1055.0, "y": 748.0}, "nw": {"x": 1055.0, "y": 758.0}}, "position": {"x": 1050.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114942, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 748.0}, "se": {"x": 1059.0, "y": 758.0}, "sw": {"x": 1069.0, "y": 748.0}, "nw": {"x": 1069.0, "y": 758.0}}, "position": {"x": 1064.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114943, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 748.0}, "se": {"x": 1073.0, "y": 758.0}, "sw": {"x": 1083.0, "y": 748.0}, "nw": {"x": 1083.0, "y": 758.0}}, "position": {"x": 1078.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114944, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 748.0}, "se": {"x": 1087.0, "y": 758.0}, "sw": {"x": 1097.0, "y": 748.0}, "nw": {"x": 1097.0, "y": 758.0}}, "position": {"x": 1092.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114945, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 748.0}, "se": {"x": 1101.0, "y": 758.0}, "sw": {"x": 1111.0, "y": 748.0}, "nw": {"x": 1111.0, "y": 758.0}}, "position": {"x": 1106.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114946, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 748.0}, "se": {"x": 1115.0, "y": 758.0}, "sw": {"x": 1125.0, "y": 748.0}, "nw": {"x": 1125.0, "y": 758.0}}, "position": {"x": 1120.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114947, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 748.0}, "se": {"x": 1129.0, "y": 758.0}, "sw": {"x": 1139.0, "y": 748.0}, "nw": {"x": 1139.0, "y": 758.0}}, "position": {"x": 1134.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114948, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 748.0}, "se": {"x": 1143.0, "y": 758.0}, "sw": {"x": 1153.0, "y": 748.0}, "nw": {"x": 1153.0, "y": 758.0}}, "position": {"x": 1148.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114949, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 748.0}, "se": {"x": 1157.0, "y": 758.0}, "sw": {"x": 1167.0, "y": 748.0}, "nw": {"x": 1167.0, "y": 758.0}}, "position": {"x": 1162.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114950, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 762.0}, "se": {"x": 1031.0, "y": 772.0}, "sw": {"x": 1041.0, "y": 762.0}, "nw": {"x": 1041.0, "y": 772.0}}, "position": {"x": 1036.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114951, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 762.0}, "se": {"x": 1045.0, "y": 772.0}, "sw": {"x": 1055.0, "y": 762.0}, "nw": {"x": 1055.0, "y": 772.0}}, "position": {"x": 1050.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114952, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 762.0}, "se": {"x": 1059.0, "y": 772.0}, "sw": {"x": 1069.0, "y": 762.0}, "nw": {"x": 1069.0, "y": 772.0}}, "position": {"x": 1064.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114953, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 762.0}, "se": {"x": 1073.0, "y": 772.0}, "sw": {"x": 1083.0, "y": 762.0}, "nw": {"x": 1083.0, "y": 772.0}}, "position": {"x": 1078.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114954, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 762.0}, "se": {"x": 1087.0, "y": 772.0}, "sw": {"x": 1097.0, "y": 762.0}, "nw": {"x": 1097.0, "y": 772.0}}, "position": {"x": 1092.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114955, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 762.0}, "se": {"x": 1101.0, "y": 772.0}, "sw": {"x": 1111.0, "y": 762.0}, "nw": {"x": 1111.0, "y": 772.0}}, "position": {"x": 1106.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114956, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 762.0}, "se": {"x": 1115.0, "y": 772.0}, "sw": {"x": 1125.0, "y": 762.0}, "nw": {"x": 1125.0, "y": 772.0}}, "position": {"x": 1120.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114957, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 762.0}, "se": {"x": 1129.0, "y": 772.0}, "sw": {"x": 1139.0, "y": 762.0}, "nw": {"x": 1139.0, "y": 772.0}}, "position": {"x": 1134.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114958, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 762.0}, "se": {"x": 1143.0, "y": 772.0}, "sw": {"x": 1153.0, "y": 762.0}, "nw": {"x": 1153.0, "y": 772.0}}, "position": {"x": 1148.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114959, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 762.0}, "se": {"x": 1157.0, "y": 772.0}, "sw": {"x": 1167.0, "y": 762.0}, "nw": {"x": 1167.0, "y": 772.0}}, "position": {"x": 1162.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115090, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 734.0}, "se": {"x": 1253.0, "y": 744.0}, "sw": {"x": 1263.0, "y": 734.0}, "nw": {"x": 1263.0, "y": 744.0}}, "position": {"x": 1258.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115091, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 734.0}, "se": {"x": 1267.0, "y": 744.0}, "sw": {"x": 1277.0, "y": 734.0}, "nw": {"x": 1277.0, "y": 744.0}}, "position": {"x": 1272.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115100, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 748.0}, "se": {"x": 1253.0, "y": 758.0}, "sw": {"x": 1263.0, "y": 748.0}, "nw": {"x": 1263.0, "y": 758.0}}, "position": {"x": 1258.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115101, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 748.0}, "se": {"x": 1267.0, "y": 758.0}, "sw": {"x": 1277.0, "y": 748.0}, "nw": {"x": 1277.0, "y": 758.0}}, "position": {"x": 1272.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115110, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 762.0}, "se": {"x": 1253.0, "y": 772.0}, "sw": {"x": 1263.0, "y": 762.0}, "nw": {"x": 1263.0, "y": 772.0}}, "position": {"x": 1258.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115111, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 762.0}, "se": {"x": 1267.0, "y": 772.0}, "sw": {"x": 1277.0, "y": 762.0}, "nw": {"x": 1277.0, "y": 772.0}}, "position": {"x": 1272.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "3:4": [{"logicalSeatId": 1537115398, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1188.0}, "se": {"x": 812.0, "y": 1198.0}, "sw": {"x": 822.0, "y": 1188.0}, "nw": {"x": 822.0, "y": 1198.0}}, "position": {"x": 817.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115399, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1188.0}, "se": {"x": 826.0, "y": 1198.0}, "sw": {"x": 836.0, "y": 1188.0}, "nw": {"x": 836.0, "y": 1198.0}}, "position": {"x": 831.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115400, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1188.0}, "se": {"x": 840.0, "y": 1198.0}, "sw": {"x": 850.0, "y": 1188.0}, "nw": {"x": 850.0, "y": 1198.0}}, "position": {"x": 845.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115401, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1188.0}, "se": {"x": 854.0, "y": 1198.0}, "sw": {"x": 864.0, "y": 1188.0}, "nw": {"x": 864.0, "y": 1198.0}}, "position": {"x": 859.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115402, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1188.0}, "se": {"x": 868.0, "y": 1198.0}, "sw": {"x": 878.0, "y": 1188.0}, "nw": {"x": 878.0, "y": 1198.0}}, "position": {"x": 873.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115403, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1188.0}, "se": {"x": 882.0, "y": 1198.0}, "sw": {"x": 892.0, "y": 1188.0}, "nw": {"x": 892.0, "y": 1198.0}}, "position": {"x": 887.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115404, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1188.0}, "se": {"x": 896.0, "y": 1198.0}, "sw": {"x": 906.0, "y": 1188.0}, "nw": {"x": 906.0, "y": 1198.0}}, "position": {"x": 901.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115405, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1188.0}, "se": {"x": 910.0, "y": 1198.0}, "sw": {"x": 920.0, "y": 1188.0}, "nw": {"x": 920.0, "y": 1198.0}}, "position": {"x": 915.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115406, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1188.0}, "se": {"x": 924.0, "y": 1198.0}, "sw": {"x": 934.0, "y": 1188.0}, "nw": {"x": 934.0, "y": 1198.0}}, "position": {"x": 929.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115407, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1188.0}, "se": {"x": 938.0, "y": 1198.0}, "sw": {"x": 948.0, "y": 1188.0}, "nw": {"x": 948.0, "y": 1198.0}}, "position": {"x": 943.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115408, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1202.0}, "se": {"x": 812.0, "y": 1212.0}, "sw": {"x": 822.0, "y": 1202.0}, "nw": {"x": 822.0, "y": 1212.0}}, "position": {"x": 817.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115409, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1202.0}, "se": {"x": 826.0, "y": 1212.0}, "sw": {"x": 836.0, "y": 1202.0}, "nw": {"x": 836.0, "y": 1212.0}}, "position": {"x": 831.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115410, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1202.0}, "se": {"x": 840.0, "y": 1212.0}, "sw": {"x": 850.0, "y": 1202.0}, "nw": {"x": 850.0, "y": 1212.0}}, "position": {"x": 845.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115411, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1202.0}, "se": {"x": 854.0, "y": 1212.0}, "sw": {"x": 864.0, "y": 1202.0}, "nw": {"x": 864.0, "y": 1212.0}}, "position": {"x": 859.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115412, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1202.0}, "se": {"x": 868.0, "y": 1212.0}, "sw": {"x": 878.0, "y": 1202.0}, "nw": {"x": 878.0, "y": 1212.0}}, "position": {"x": 873.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115413, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1202.0}, "se": {"x": 882.0, "y": 1212.0}, "sw": {"x": 892.0, "y": 1202.0}, "nw": {"x": 892.0, "y": 1212.0}}, "position": {"x": 887.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115414, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1202.0}, "se": {"x": 896.0, "y": 1212.0}, "sw": {"x": 906.0, "y": 1202.0}, "nw": {"x": 906.0, "y": 1212.0}}, "position": {"x": 901.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115415, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1202.0}, "se": {"x": 910.0, "y": 1212.0}, "sw": {"x": 920.0, "y": 1202.0}, "nw": {"x": 920.0, "y": 1212.0}}, "position": {"x": 915.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115416, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1202.0}, "se": {"x": 924.0, "y": 1212.0}, "sw": {"x": 934.0, "y": 1202.0}, "nw": {"x": 934.0, "y": 1212.0}}, "position": {"x": 929.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115417, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1202.0}, "se": {"x": 938.0, "y": 1212.0}, "sw": {"x": 948.0, "y": 1202.0}, "nw": {"x": 948.0, "y": 1212.0}}, "position": {"x": 943.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115418, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1216.0}, "se": {"x": 812.0, "y": 1226.0}, "sw": {"x": 822.0, "y": 1216.0}, "nw": {"x": 822.0, "y": 1226.0}}, "position": {"x": 817.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115419, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1216.0}, "se": {"x": 826.0, "y": 1226.0}, "sw": {"x": 836.0, "y": 1216.0}, "nw": {"x": 836.0, "y": 1226.0}}, "position": {"x": 831.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115420, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1216.0}, "se": {"x": 840.0, "y": 1226.0}, "sw": {"x": 850.0, "y": 1216.0}, "nw": {"x": 850.0, "y": 1226.0}}, "position": {"x": 845.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115421, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1216.0}, "se": {"x": 854.0, "y": 1226.0}, "sw": {"x": 864.0, "y": 1216.0}, "nw": {"x": 864.0, "y": 1226.0}}, "position": {"x": 859.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115422, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1216.0}, "se": {"x": 868.0, "y": 1226.0}, "sw": {"x": 878.0, "y": 1216.0}, "nw": {"x": 878.0, "y": 1226.0}}, "position": {"x": 873.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115423, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1216.0}, "se": {"x": 882.0, "y": 1226.0}, "sw": {"x": 892.0, "y": 1216.0}, "nw": {"x": 892.0, "y": 1226.0}}, "position": {"x": 887.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115424, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1216.0}, "se": {"x": 896.0, "y": 1226.0}, "sw": {"x": 906.0, "y": 1216.0}, "nw": {"x": 906.0, "y": 1226.0}}, "position": {"x": 901.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115425, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1216.0}, "se": {"x": 910.0, "y": 1226.0}, "sw": {"x": 920.0, "y": 1216.0}, "nw": {"x": 920.0, "y": 1226.0}}, "position": {"x": 915.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115426, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1216.0}, "se": {"x": 924.0, "y": 1226.0}, "sw": {"x": 934.0, "y": 1216.0}, "nw": {"x": 934.0, "y": 1226.0}}, "position": {"x": 929.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115427, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1216.0}, "se": {"x": 938.0, "y": 1226.0}, "sw": {"x": 948.0, "y": 1216.0}, "nw": {"x": 948.0, "y": 1226.0}}, "position": {"x": 943.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115428, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1230.0}, "se": {"x": 812.0, "y": 1240.0}, "sw": {"x": 822.0, "y": 1230.0}, "nw": {"x": 822.0, "y": 1240.0}}, "position": {"x": 817.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115429, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1230.0}, "se": {"x": 826.0, "y": 1240.0}, "sw": {"x": 836.0, "y": 1230.0}, "nw": {"x": 836.0, "y": 1240.0}}, "position": {"x": 831.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115430, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1230.0}, "se": {"x": 840.0, "y": 1240.0}, "sw": {"x": 850.0, "y": 1230.0}, "nw": {"x": 850.0, "y": 1240.0}}, "position": {"x": 845.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115431, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1230.0}, "se": {"x": 854.0, "y": 1240.0}, "sw": {"x": 864.0, "y": 1230.0}, "nw": {"x": 864.0, "y": 1240.0}}, "position": {"x": 859.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115432, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1230.0}, "se": {"x": 868.0, "y": 1240.0}, "sw": {"x": 878.0, "y": 1230.0}, "nw": {"x": 878.0, "y": 1240.0}}, "position": {"x": 873.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115433, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1230.0}, "se": {"x": 882.0, "y": 1240.0}, "sw": {"x": 892.0, "y": 1230.0}, "nw": {"x": 892.0, "y": 1240.0}}, "position": {"x": 887.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115434, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1230.0}, "se": {"x": 896.0, "y": 1240.0}, "sw": {"x": 906.0, "y": 1230.0}, "nw": {"x": 906.0, "y": 1240.0}}, "position": {"x": 901.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115435, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1230.0}, "se": {"x": 910.0, "y": 1240.0}, "sw": {"x": 920.0, "y": 1230.0}, "nw": {"x": 920.0, "y": 1240.0}}, "position": {"x": 915.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115436, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1230.0}, "se": {"x": 924.0, "y": 1240.0}, "sw": {"x": 934.0, "y": 1230.0}, "nw": {"x": 934.0, "y": 1240.0}}, "position": {"x": 929.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115437, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1230.0}, "se": {"x": 938.0, "y": 1240.0}, "sw": {"x": 948.0, "y": 1230.0}, "nw": {"x": 948.0, "y": 1240.0}}, "position": {"x": 943.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115438, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1244.0}, "se": {"x": 812.0, "y": 1254.0}, "sw": {"x": 822.0, "y": 1244.0}, "nw": {"x": 822.0, "y": 1254.0}}, "position": {"x": 817.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115439, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1244.0}, "se": {"x": 826.0, "y": 1254.0}, "sw": {"x": 836.0, "y": 1244.0}, "nw": {"x": 836.0, "y": 1254.0}}, "position": {"x": 831.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115440, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1244.0}, "se": {"x": 840.0, "y": 1254.0}, "sw": {"x": 850.0, "y": 1244.0}, "nw": {"x": 850.0, "y": 1254.0}}, "position": {"x": 845.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115441, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1244.0}, "se": {"x": 854.0, "y": 1254.0}, "sw": {"x": 864.0, "y": 1244.0}, "nw": {"x": 864.0, "y": 1254.0}}, "position": {"x": 859.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115442, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1244.0}, "se": {"x": 868.0, "y": 1254.0}, "sw": {"x": 878.0, "y": 1244.0}, "nw": {"x": 878.0, "y": 1254.0}}, "position": {"x": 873.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115443, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1244.0}, "se": {"x": 882.0, "y": 1254.0}, "sw": {"x": 892.0, "y": 1244.0}, "nw": {"x": 892.0, "y": 1254.0}}, "position": {"x": 887.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115444, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1244.0}, "se": {"x": 896.0, "y": 1254.0}, "sw": {"x": 906.0, "y": 1244.0}, "nw": {"x": 906.0, "y": 1254.0}}, "position": {"x": 901.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115445, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1244.0}, "se": {"x": 910.0, "y": 1254.0}, "sw": {"x": 920.0, "y": 1244.0}, "nw": {"x": 920.0, "y": 1254.0}}, "position": {"x": 915.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115446, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1244.0}, "se": {"x": 924.0, "y": 1254.0}, "sw": {"x": 934.0, "y": 1244.0}, "nw": {"x": 934.0, "y": 1254.0}}, "position": {"x": 929.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115447, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1244.0}, "se": {"x": 938.0, "y": 1254.0}, "sw": {"x": 948.0, "y": 1244.0}, "nw": {"x": 948.0, "y": 1254.0}}, "position": {"x": 943.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115448, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1258.0}, "se": {"x": 812.0, "y": 1268.0}, "sw": {"x": 822.0, "y": 1258.0}, "nw": {"x": 822.0, "y": 1268.0}}, "position": {"x": 817.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115449, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1258.0}, "se": {"x": 826.0, "y": 1268.0}, "sw": {"x": 836.0, "y": 1258.0}, "nw": {"x": 836.0, "y": 1268.0}}, "position": {"x": 831.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115450, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1258.0}, "se": {"x": 840.0, "y": 1268.0}, "sw": {"x": 850.0, "y": 1258.0}, "nw": {"x": 850.0, "y": 1268.0}}, "position": {"x": 845.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115451, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1258.0}, "se": {"x": 854.0, "y": 1268.0}, "sw": {"x": 864.0, "y": 1258.0}, "nw": {"x": 864.0, "y": 1268.0}}, "position": {"x": 859.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115452, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1258.0}, "se": {"x": 868.0, "y": 1268.0}, "sw": {"x": 878.0, "y": 1258.0}, "nw": {"x": 878.0, "y": 1268.0}}, "position": {"x": 873.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115453, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1258.0}, "se": {"x": 882.0, "y": 1268.0}, "sw": {"x": 892.0, "y": 1258.0}, "nw": {"x": 892.0, "y": 1268.0}}, "position": {"x": 887.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115454, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1258.0}, "se": {"x": 896.0, "y": 1268.0}, "sw": {"x": 906.0, "y": 1258.0}, "nw": {"x": 906.0, "y": 1268.0}}, "position": {"x": 901.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115455, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1258.0}, "se": {"x": 910.0, "y": 1268.0}, "sw": {"x": 920.0, "y": 1258.0}, "nw": {"x": 920.0, "y": 1268.0}}, "position": {"x": 915.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115456, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1258.0}, "se": {"x": 924.0, "y": 1268.0}, "sw": {"x": 934.0, "y": 1258.0}, "nw": {"x": 934.0, "y": 1268.0}}, "position": {"x": 929.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115457, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1258.0}, "se": {"x": 938.0, "y": 1268.0}, "sw": {"x": 948.0, "y": 1258.0}, "nw": {"x": 948.0, "y": 1268.0}}, "position": {"x": 943.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115458, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1272.0}, "se": {"x": 812.0, "y": 1282.0}, "sw": {"x": 822.0, "y": 1272.0}, "nw": {"x": 822.0, "y": 1282.0}}, "position": {"x": 817.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115459, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1272.0}, "se": {"x": 826.0, "y": 1282.0}, "sw": {"x": 836.0, "y": 1272.0}, "nw": {"x": 836.0, "y": 1282.0}}, "position": {"x": 831.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115460, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1272.0}, "se": {"x": 840.0, "y": 1282.0}, "sw": {"x": 850.0, "y": 1272.0}, "nw": {"x": 850.0, "y": 1282.0}}, "position": {"x": 845.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115461, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1272.0}, "se": {"x": 854.0, "y": 1282.0}, "sw": {"x": 864.0, "y": 1272.0}, "nw": {"x": 864.0, "y": 1282.0}}, "position": {"x": 859.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115462, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1272.0}, "se": {"x": 868.0, "y": 1282.0}, "sw": {"x": 878.0, "y": 1272.0}, "nw": {"x": 878.0, "y": 1282.0}}, "position": {"x": 873.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115463, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1272.0}, "se": {"x": 882.0, "y": 1282.0}, "sw": {"x": 892.0, "y": 1272.0}, "nw": {"x": 892.0, "y": 1282.0}}, "position": {"x": 887.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115464, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1272.0}, "se": {"x": 896.0, "y": 1282.0}, "sw": {"x": 906.0, "y": 1272.0}, "nw": {"x": 906.0, "y": 1282.0}}, "position": {"x": 901.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115465, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1272.0}, "se": {"x": 910.0, "y": 1282.0}, "sw": {"x": 920.0, "y": 1272.0}, "nw": {"x": 920.0, "y": 1282.0}}, "position": {"x": 915.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115466, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1272.0}, "se": {"x": 924.0, "y": 1282.0}, "sw": {"x": 934.0, "y": 1272.0}, "nw": {"x": 934.0, "y": 1282.0}}, "position": {"x": 929.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115467, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1272.0}, "se": {"x": 938.0, "y": 1282.0}, "sw": {"x": 948.0, "y": 1272.0}, "nw": {"x": 948.0, "y": 1282.0}}, "position": {"x": 943.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "5:2": [{"logicalSeatId": 1537115092, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 734.0}, "se": {"x": 1281.0, "y": 744.0}, "sw": {"x": 1291.0, "y": 734.0}, "nw": {"x": 1291.0, "y": 744.0}}, "position": {"x": 1286.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115093, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 734.0}, "se": {"x": 1295.0, "y": 744.0}, "sw": {"x": 1305.0, "y": 734.0}, "nw": {"x": 1305.0, "y": 744.0}}, "position": {"x": 1300.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115094, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 734.0}, "se": {"x": 1309.0, "y": 744.0}, "sw": {"x": 1319.0, "y": 734.0}, "nw": {"x": 1319.0, "y": 744.0}}, "position": {"x": 1314.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115095, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 734.0}, "se": {"x": 1323.0, "y": 744.0}, "sw": {"x": 1333.0, "y": 734.0}, "nw": {"x": 1333.0, "y": 744.0}}, "position": {"x": 1328.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115096, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 734.0}, "se": {"x": 1337.0, "y": 744.0}, "sw": {"x": 1347.0, "y": 734.0}, "nw": {"x": 1347.0, "y": 744.0}}, "position": {"x": 1342.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115097, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 734.0}, "se": {"x": 1351.0, "y": 744.0}, "sw": {"x": 1361.0, "y": 734.0}, "nw": {"x": 1361.0, "y": 744.0}}, "position": {"x": 1356.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115098, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 734.0}, "se": {"x": 1365.0, "y": 744.0}, "sw": {"x": 1375.0, "y": 734.0}, "nw": {"x": 1375.0, "y": 744.0}}, "position": {"x": 1370.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115099, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 734.0}, "se": {"x": 1379.0, "y": 744.0}, "sw": {"x": 1389.0, "y": 734.0}, "nw": {"x": 1389.0, "y": 744.0}}, "position": {"x": 1384.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115102, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 748.0}, "se": {"x": 1281.0, "y": 758.0}, "sw": {"x": 1291.0, "y": 748.0}, "nw": {"x": 1291.0, "y": 758.0}}, "position": {"x": 1286.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115103, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 748.0}, "se": {"x": 1295.0, "y": 758.0}, "sw": {"x": 1305.0, "y": 748.0}, "nw": {"x": 1305.0, "y": 758.0}}, "position": {"x": 1300.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115104, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 748.0}, "se": {"x": 1309.0, "y": 758.0}, "sw": {"x": 1319.0, "y": 748.0}, "nw": {"x": 1319.0, "y": 758.0}}, "position": {"x": 1314.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115105, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 748.0}, "se": {"x": 1323.0, "y": 758.0}, "sw": {"x": 1333.0, "y": 748.0}, "nw": {"x": 1333.0, "y": 758.0}}, "position": {"x": 1328.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115106, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 748.0}, "se": {"x": 1337.0, "y": 758.0}, "sw": {"x": 1347.0, "y": 748.0}, "nw": {"x": 1347.0, "y": 758.0}}, "position": {"x": 1342.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115107, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 748.0}, "se": {"x": 1351.0, "y": 758.0}, "sw": {"x": 1361.0, "y": 748.0}, "nw": {"x": 1361.0, "y": 758.0}}, "position": {"x": 1356.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115108, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 748.0}, "se": {"x": 1365.0, "y": 758.0}, "sw": {"x": 1375.0, "y": 748.0}, "nw": {"x": 1375.0, "y": 758.0}}, "position": {"x": 1370.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115109, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 748.0}, "se": {"x": 1379.0, "y": 758.0}, "sw": {"x": 1389.0, "y": 748.0}, "nw": {"x": 1389.0, "y": 758.0}}, "position": {"x": 1384.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115112, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 762.0}, "se": {"x": 1281.0, "y": 772.0}, "sw": {"x": 1291.0, "y": 762.0}, "nw": {"x": 1291.0, "y": 772.0}}, "position": {"x": 1286.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115113, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 762.0}, "se": {"x": 1295.0, "y": 772.0}, "sw": {"x": 1305.0, "y": 762.0}, "nw": {"x": 1305.0, "y": 772.0}}, "position": {"x": 1300.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115114, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 762.0}, "se": {"x": 1309.0, "y": 772.0}, "sw": {"x": 1319.0, "y": 762.0}, "nw": {"x": 1319.0, "y": 772.0}}, "position": {"x": 1314.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115115, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 762.0}, "se": {"x": 1323.0, "y": 772.0}, "sw": {"x": 1333.0, "y": 762.0}, "nw": {"x": 1333.0, "y": 772.0}}, "position": {"x": 1328.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115116, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 762.0}, "se": {"x": 1337.0, "y": 772.0}, "sw": {"x": 1347.0, "y": 762.0}, "nw": {"x": 1347.0, "y": 772.0}}, "position": {"x": 1342.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115117, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 762.0}, "se": {"x": 1351.0, "y": 772.0}, "sw": {"x": 1361.0, "y": 762.0}, "nw": {"x": 1361.0, "y": 772.0}}, "position": {"x": 1356.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115118, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 762.0}, "se": {"x": 1365.0, "y": 772.0}, "sw": {"x": 1375.0, "y": 762.0}, "nw": {"x": 1375.0, "y": 772.0}}, "position": {"x": 1370.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115119, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 762.0}, "se": {"x": 1379.0, "y": 772.0}, "sw": {"x": 1389.0, "y": 762.0}, "nw": {"x": 1389.0, "y": 772.0}}, "position": {"x": 1384.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115250, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 734.0}, "se": {"x": 1465.0, "y": 744.0}, "sw": {"x": 1475.0, "y": 734.0}, "nw": {"x": 1475.0, "y": 744.0}}, "position": {"x": 1470.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115251, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 734.0}, "se": {"x": 1479.0, "y": 744.0}, "sw": {"x": 1489.0, "y": 734.0}, "nw": {"x": 1489.0, "y": 744.0}}, "position": {"x": 1484.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115252, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 734.0}, "se": {"x": 1493.0, "y": 744.0}, "sw": {"x": 1503.0, "y": 734.0}, "nw": {"x": 1503.0, "y": 744.0}}, "position": {"x": 1498.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115253, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 734.0}, "se": {"x": 1507.0, "y": 744.0}, "sw": {"x": 1517.0, "y": 734.0}, "nw": {"x": 1517.0, "y": 744.0}}, "position": {"x": 1512.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115254, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 748.0}, "se": {"x": 1465.0, "y": 758.0}, "sw": {"x": 1475.0, "y": 748.0}, "nw": {"x": 1475.0, "y": 758.0}}, "position": {"x": 1470.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115255, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 748.0}, "se": {"x": 1479.0, "y": 758.0}, "sw": {"x": 1489.0, "y": 748.0}, "nw": {"x": 1489.0, "y": 758.0}}, "position": {"x": 1484.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115256, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 748.0}, "se": {"x": 1493.0, "y": 758.0}, "sw": {"x": 1503.0, "y": 748.0}, "nw": {"x": 1503.0, "y": 758.0}}, "position": {"x": 1498.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115257, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 748.0}, "se": {"x": 1507.0, "y": 758.0}, "sw": {"x": 1517.0, "y": 748.0}, "nw": {"x": 1517.0, "y": 758.0}}, "position": {"x": 1512.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115258, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 748.0}, "se": {"x": 1521.0, "y": 758.0}, "sw": {"x": 1531.0, "y": 748.0}, "nw": {"x": 1531.0, "y": 758.0}}, "position": {"x": 1526.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115260, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 762.0}, "se": {"x": 1465.0, "y": 772.0}, "sw": {"x": 1475.0, "y": 762.0}, "nw": {"x": 1475.0, "y": 772.0}}, "position": {"x": 1470.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115261, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 762.0}, "se": {"x": 1479.0, "y": 772.0}, "sw": {"x": 1489.0, "y": 762.0}, "nw": {"x": 1489.0, "y": 772.0}}, "position": {"x": 1484.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115262, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 762.0}, "se": {"x": 1493.0, "y": 772.0}, "sw": {"x": 1503.0, "y": 762.0}, "nw": {"x": 1503.0, "y": 772.0}}, "position": {"x": 1498.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115263, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 762.0}, "se": {"x": 1507.0, "y": 772.0}, "sw": {"x": 1517.0, "y": 762.0}, "nw": {"x": 1517.0, "y": 772.0}}, "position": {"x": 1512.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115264, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 762.0}, "se": {"x": 1521.0, "y": 772.0}, "sw": {"x": 1531.0, "y": 762.0}, "nw": {"x": 1531.0, "y": 772.0}}, "position": {"x": 1526.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "2:5": [{"logicalSeatId": 1537113443, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1470.0}, "se": {"x": 604.0, "y": 1470.0}, "sw": {"x": 614.0, "y": 1480.0}, "nw": {"x": 604.0, "y": 1480.0}}, "position": {"x": 609.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1392, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113444, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1484.0}, "se": {"x": 604.0, "y": 1484.0}, "sw": {"x": 614.0, "y": 1494.0}, "nw": {"x": 604.0, "y": 1494.0}}, "position": {"x": 609.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1391, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113445, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1498.0}, "se": {"x": 604.0, "y": 1498.0}, "sw": {"x": 614.0, "y": 1508.0}, "nw": {"x": 604.0, "y": 1508.0}}, "position": {"x": 609.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1390, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113446, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1512.0}, "se": {"x": 604.0, "y": 1512.0}, "sw": {"x": 614.0, "y": 1522.0}, "nw": {"x": 604.0, "y": 1522.0}}, "position": {"x": 609.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1389, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113447, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1526.0}, "se": {"x": 604.0, "y": 1526.0}, "sw": {"x": 614.0, "y": 1536.0}, "nw": {"x": 604.0, "y": 1536.0}}, "position": {"x": 609.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1388, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113458, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1470.0}, "se": {"x": 590.0, "y": 1470.0}, "sw": {"x": 600.0, "y": 1480.0}, "nw": {"x": 590.0, "y": 1480.0}}, "position": {"x": 595.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1285, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113459, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1484.0}, "se": {"x": 590.0, "y": 1484.0}, "sw": {"x": 600.0, "y": 1494.0}, "nw": {"x": 590.0, "y": 1494.0}}, "position": {"x": 595.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1284, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113460, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1498.0}, "se": {"x": 590.0, "y": 1498.0}, "sw": {"x": 600.0, "y": 1508.0}, "nw": {"x": 590.0, "y": 1508.0}}, "position": {"x": 595.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1283, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113461, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1512.0}, "se": {"x": 590.0, "y": 1512.0}, "sw": {"x": 600.0, "y": 1522.0}, "nw": {"x": 590.0, "y": 1522.0}}, "position": {"x": 595.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1282, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113462, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1526.0}, "se": {"x": 590.0, "y": 1526.0}, "sw": {"x": 600.0, "y": 1536.0}, "nw": {"x": 590.0, "y": 1536.0}}, "position": {"x": 595.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1281, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113474, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1470.0}, "se": {"x": 576.0, "y": 1470.0}, "sw": {"x": 586.0, "y": 1480.0}, "nw": {"x": 576.0, "y": 1480.0}}, "position": {"x": 581.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1198, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113475, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1484.0}, "se": {"x": 576.0, "y": 1484.0}, "sw": {"x": 586.0, "y": 1494.0}, "nw": {"x": 576.0, "y": 1494.0}}, "position": {"x": 581.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1197, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113476, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1498.0}, "se": {"x": 576.0, "y": 1498.0}, "sw": {"x": 586.0, "y": 1508.0}, "nw": {"x": 576.0, "y": 1508.0}}, "position": {"x": 581.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1196, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113477, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1512.0}, "se": {"x": 576.0, "y": 1512.0}, "sw": {"x": 586.0, "y": 1522.0}, "nw": {"x": 576.0, "y": 1522.0}}, "position": {"x": 581.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1195, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113478, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1526.0}, "se": {"x": 576.0, "y": 1526.0}, "sw": {"x": 586.0, "y": 1536.0}, "nw": {"x": 576.0, "y": 1536.0}}, "position": {"x": 581.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1194, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113492, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1470.0}, "se": {"x": 562.0, "y": 1470.0}, "sw": {"x": 572.0, "y": 1480.0}, "nw": {"x": 562.0, "y": 1480.0}}, "position": {"x": 567.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113493, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1484.0}, "se": {"x": 562.0, "y": 1484.0}, "sw": {"x": 572.0, "y": 1494.0}, "nw": {"x": 562.0, "y": 1494.0}}, "position": {"x": 567.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113494, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1498.0}, "se": {"x": 562.0, "y": 1498.0}, "sw": {"x": 572.0, "y": 1508.0}, "nw": {"x": 562.0, "y": 1508.0}}, "position": {"x": 567.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113495, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1512.0}, "se": {"x": 562.0, "y": 1512.0}, "sw": {"x": 572.0, "y": 1522.0}, "nw": {"x": 562.0, "y": 1522.0}}, "position": {"x": 567.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113496, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1526.0}, "se": {"x": 562.0, "y": 1526.0}, "sw": {"x": 572.0, "y": 1536.0}, "nw": {"x": 562.0, "y": 1536.0}}, "position": {"x": 567.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113753, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1276.0}, "se": {"x": 604.0, "y": 1276.0}, "sw": {"x": 614.0, "y": 1286.0}, "nw": {"x": 604.0, "y": 1286.0}}, "position": {"x": 609.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1404, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113754, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1290.0}, "se": {"x": 604.0, "y": 1290.0}, "sw": {"x": 614.0, "y": 1300.0}, "nw": {"x": 604.0, "y": 1300.0}}, "position": {"x": 609.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1403, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113755, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1304.0}, "se": {"x": 604.0, "y": 1304.0}, "sw": {"x": 614.0, "y": 1314.0}, "nw": {"x": 604.0, "y": 1314.0}}, "position": {"x": 609.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1402, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113756, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1318.0}, "se": {"x": 604.0, "y": 1318.0}, "sw": {"x": 614.0, "y": 1328.0}, "nw": {"x": 604.0, "y": 1328.0}}, "position": {"x": 609.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1401, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113757, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1332.0}, "se": {"x": 604.0, "y": 1332.0}, "sw": {"x": 614.0, "y": 1342.0}, "nw": {"x": 604.0, "y": 1342.0}}, "position": {"x": 609.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1400, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113758, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1346.0}, "se": {"x": 604.0, "y": 1346.0}, "sw": {"x": 614.0, "y": 1356.0}, "nw": {"x": 604.0, "y": 1356.0}}, "position": {"x": 609.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1399, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113759, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1360.0}, "se": {"x": 604.0, "y": 1360.0}, "sw": {"x": 614.0, "y": 1370.0}, "nw": {"x": 604.0, "y": 1370.0}}, "position": {"x": 609.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1398, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113760, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1374.0}, "se": {"x": 604.0, "y": 1374.0}, "sw": {"x": 614.0, "y": 1384.0}, "nw": {"x": 604.0, "y": 1384.0}}, "position": {"x": 609.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1397, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113761, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1388.0}, "se": {"x": 604.0, "y": 1388.0}, "sw": {"x": 614.0, "y": 1398.0}, "nw": {"x": 604.0, "y": 1398.0}}, "position": {"x": 609.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1396, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113762, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1402.0}, "se": {"x": 604.0, "y": 1402.0}, "sw": {"x": 614.0, "y": 1412.0}, "nw": {"x": 604.0, "y": 1412.0}}, "position": {"x": 609.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1395, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113763, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1416.0}, "se": {"x": 604.0, "y": 1416.0}, "sw": {"x": 614.0, "y": 1426.0}, "nw": {"x": 604.0, "y": 1426.0}}, "position": {"x": 609.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1394, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113764, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1430.0}, "se": {"x": 604.0, "y": 1430.0}, "sw": {"x": 614.0, "y": 1440.0}, "nw": {"x": 604.0, "y": 1440.0}}, "position": {"x": 609.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1393, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113774, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1276.0}, "se": {"x": 590.0, "y": 1276.0}, "sw": {"x": 600.0, "y": 1286.0}, "nw": {"x": 590.0, "y": 1286.0}}, "position": {"x": 595.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1297, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113775, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1290.0}, "se": {"x": 590.0, "y": 1290.0}, "sw": {"x": 600.0, "y": 1300.0}, "nw": {"x": 590.0, "y": 1300.0}}, "position": {"x": 595.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1296, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113776, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1304.0}, "se": {"x": 590.0, "y": 1304.0}, "sw": {"x": 600.0, "y": 1314.0}, "nw": {"x": 590.0, "y": 1314.0}}, "position": {"x": 595.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1295, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113777, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1318.0}, "se": {"x": 590.0, "y": 1318.0}, "sw": {"x": 600.0, "y": 1328.0}, "nw": {"x": 590.0, "y": 1328.0}}, "position": {"x": 595.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1294, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113778, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1332.0}, "se": {"x": 590.0, "y": 1332.0}, "sw": {"x": 600.0, "y": 1342.0}, "nw": {"x": 590.0, "y": 1342.0}}, "position": {"x": 595.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1293, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113779, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1346.0}, "se": {"x": 590.0, "y": 1346.0}, "sw": {"x": 600.0, "y": 1356.0}, "nw": {"x": 590.0, "y": 1356.0}}, "position": {"x": 595.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1292, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113780, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1360.0}, "se": {"x": 590.0, "y": 1360.0}, "sw": {"x": 600.0, "y": 1370.0}, "nw": {"x": 590.0, "y": 1370.0}}, "position": {"x": 595.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1291, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113781, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1374.0}, "se": {"x": 590.0, "y": 1374.0}, "sw": {"x": 600.0, "y": 1384.0}, "nw": {"x": 590.0, "y": 1384.0}}, "position": {"x": 595.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1290, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113782, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1388.0}, "se": {"x": 590.0, "y": 1388.0}, "sw": {"x": 600.0, "y": 1398.0}, "nw": {"x": 590.0, "y": 1398.0}}, "position": {"x": 595.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1289, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113783, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1402.0}, "se": {"x": 590.0, "y": 1402.0}, "sw": {"x": 600.0, "y": 1412.0}, "nw": {"x": 590.0, "y": 1412.0}}, "position": {"x": 595.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1288, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113784, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1416.0}, "se": {"x": 590.0, "y": 1416.0}, "sw": {"x": 600.0, "y": 1426.0}, "nw": {"x": 590.0, "y": 1426.0}}, "position": {"x": 595.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1287, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113785, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1430.0}, "se": {"x": 590.0, "y": 1430.0}, "sw": {"x": 600.0, "y": 1440.0}, "nw": {"x": 590.0, "y": 1440.0}}, "position": {"x": 595.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1286, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113795, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1276.0}, "se": {"x": 576.0, "y": 1276.0}, "sw": {"x": 586.0, "y": 1286.0}, "nw": {"x": 576.0, "y": 1286.0}}, "position": {"x": 581.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1210, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113796, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1290.0}, "se": {"x": 576.0, "y": 1290.0}, "sw": {"x": 586.0, "y": 1300.0}, "nw": {"x": 576.0, "y": 1300.0}}, "position": {"x": 581.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1209, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113797, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1304.0}, "se": {"x": 576.0, "y": 1304.0}, "sw": {"x": 586.0, "y": 1314.0}, "nw": {"x": 576.0, "y": 1314.0}}, "position": {"x": 581.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1208, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113798, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1318.0}, "se": {"x": 576.0, "y": 1318.0}, "sw": {"x": 586.0, "y": 1328.0}, "nw": {"x": 576.0, "y": 1328.0}}, "position": {"x": 581.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1207, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113799, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1332.0}, "se": {"x": 576.0, "y": 1332.0}, "sw": {"x": 586.0, "y": 1342.0}, "nw": {"x": 576.0, "y": 1342.0}}, "position": {"x": 581.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1206, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113800, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1346.0}, "se": {"x": 576.0, "y": 1346.0}, "sw": {"x": 586.0, "y": 1356.0}, "nw": {"x": 576.0, "y": 1356.0}}, "position": {"x": 581.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1205, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113801, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1360.0}, "se": {"x": 576.0, "y": 1360.0}, "sw": {"x": 586.0, "y": 1370.0}, "nw": {"x": 576.0, "y": 1370.0}}, "position": {"x": 581.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1204, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113802, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1374.0}, "se": {"x": 576.0, "y": 1374.0}, "sw": {"x": 586.0, "y": 1384.0}, "nw": {"x": 576.0, "y": 1384.0}}, "position": {"x": 581.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1203, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113803, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1388.0}, "se": {"x": 576.0, "y": 1388.0}, "sw": {"x": 586.0, "y": 1398.0}, "nw": {"x": 576.0, "y": 1398.0}}, "position": {"x": 581.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1202, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113804, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1402.0}, "se": {"x": 576.0, "y": 1402.0}, "sw": {"x": 586.0, "y": 1412.0}, "nw": {"x": 576.0, "y": 1412.0}}, "position": {"x": 581.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1201, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113805, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1416.0}, "se": {"x": 576.0, "y": 1416.0}, "sw": {"x": 586.0, "y": 1426.0}, "nw": {"x": 576.0, "y": 1426.0}}, "position": {"x": 581.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1200, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113806, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1430.0}, "se": {"x": 576.0, "y": 1430.0}, "sw": {"x": 586.0, "y": 1440.0}, "nw": {"x": 576.0, "y": 1440.0}}, "position": {"x": 581.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1199, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113816, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1276.0}, "se": {"x": 562.0, "y": 1276.0}, "sw": {"x": 572.0, "y": 1286.0}, "nw": {"x": 562.0, "y": 1286.0}}, "position": {"x": 567.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113817, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1290.0}, "se": {"x": 562.0, "y": 1290.0}, "sw": {"x": 572.0, "y": 1300.0}, "nw": {"x": 562.0, "y": 1300.0}}, "position": {"x": 567.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113818, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1304.0}, "se": {"x": 562.0, "y": 1304.0}, "sw": {"x": 572.0, "y": 1314.0}, "nw": {"x": 562.0, "y": 1314.0}}, "position": {"x": 567.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113819, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1318.0}, "se": {"x": 562.0, "y": 1318.0}, "sw": {"x": 572.0, "y": 1328.0}, "nw": {"x": 562.0, "y": 1328.0}}, "position": {"x": 567.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113820, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1332.0}, "se": {"x": 562.0, "y": 1332.0}, "sw": {"x": 572.0, "y": 1342.0}, "nw": {"x": 562.0, "y": 1342.0}}, "position": {"x": 567.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113821, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1346.0}, "se": {"x": 562.0, "y": 1346.0}, "sw": {"x": 572.0, "y": 1356.0}, "nw": {"x": 562.0, "y": 1356.0}}, "position": {"x": 567.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113822, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1360.0}, "se": {"x": 562.0, "y": 1360.0}, "sw": {"x": 572.0, "y": 1370.0}, "nw": {"x": 562.0, "y": 1370.0}}, "position": {"x": 567.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113823, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1374.0}, "se": {"x": 562.0, "y": 1374.0}, "sw": {"x": 572.0, "y": 1384.0}, "nw": {"x": 562.0, "y": 1384.0}}, "position": {"x": 567.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113824, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1388.0}, "se": {"x": 562.0, "y": 1388.0}, "sw": {"x": 572.0, "y": 1398.0}, "nw": {"x": 562.0, "y": 1398.0}}, "position": {"x": 567.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113825, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1402.0}, "se": {"x": 562.0, "y": 1402.0}, "sw": {"x": 572.0, "y": 1412.0}, "nw": {"x": 562.0, "y": 1412.0}}, "position": {"x": 567.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113826, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1416.0}, "se": {"x": 562.0, "y": 1416.0}, "sw": {"x": 572.0, "y": 1426.0}, "nw": {"x": 562.0, "y": 1426.0}}, "position": {"x": 567.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113827, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1430.0}, "se": {"x": 562.0, "y": 1430.0}, "sw": {"x": 572.0, "y": 1440.0}, "nw": {"x": 562.0, "y": 1440.0}}, "position": {"x": 567.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}], "4:3": [{"logicalSeatId": 1537114960, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 776.0}, "se": {"x": 1031.0, "y": 786.0}, "sw": {"x": 1041.0, "y": 776.0}, "nw": {"x": 1041.0, "y": 786.0}}, "position": {"x": 1036.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114961, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 776.0}, "se": {"x": 1045.0, "y": 786.0}, "sw": {"x": 1055.0, "y": 776.0}, "nw": {"x": 1055.0, "y": 786.0}}, "position": {"x": 1050.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114962, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 776.0}, "se": {"x": 1059.0, "y": 786.0}, "sw": {"x": 1069.0, "y": 776.0}, "nw": {"x": 1069.0, "y": 786.0}}, "position": {"x": 1064.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114963, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 776.0}, "se": {"x": 1073.0, "y": 786.0}, "sw": {"x": 1083.0, "y": 776.0}, "nw": {"x": 1083.0, "y": 786.0}}, "position": {"x": 1078.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114964, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 776.0}, "se": {"x": 1087.0, "y": 786.0}, "sw": {"x": 1097.0, "y": 776.0}, "nw": {"x": 1097.0, "y": 786.0}}, "position": {"x": 1092.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114965, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 776.0}, "se": {"x": 1101.0, "y": 786.0}, "sw": {"x": 1111.0, "y": 776.0}, "nw": {"x": 1111.0, "y": 786.0}}, "position": {"x": 1106.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114966, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 776.0}, "se": {"x": 1115.0, "y": 786.0}, "sw": {"x": 1125.0, "y": 776.0}, "nw": {"x": 1125.0, "y": 786.0}}, "position": {"x": 1120.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114967, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 776.0}, "se": {"x": 1129.0, "y": 786.0}, "sw": {"x": 1139.0, "y": 776.0}, "nw": {"x": 1139.0, "y": 786.0}}, "position": {"x": 1134.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114968, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 776.0}, "se": {"x": 1143.0, "y": 786.0}, "sw": {"x": 1153.0, "y": 776.0}, "nw": {"x": 1153.0, "y": 786.0}}, "position": {"x": 1148.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114969, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 776.0}, "se": {"x": 1157.0, "y": 786.0}, "sw": {"x": 1167.0, "y": 776.0}, "nw": {"x": 1167.0, "y": 786.0}}, "position": {"x": 1162.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114970, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 790.0}, "se": {"x": 1031.0, "y": 800.0}, "sw": {"x": 1041.0, "y": 790.0}, "nw": {"x": 1041.0, "y": 800.0}}, "position": {"x": 1036.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114971, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 790.0}, "se": {"x": 1045.0, "y": 800.0}, "sw": {"x": 1055.0, "y": 790.0}, "nw": {"x": 1055.0, "y": 800.0}}, "position": {"x": 1050.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114972, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 790.0}, "se": {"x": 1059.0, "y": 800.0}, "sw": {"x": 1069.0, "y": 790.0}, "nw": {"x": 1069.0, "y": 800.0}}, "position": {"x": 1064.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114973, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 790.0}, "se": {"x": 1073.0, "y": 800.0}, "sw": {"x": 1083.0, "y": 790.0}, "nw": {"x": 1083.0, "y": 800.0}}, "position": {"x": 1078.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114974, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 790.0}, "se": {"x": 1087.0, "y": 800.0}, "sw": {"x": 1097.0, "y": 790.0}, "nw": {"x": 1097.0, "y": 800.0}}, "position": {"x": 1092.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114975, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 790.0}, "se": {"x": 1101.0, "y": 800.0}, "sw": {"x": 1111.0, "y": 790.0}, "nw": {"x": 1111.0, "y": 800.0}}, "position": {"x": 1106.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114976, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 790.0}, "se": {"x": 1115.0, "y": 800.0}, "sw": {"x": 1125.0, "y": 790.0}, "nw": {"x": 1125.0, "y": 800.0}}, "position": {"x": 1120.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114977, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 790.0}, "se": {"x": 1129.0, "y": 800.0}, "sw": {"x": 1139.0, "y": 790.0}, "nw": {"x": 1139.0, "y": 800.0}}, "position": {"x": 1134.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114978, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 790.0}, "se": {"x": 1143.0, "y": 800.0}, "sw": {"x": 1153.0, "y": 790.0}, "nw": {"x": 1153.0, "y": 800.0}}, "position": {"x": 1148.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114979, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 790.0}, "se": {"x": 1157.0, "y": 800.0}, "sw": {"x": 1167.0, "y": 790.0}, "nw": {"x": 1167.0, "y": 800.0}}, "position": {"x": 1162.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114980, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 804.0}, "se": {"x": 1031.0, "y": 814.0}, "sw": {"x": 1041.0, "y": 804.0}, "nw": {"x": 1041.0, "y": 814.0}}, "position": {"x": 1036.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114981, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 804.0}, "se": {"x": 1045.0, "y": 814.0}, "sw": {"x": 1055.0, "y": 804.0}, "nw": {"x": 1055.0, "y": 814.0}}, "position": {"x": 1050.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114982, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 804.0}, "se": {"x": 1059.0, "y": 814.0}, "sw": {"x": 1069.0, "y": 804.0}, "nw": {"x": 1069.0, "y": 814.0}}, "position": {"x": 1064.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114983, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 804.0}, "se": {"x": 1073.0, "y": 814.0}, "sw": {"x": 1083.0, "y": 804.0}, "nw": {"x": 1083.0, "y": 814.0}}, "position": {"x": 1078.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114984, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 804.0}, "se": {"x": 1087.0, "y": 814.0}, "sw": {"x": 1097.0, "y": 804.0}, "nw": {"x": 1097.0, "y": 814.0}}, "position": {"x": 1092.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114985, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 804.0}, "se": {"x": 1101.0, "y": 814.0}, "sw": {"x": 1111.0, "y": 804.0}, "nw": {"x": 1111.0, "y": 814.0}}, "position": {"x": 1106.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114986, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 804.0}, "se": {"x": 1115.0, "y": 814.0}, "sw": {"x": 1125.0, "y": 804.0}, "nw": {"x": 1125.0, "y": 814.0}}, "position": {"x": 1120.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114987, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 804.0}, "se": {"x": 1129.0, "y": 814.0}, "sw": {"x": 1139.0, "y": 804.0}, "nw": {"x": 1139.0, "y": 814.0}}, "position": {"x": 1134.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114988, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 804.0}, "se": {"x": 1143.0, "y": 814.0}, "sw": {"x": 1153.0, "y": 804.0}, "nw": {"x": 1153.0, "y": 814.0}}, "position": {"x": 1148.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114989, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 804.0}, "se": {"x": 1157.0, "y": 814.0}, "sw": {"x": 1167.0, "y": 804.0}, "nw": {"x": 1167.0, "y": 814.0}}, "position": {"x": 1162.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114990, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 818.0}, "se": {"x": 1031.0, "y": 828.0}, "sw": {"x": 1041.0, "y": 818.0}, "nw": {"x": 1041.0, "y": 828.0}}, "position": {"x": 1036.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114991, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 818.0}, "se": {"x": 1045.0, "y": 828.0}, "sw": {"x": 1055.0, "y": 818.0}, "nw": {"x": 1055.0, "y": 828.0}}, "position": {"x": 1050.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114992, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 818.0}, "se": {"x": 1059.0, "y": 828.0}, "sw": {"x": 1069.0, "y": 818.0}, "nw": {"x": 1069.0, "y": 828.0}}, "position": {"x": 1064.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114993, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 818.0}, "se": {"x": 1073.0, "y": 828.0}, "sw": {"x": 1083.0, "y": 818.0}, "nw": {"x": 1083.0, "y": 828.0}}, "position": {"x": 1078.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114994, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 818.0}, "se": {"x": 1087.0, "y": 828.0}, "sw": {"x": 1097.0, "y": 818.0}, "nw": {"x": 1097.0, "y": 828.0}}, "position": {"x": 1092.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114995, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 818.0}, "se": {"x": 1101.0, "y": 828.0}, "sw": {"x": 1111.0, "y": 818.0}, "nw": {"x": 1111.0, "y": 828.0}}, "position": {"x": 1106.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114996, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 818.0}, "se": {"x": 1115.0, "y": 828.0}, "sw": {"x": 1125.0, "y": 818.0}, "nw": {"x": 1125.0, "y": 828.0}}, "position": {"x": 1120.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114997, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 818.0}, "se": {"x": 1129.0, "y": 828.0}, "sw": {"x": 1139.0, "y": 818.0}, "nw": {"x": 1139.0, "y": 828.0}}, "position": {"x": 1134.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114998, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 818.0}, "se": {"x": 1143.0, "y": 828.0}, "sw": {"x": 1153.0, "y": 818.0}, "nw": {"x": 1153.0, "y": 828.0}}, "position": {"x": 1148.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537114999, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 818.0}, "se": {"x": 1157.0, "y": 828.0}, "sw": {"x": 1167.0, "y": 818.0}, "nw": {"x": 1167.0, "y": 828.0}}, "position": {"x": 1162.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115000, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 832.0}, "se": {"x": 1031.0, "y": 842.0}, "sw": {"x": 1041.0, "y": 832.0}, "nw": {"x": 1041.0, "y": 842.0}}, "position": {"x": 1036.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115001, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 832.0}, "se": {"x": 1045.0, "y": 842.0}, "sw": {"x": 1055.0, "y": 832.0}, "nw": {"x": 1055.0, "y": 842.0}}, "position": {"x": 1050.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115002, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 832.0}, "se": {"x": 1059.0, "y": 842.0}, "sw": {"x": 1069.0, "y": 832.0}, "nw": {"x": 1069.0, "y": 842.0}}, "position": {"x": 1064.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115003, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 832.0}, "se": {"x": 1073.0, "y": 842.0}, "sw": {"x": 1083.0, "y": 832.0}, "nw": {"x": 1083.0, "y": 842.0}}, "position": {"x": 1078.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115004, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 832.0}, "se": {"x": 1087.0, "y": 842.0}, "sw": {"x": 1097.0, "y": 832.0}, "nw": {"x": 1097.0, "y": 842.0}}, "position": {"x": 1092.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115005, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 832.0}, "se": {"x": 1101.0, "y": 842.0}, "sw": {"x": 1111.0, "y": 832.0}, "nw": {"x": 1111.0, "y": 842.0}}, "position": {"x": 1106.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115006, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 832.0}, "se": {"x": 1115.0, "y": 842.0}, "sw": {"x": 1125.0, "y": 832.0}, "nw": {"x": 1125.0, "y": 842.0}}, "position": {"x": 1120.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115007, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 832.0}, "se": {"x": 1129.0, "y": 842.0}, "sw": {"x": 1139.0, "y": 832.0}, "nw": {"x": 1139.0, "y": 842.0}}, "position": {"x": 1134.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115008, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 832.0}, "se": {"x": 1143.0, "y": 842.0}, "sw": {"x": 1153.0, "y": 832.0}, "nw": {"x": 1153.0, "y": 842.0}}, "position": {"x": 1148.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115009, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 832.0}, "se": {"x": 1157.0, "y": 842.0}, "sw": {"x": 1167.0, "y": 832.0}, "nw": {"x": 1167.0, "y": 842.0}}, "position": {"x": 1162.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115010, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 873.0}, "se": {"x": 1031.0, "y": 883.0}, "sw": {"x": 1041.0, "y": 873.0}, "nw": {"x": 1041.0, "y": 883.0}}, "position": {"x": 1036.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115011, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 873.0}, "se": {"x": 1045.0, "y": 883.0}, "sw": {"x": 1055.0, "y": 873.0}, "nw": {"x": 1055.0, "y": 883.0}}, "position": {"x": 1050.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115012, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 873.0}, "se": {"x": 1059.0, "y": 883.0}, "sw": {"x": 1069.0, "y": 873.0}, "nw": {"x": 1069.0, "y": 883.0}}, "position": {"x": 1064.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115013, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 873.0}, "se": {"x": 1073.0, "y": 883.0}, "sw": {"x": 1083.0, "y": 873.0}, "nw": {"x": 1083.0, "y": 883.0}}, "position": {"x": 1078.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115014, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 873.0}, "se": {"x": 1087.0, "y": 883.0}, "sw": {"x": 1097.0, "y": 873.0}, "nw": {"x": 1097.0, "y": 883.0}}, "position": {"x": 1092.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115015, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 873.0}, "se": {"x": 1101.0, "y": 883.0}, "sw": {"x": 1111.0, "y": 873.0}, "nw": {"x": 1111.0, "y": 883.0}}, "position": {"x": 1106.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115016, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 873.0}, "se": {"x": 1115.0, "y": 883.0}, "sw": {"x": 1125.0, "y": 873.0}, "nw": {"x": 1125.0, "y": 883.0}}, "position": {"x": 1120.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115017, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 873.0}, "se": {"x": 1129.0, "y": 883.0}, "sw": {"x": 1139.0, "y": 873.0}, "nw": {"x": 1139.0, "y": 883.0}}, "position": {"x": 1134.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115018, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 873.0}, "se": {"x": 1143.0, "y": 883.0}, "sw": {"x": 1153.0, "y": 873.0}, "nw": {"x": 1153.0, "y": 883.0}}, "position": {"x": 1148.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115019, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 873.0}, "se": {"x": 1157.0, "y": 883.0}, "sw": {"x": 1167.0, "y": 873.0}, "nw": {"x": 1167.0, "y": 883.0}}, "position": {"x": 1162.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115020, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 887.0}, "se": {"x": 1031.0, "y": 897.0}, "sw": {"x": 1041.0, "y": 887.0}, "nw": {"x": 1041.0, "y": 897.0}}, "position": {"x": 1036.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115021, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 887.0}, "se": {"x": 1045.0, "y": 897.0}, "sw": {"x": 1055.0, "y": 887.0}, "nw": {"x": 1055.0, "y": 897.0}}, "position": {"x": 1050.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115022, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 887.0}, "se": {"x": 1059.0, "y": 897.0}, "sw": {"x": 1069.0, "y": 887.0}, "nw": {"x": 1069.0, "y": 897.0}}, "position": {"x": 1064.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115023, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 887.0}, "se": {"x": 1073.0, "y": 897.0}, "sw": {"x": 1083.0, "y": 887.0}, "nw": {"x": 1083.0, "y": 897.0}}, "position": {"x": 1078.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115024, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 887.0}, "se": {"x": 1087.0, "y": 897.0}, "sw": {"x": 1097.0, "y": 887.0}, "nw": {"x": 1097.0, "y": 897.0}}, "position": {"x": 1092.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115025, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 887.0}, "se": {"x": 1101.0, "y": 897.0}, "sw": {"x": 1111.0, "y": 887.0}, "nw": {"x": 1111.0, "y": 897.0}}, "position": {"x": 1106.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115026, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 887.0}, "se": {"x": 1115.0, "y": 897.0}, "sw": {"x": 1125.0, "y": 887.0}, "nw": {"x": 1125.0, "y": 897.0}}, "position": {"x": 1120.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115027, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 887.0}, "se": {"x": 1129.0, "y": 897.0}, "sw": {"x": 1139.0, "y": 887.0}, "nw": {"x": 1139.0, "y": 897.0}}, "position": {"x": 1134.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115028, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 887.0}, "se": {"x": 1143.0, "y": 897.0}, "sw": {"x": 1153.0, "y": 887.0}, "nw": {"x": 1153.0, "y": 897.0}}, "position": {"x": 1148.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115029, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 887.0}, "se": {"x": 1157.0, "y": 897.0}, "sw": {"x": 1167.0, "y": 887.0}, "nw": {"x": 1167.0, "y": 897.0}}, "position": {"x": 1162.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115030, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 901.0}, "se": {"x": 1031.0, "y": 911.0}, "sw": {"x": 1041.0, "y": 901.0}, "nw": {"x": 1041.0, "y": 911.0}}, "position": {"x": 1036.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115031, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 901.0}, "se": {"x": 1045.0, "y": 911.0}, "sw": {"x": 1055.0, "y": 901.0}, "nw": {"x": 1055.0, "y": 911.0}}, "position": {"x": 1050.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115032, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 901.0}, "se": {"x": 1059.0, "y": 911.0}, "sw": {"x": 1069.0, "y": 901.0}, "nw": {"x": 1069.0, "y": 911.0}}, "position": {"x": 1064.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115033, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 901.0}, "se": {"x": 1073.0, "y": 911.0}, "sw": {"x": 1083.0, "y": 901.0}, "nw": {"x": 1083.0, "y": 911.0}}, "position": {"x": 1078.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115034, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 901.0}, "se": {"x": 1087.0, "y": 911.0}, "sw": {"x": 1097.0, "y": 901.0}, "nw": {"x": 1097.0, "y": 911.0}}, "position": {"x": 1092.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115035, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 901.0}, "se": {"x": 1101.0, "y": 911.0}, "sw": {"x": 1111.0, "y": 901.0}, "nw": {"x": 1111.0, "y": 911.0}}, "position": {"x": 1106.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115036, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 901.0}, "se": {"x": 1115.0, "y": 911.0}, "sw": {"x": 1125.0, "y": 901.0}, "nw": {"x": 1125.0, "y": 911.0}}, "position": {"x": 1120.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115037, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 901.0}, "se": {"x": 1129.0, "y": 911.0}, "sw": {"x": 1139.0, "y": 901.0}, "nw": {"x": 1139.0, "y": 911.0}}, "position": {"x": 1134.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115038, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 901.0}, "se": {"x": 1143.0, "y": 911.0}, "sw": {"x": 1153.0, "y": 901.0}, "nw": {"x": 1153.0, "y": 911.0}}, "position": {"x": 1148.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115039, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 901.0}, "se": {"x": 1157.0, "y": 911.0}, "sw": {"x": 1167.0, "y": 901.0}, "nw": {"x": 1167.0, "y": 911.0}}, "position": {"x": 1162.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115040, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 915.0}, "se": {"x": 1031.0, "y": 925.0}, "sw": {"x": 1041.0, "y": 915.0}, "nw": {"x": 1041.0, "y": 925.0}}, "position": {"x": 1036.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115041, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 915.0}, "se": {"x": 1045.0, "y": 925.0}, "sw": {"x": 1055.0, "y": 915.0}, "nw": {"x": 1055.0, "y": 925.0}}, "position": {"x": 1050.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115042, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 915.0}, "se": {"x": 1059.0, "y": 925.0}, "sw": {"x": 1069.0, "y": 915.0}, "nw": {"x": 1069.0, "y": 925.0}}, "position": {"x": 1064.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115043, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 915.0}, "se": {"x": 1073.0, "y": 925.0}, "sw": {"x": 1083.0, "y": 915.0}, "nw": {"x": 1083.0, "y": 925.0}}, "position": {"x": 1078.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115044, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 915.0}, "se": {"x": 1087.0, "y": 925.0}, "sw": {"x": 1097.0, "y": 915.0}, "nw": {"x": 1097.0, "y": 925.0}}, "position": {"x": 1092.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115045, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 915.0}, "se": {"x": 1101.0, "y": 925.0}, "sw": {"x": 1111.0, "y": 915.0}, "nw": {"x": 1111.0, "y": 925.0}}, "position": {"x": 1106.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115046, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 915.0}, "se": {"x": 1115.0, "y": 925.0}, "sw": {"x": 1125.0, "y": 915.0}, "nw": {"x": 1125.0, "y": 925.0}}, "position": {"x": 1120.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115047, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 915.0}, "se": {"x": 1129.0, "y": 925.0}, "sw": {"x": 1139.0, "y": 915.0}, "nw": {"x": 1139.0, "y": 925.0}}, "position": {"x": 1134.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115048, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 915.0}, "se": {"x": 1143.0, "y": 925.0}, "sw": {"x": 1153.0, "y": 915.0}, "nw": {"x": 1153.0, "y": 925.0}}, "position": {"x": 1148.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115049, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 915.0}, "se": {"x": 1157.0, "y": 925.0}, "sw": {"x": 1167.0, "y": 915.0}, "nw": {"x": 1167.0, "y": 925.0}}, "position": {"x": 1162.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115050, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 929.0}, "se": {"x": 1031.0, "y": 939.0}, "sw": {"x": 1041.0, "y": 929.0}, "nw": {"x": 1041.0, "y": 939.0}}, "position": {"x": 1036.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115051, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 929.0}, "se": {"x": 1045.0, "y": 939.0}, "sw": {"x": 1055.0, "y": 929.0}, "nw": {"x": 1055.0, "y": 939.0}}, "position": {"x": 1050.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115052, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 929.0}, "se": {"x": 1059.0, "y": 939.0}, "sw": {"x": 1069.0, "y": 929.0}, "nw": {"x": 1069.0, "y": 939.0}}, "position": {"x": 1064.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115053, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 929.0}, "se": {"x": 1073.0, "y": 939.0}, "sw": {"x": 1083.0, "y": 929.0}, "nw": {"x": 1083.0, "y": 939.0}}, "position": {"x": 1078.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115054, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 929.0}, "se": {"x": 1087.0, "y": 939.0}, "sw": {"x": 1097.0, "y": 929.0}, "nw": {"x": 1097.0, "y": 939.0}}, "position": {"x": 1092.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115055, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 929.0}, "se": {"x": 1101.0, "y": 939.0}, "sw": {"x": 1111.0, "y": 929.0}, "nw": {"x": 1111.0, "y": 939.0}}, "position": {"x": 1106.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115056, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 929.0}, "se": {"x": 1115.0, "y": 939.0}, "sw": {"x": 1125.0, "y": 929.0}, "nw": {"x": 1125.0, "y": 939.0}}, "position": {"x": 1120.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115057, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 929.0}, "se": {"x": 1129.0, "y": 939.0}, "sw": {"x": 1139.0, "y": 929.0}, "nw": {"x": 1139.0, "y": 939.0}}, "position": {"x": 1134.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115058, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 929.0}, "se": {"x": 1143.0, "y": 939.0}, "sw": {"x": 1153.0, "y": 929.0}, "nw": {"x": 1153.0, "y": 939.0}}, "position": {"x": 1148.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115059, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 929.0}, "se": {"x": 1157.0, "y": 939.0}, "sw": {"x": 1167.0, "y": 929.0}, "nw": {"x": 1167.0, "y": 939.0}}, "position": {"x": 1162.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115060, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 943.0}, "se": {"x": 1031.0, "y": 953.0}, "sw": {"x": 1041.0, "y": 943.0}, "nw": {"x": 1041.0, "y": 953.0}}, "position": {"x": 1036.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115061, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 943.0}, "se": {"x": 1045.0, "y": 953.0}, "sw": {"x": 1055.0, "y": 943.0}, "nw": {"x": 1055.0, "y": 953.0}}, "position": {"x": 1050.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115062, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 943.0}, "se": {"x": 1059.0, "y": 953.0}, "sw": {"x": 1069.0, "y": 943.0}, "nw": {"x": 1069.0, "y": 953.0}}, "position": {"x": 1064.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115063, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 943.0}, "se": {"x": 1073.0, "y": 953.0}, "sw": {"x": 1083.0, "y": 943.0}, "nw": {"x": 1083.0, "y": 953.0}}, "position": {"x": 1078.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115064, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 943.0}, "se": {"x": 1087.0, "y": 953.0}, "sw": {"x": 1097.0, "y": 943.0}, "nw": {"x": 1097.0, "y": 953.0}}, "position": {"x": 1092.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115065, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 943.0}, "se": {"x": 1101.0, "y": 953.0}, "sw": {"x": 1111.0, "y": 943.0}, "nw": {"x": 1111.0, "y": 953.0}}, "position": {"x": 1106.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115066, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 943.0}, "se": {"x": 1115.0, "y": 953.0}, "sw": {"x": 1125.0, "y": 943.0}, "nw": {"x": 1125.0, "y": 953.0}}, "position": {"x": 1120.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115067, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 943.0}, "se": {"x": 1129.0, "y": 953.0}, "sw": {"x": 1139.0, "y": 943.0}, "nw": {"x": 1139.0, "y": 953.0}}, "position": {"x": 1134.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115068, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 943.0}, "se": {"x": 1143.0, "y": 953.0}, "sw": {"x": 1153.0, "y": 943.0}, "nw": {"x": 1153.0, "y": 953.0}}, "position": {"x": 1148.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115069, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 943.0}, "se": {"x": 1157.0, "y": 953.0}, "sw": {"x": 1167.0, "y": 943.0}, "nw": {"x": 1167.0, "y": 953.0}}, "position": {"x": 1162.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115070, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 957.0}, "se": {"x": 1031.0, "y": 967.0}, "sw": {"x": 1041.0, "y": 957.0}, "nw": {"x": 1041.0, "y": 967.0}}, "position": {"x": 1036.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115071, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 957.0}, "se": {"x": 1045.0, "y": 967.0}, "sw": {"x": 1055.0, "y": 957.0}, "nw": {"x": 1055.0, "y": 967.0}}, "position": {"x": 1050.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115072, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 957.0}, "se": {"x": 1059.0, "y": 967.0}, "sw": {"x": 1069.0, "y": 957.0}, "nw": {"x": 1069.0, "y": 967.0}}, "position": {"x": 1064.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115073, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 957.0}, "se": {"x": 1073.0, "y": 967.0}, "sw": {"x": 1083.0, "y": 957.0}, "nw": {"x": 1083.0, "y": 967.0}}, "position": {"x": 1078.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115074, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 957.0}, "se": {"x": 1087.0, "y": 967.0}, "sw": {"x": 1097.0, "y": 957.0}, "nw": {"x": 1097.0, "y": 967.0}}, "position": {"x": 1092.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115075, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 957.0}, "se": {"x": 1101.0, "y": 967.0}, "sw": {"x": 1111.0, "y": 957.0}, "nw": {"x": 1111.0, "y": 967.0}}, "position": {"x": 1106.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115076, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 957.0}, "se": {"x": 1115.0, "y": 967.0}, "sw": {"x": 1125.0, "y": 957.0}, "nw": {"x": 1125.0, "y": 967.0}}, "position": {"x": 1120.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115077, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 957.0}, "se": {"x": 1129.0, "y": 967.0}, "sw": {"x": 1139.0, "y": 957.0}, "nw": {"x": 1139.0, "y": 967.0}}, "position": {"x": 1134.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115078, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 957.0}, "se": {"x": 1143.0, "y": 967.0}, "sw": {"x": 1153.0, "y": 957.0}, "nw": {"x": 1153.0, "y": 967.0}}, "position": {"x": 1148.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115079, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 957.0}, "se": {"x": 1157.0, "y": 967.0}, "sw": {"x": 1167.0, "y": 957.0}, "nw": {"x": 1167.0, "y": 967.0}}, "position": {"x": 1162.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115080, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 971.0}, "se": {"x": 1031.0, "y": 981.0}, "sw": {"x": 1041.0, "y": 971.0}, "nw": {"x": 1041.0, "y": 981.0}}, "position": {"x": 1036.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115081, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 971.0}, "se": {"x": 1045.0, "y": 981.0}, "sw": {"x": 1055.0, "y": 971.0}, "nw": {"x": 1055.0, "y": 981.0}}, "position": {"x": 1050.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115082, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 971.0}, "se": {"x": 1059.0, "y": 981.0}, "sw": {"x": 1069.0, "y": 971.0}, "nw": {"x": 1069.0, "y": 981.0}}, "position": {"x": 1064.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115083, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 971.0}, "se": {"x": 1073.0, "y": 981.0}, "sw": {"x": 1083.0, "y": 971.0}, "nw": {"x": 1083.0, "y": 981.0}}, "position": {"x": 1078.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115084, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 971.0}, "se": {"x": 1087.0, "y": 981.0}, "sw": {"x": 1097.0, "y": 971.0}, "nw": {"x": 1097.0, "y": 981.0}}, "position": {"x": 1092.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115085, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 971.0}, "se": {"x": 1101.0, "y": 981.0}, "sw": {"x": 1111.0, "y": 971.0}, "nw": {"x": 1111.0, "y": 981.0}}, "position": {"x": 1106.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115086, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 971.0}, "se": {"x": 1115.0, "y": 981.0}, "sw": {"x": 1125.0, "y": 971.0}, "nw": {"x": 1125.0, "y": 981.0}}, "position": {"x": 1120.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115087, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 971.0}, "se": {"x": 1129.0, "y": 981.0}, "sw": {"x": 1139.0, "y": 971.0}, "nw": {"x": 1139.0, "y": 981.0}}, "position": {"x": 1134.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115088, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 971.0}, "se": {"x": 1143.0, "y": 981.0}, "sw": {"x": 1153.0, "y": 971.0}, "nw": {"x": 1153.0, "y": 981.0}}, "position": {"x": 1148.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115089, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 971.0}, "se": {"x": 1157.0, "y": 981.0}, "sw": {"x": 1167.0, "y": 971.0}, "nw": {"x": 1167.0, "y": 981.0}}, "position": {"x": 1162.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115120, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 776.0}, "se": {"x": 1253.0, "y": 786.0}, "sw": {"x": 1263.0, "y": 776.0}, "nw": {"x": 1263.0, "y": 786.0}}, "position": {"x": 1258.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115121, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 776.0}, "se": {"x": 1267.0, "y": 786.0}, "sw": {"x": 1277.0, "y": 776.0}, "nw": {"x": 1277.0, "y": 786.0}}, "position": {"x": 1272.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115130, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 790.0}, "se": {"x": 1253.0, "y": 800.0}, "sw": {"x": 1263.0, "y": 790.0}, "nw": {"x": 1263.0, "y": 800.0}}, "position": {"x": 1258.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115131, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 790.0}, "se": {"x": 1267.0, "y": 800.0}, "sw": {"x": 1277.0, "y": 790.0}, "nw": {"x": 1277.0, "y": 800.0}}, "position": {"x": 1272.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115140, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 804.0}, "se": {"x": 1253.0, "y": 814.0}, "sw": {"x": 1263.0, "y": 804.0}, "nw": {"x": 1263.0, "y": 814.0}}, "position": {"x": 1258.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115141, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 804.0}, "se": {"x": 1267.0, "y": 814.0}, "sw": {"x": 1277.0, "y": 804.0}, "nw": {"x": 1277.0, "y": 814.0}}, "position": {"x": 1272.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115150, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 818.0}, "se": {"x": 1253.0, "y": 828.0}, "sw": {"x": 1263.0, "y": 818.0}, "nw": {"x": 1263.0, "y": 828.0}}, "position": {"x": 1258.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115151, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 818.0}, "se": {"x": 1267.0, "y": 828.0}, "sw": {"x": 1277.0, "y": 818.0}, "nw": {"x": 1277.0, "y": 828.0}}, "position": {"x": 1272.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115160, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 832.0}, "se": {"x": 1253.0, "y": 842.0}, "sw": {"x": 1263.0, "y": 832.0}, "nw": {"x": 1263.0, "y": 842.0}}, "position": {"x": 1258.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115161, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 832.0}, "se": {"x": 1267.0, "y": 842.0}, "sw": {"x": 1277.0, "y": 832.0}, "nw": {"x": 1277.0, "y": 842.0}}, "position": {"x": 1272.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115170, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 873.0}, "se": {"x": 1253.0, "y": 883.0}, "sw": {"x": 1263.0, "y": 873.0}, "nw": {"x": 1263.0, "y": 883.0}}, "position": {"x": 1258.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115171, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 873.0}, "se": {"x": 1267.0, "y": 883.0}, "sw": {"x": 1277.0, "y": 873.0}, "nw": {"x": 1277.0, "y": 883.0}}, "position": {"x": 1272.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115180, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 887.0}, "se": {"x": 1253.0, "y": 897.0}, "sw": {"x": 1263.0, "y": 887.0}, "nw": {"x": 1263.0, "y": 897.0}}, "position": {"x": 1258.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115181, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 887.0}, "se": {"x": 1267.0, "y": 897.0}, "sw": {"x": 1277.0, "y": 887.0}, "nw": {"x": 1277.0, "y": 897.0}}, "position": {"x": 1272.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115190, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 901.0}, "se": {"x": 1253.0, "y": 911.0}, "sw": {"x": 1263.0, "y": 901.0}, "nw": {"x": 1263.0, "y": 911.0}}, "position": {"x": 1258.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115191, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 901.0}, "se": {"x": 1267.0, "y": 911.0}, "sw": {"x": 1277.0, "y": 901.0}, "nw": {"x": 1277.0, "y": 911.0}}, "position": {"x": 1272.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115200, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 915.0}, "se": {"x": 1253.0, "y": 925.0}, "sw": {"x": 1263.0, "y": 915.0}, "nw": {"x": 1263.0, "y": 925.0}}, "position": {"x": 1258.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115201, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 915.0}, "se": {"x": 1267.0, "y": 925.0}, "sw": {"x": 1277.0, "y": 915.0}, "nw": {"x": 1277.0, "y": 925.0}}, "position": {"x": 1272.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115210, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 929.0}, "se": {"x": 1253.0, "y": 939.0}, "sw": {"x": 1263.0, "y": 929.0}, "nw": {"x": 1263.0, "y": 939.0}}, "position": {"x": 1258.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115211, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 929.0}, "se": {"x": 1267.0, "y": 939.0}, "sw": {"x": 1277.0, "y": 929.0}, "nw": {"x": 1277.0, "y": 939.0}}, "position": {"x": 1272.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115220, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 943.0}, "se": {"x": 1253.0, "y": 953.0}, "sw": {"x": 1263.0, "y": 943.0}, "nw": {"x": 1263.0, "y": 953.0}}, "position": {"x": 1258.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115221, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 943.0}, "se": {"x": 1267.0, "y": 953.0}, "sw": {"x": 1277.0, "y": 943.0}, "nw": {"x": 1277.0, "y": 953.0}}, "position": {"x": 1272.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115230, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 957.0}, "se": {"x": 1253.0, "y": 967.0}, "sw": {"x": 1263.0, "y": 957.0}, "nw": {"x": 1263.0, "y": 967.0}}, "position": {"x": 1258.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115231, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 957.0}, "se": {"x": 1267.0, "y": 967.0}, "sw": {"x": 1277.0, "y": 957.0}, "nw": {"x": 1277.0, "y": 967.0}}, "position": {"x": 1272.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115240, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 971.0}, "se": {"x": 1253.0, "y": 981.0}, "sw": {"x": 1263.0, "y": 971.0}, "nw": {"x": 1263.0, "y": 981.0}}, "position": {"x": 1258.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115241, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 971.0}, "se": {"x": 1267.0, "y": 981.0}, "sw": {"x": 1277.0, "y": 971.0}, "nw": {"x": 1277.0, "y": 981.0}}, "position": {"x": 1272.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "3:5": [{"logicalSeatId": 1537115468, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1286.0}, "se": {"x": 812.0, "y": 1296.0}, "sw": {"x": 822.0, "y": 1286.0}, "nw": {"x": 822.0, "y": 1296.0}}, "position": {"x": 817.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115469, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1286.0}, "se": {"x": 826.0, "y": 1296.0}, "sw": {"x": 836.0, "y": 1286.0}, "nw": {"x": 836.0, "y": 1296.0}}, "position": {"x": 831.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115470, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1286.0}, "se": {"x": 840.0, "y": 1296.0}, "sw": {"x": 850.0, "y": 1286.0}, "nw": {"x": 850.0, "y": 1296.0}}, "position": {"x": 845.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115471, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1286.0}, "se": {"x": 854.0, "y": 1296.0}, "sw": {"x": 864.0, "y": 1286.0}, "nw": {"x": 864.0, "y": 1296.0}}, "position": {"x": 859.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115472, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1286.0}, "se": {"x": 868.0, "y": 1296.0}, "sw": {"x": 878.0, "y": 1286.0}, "nw": {"x": 878.0, "y": 1296.0}}, "position": {"x": 873.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115473, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1286.0}, "se": {"x": 882.0, "y": 1296.0}, "sw": {"x": 892.0, "y": 1286.0}, "nw": {"x": 892.0, "y": 1296.0}}, "position": {"x": 887.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115474, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1286.0}, "se": {"x": 896.0, "y": 1296.0}, "sw": {"x": 906.0, "y": 1286.0}, "nw": {"x": 906.0, "y": 1296.0}}, "position": {"x": 901.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115475, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1286.0}, "se": {"x": 910.0, "y": 1296.0}, "sw": {"x": 920.0, "y": 1286.0}, "nw": {"x": 920.0, "y": 1296.0}}, "position": {"x": 915.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115476, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1286.0}, "se": {"x": 924.0, "y": 1296.0}, "sw": {"x": 934.0, "y": 1286.0}, "nw": {"x": 934.0, "y": 1296.0}}, "position": {"x": 929.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115477, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1286.0}, "se": {"x": 938.0, "y": 1296.0}, "sw": {"x": 948.0, "y": 1286.0}, "nw": {"x": 948.0, "y": 1296.0}}, "position": {"x": 943.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "5:3": [{"logicalSeatId": 1537115122, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 776.0}, "se": {"x": 1281.0, "y": 786.0}, "sw": {"x": 1291.0, "y": 776.0}, "nw": {"x": 1291.0, "y": 786.0}}, "position": {"x": 1286.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115123, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 776.0}, "se": {"x": 1295.0, "y": 786.0}, "sw": {"x": 1305.0, "y": 776.0}, "nw": {"x": 1305.0, "y": 786.0}}, "position": {"x": 1300.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115124, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 776.0}, "se": {"x": 1309.0, "y": 786.0}, "sw": {"x": 1319.0, "y": 776.0}, "nw": {"x": 1319.0, "y": 786.0}}, "position": {"x": 1314.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115125, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 776.0}, "se": {"x": 1323.0, "y": 786.0}, "sw": {"x": 1333.0, "y": 776.0}, "nw": {"x": 1333.0, "y": 786.0}}, "position": {"x": 1328.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115126, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 776.0}, "se": {"x": 1337.0, "y": 786.0}, "sw": {"x": 1347.0, "y": 776.0}, "nw": {"x": 1347.0, "y": 786.0}}, "position": {"x": 1342.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115127, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 776.0}, "se": {"x": 1351.0, "y": 786.0}, "sw": {"x": 1361.0, "y": 776.0}, "nw": {"x": 1361.0, "y": 786.0}}, "position": {"x": 1356.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115128, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 776.0}, "se": {"x": 1365.0, "y": 786.0}, "sw": {"x": 1375.0, "y": 776.0}, "nw": {"x": 1375.0, "y": 786.0}}, "position": {"x": 1370.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115129, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 776.0}, "se": {"x": 1379.0, "y": 786.0}, "sw": {"x": 1389.0, "y": 776.0}, "nw": {"x": 1389.0, "y": 786.0}}, "position": {"x": 1384.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115132, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 790.0}, "se": {"x": 1281.0, "y": 800.0}, "sw": {"x": 1291.0, "y": 790.0}, "nw": {"x": 1291.0, "y": 800.0}}, "position": {"x": 1286.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115133, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 790.0}, "se": {"x": 1295.0, "y": 800.0}, "sw": {"x": 1305.0, "y": 790.0}, "nw": {"x": 1305.0, "y": 800.0}}, "position": {"x": 1300.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115134, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 790.0}, "se": {"x": 1309.0, "y": 800.0}, "sw": {"x": 1319.0, "y": 790.0}, "nw": {"x": 1319.0, "y": 800.0}}, "position": {"x": 1314.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115135, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 790.0}, "se": {"x": 1323.0, "y": 800.0}, "sw": {"x": 1333.0, "y": 790.0}, "nw": {"x": 1333.0, "y": 800.0}}, "position": {"x": 1328.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115136, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 790.0}, "se": {"x": 1337.0, "y": 800.0}, "sw": {"x": 1347.0, "y": 790.0}, "nw": {"x": 1347.0, "y": 800.0}}, "position": {"x": 1342.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115137, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 790.0}, "se": {"x": 1351.0, "y": 800.0}, "sw": {"x": 1361.0, "y": 790.0}, "nw": {"x": 1361.0, "y": 800.0}}, "position": {"x": 1356.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115138, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 790.0}, "se": {"x": 1365.0, "y": 800.0}, "sw": {"x": 1375.0, "y": 790.0}, "nw": {"x": 1375.0, "y": 800.0}}, "position": {"x": 1370.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115139, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 790.0}, "se": {"x": 1379.0, "y": 800.0}, "sw": {"x": 1389.0, "y": 790.0}, "nw": {"x": 1389.0, "y": 800.0}}, "position": {"x": 1384.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115142, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 804.0}, "se": {"x": 1281.0, "y": 814.0}, "sw": {"x": 1291.0, "y": 804.0}, "nw": {"x": 1291.0, "y": 814.0}}, "position": {"x": 1286.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115143, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 804.0}, "se": {"x": 1295.0, "y": 814.0}, "sw": {"x": 1305.0, "y": 804.0}, "nw": {"x": 1305.0, "y": 814.0}}, "position": {"x": 1300.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115144, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 804.0}, "se": {"x": 1309.0, "y": 814.0}, "sw": {"x": 1319.0, "y": 804.0}, "nw": {"x": 1319.0, "y": 814.0}}, "position": {"x": 1314.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115145, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 804.0}, "se": {"x": 1323.0, "y": 814.0}, "sw": {"x": 1333.0, "y": 804.0}, "nw": {"x": 1333.0, "y": 814.0}}, "position": {"x": 1328.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115146, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 804.0}, "se": {"x": 1337.0, "y": 814.0}, "sw": {"x": 1347.0, "y": 804.0}, "nw": {"x": 1347.0, "y": 814.0}}, "position": {"x": 1342.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115147, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 804.0}, "se": {"x": 1351.0, "y": 814.0}, "sw": {"x": 1361.0, "y": 804.0}, "nw": {"x": 1361.0, "y": 814.0}}, "position": {"x": 1356.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115148, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 804.0}, "se": {"x": 1365.0, "y": 814.0}, "sw": {"x": 1375.0, "y": 804.0}, "nw": {"x": 1375.0, "y": 814.0}}, "position": {"x": 1370.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115149, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 804.0}, "se": {"x": 1379.0, "y": 814.0}, "sw": {"x": 1389.0, "y": 804.0}, "nw": {"x": 1389.0, "y": 814.0}}, "position": {"x": 1384.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115152, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 818.0}, "se": {"x": 1281.0, "y": 828.0}, "sw": {"x": 1291.0, "y": 818.0}, "nw": {"x": 1291.0, "y": 828.0}}, "position": {"x": 1286.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115153, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 818.0}, "se": {"x": 1295.0, "y": 828.0}, "sw": {"x": 1305.0, "y": 818.0}, "nw": {"x": 1305.0, "y": 828.0}}, "position": {"x": 1300.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115154, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 818.0}, "se": {"x": 1309.0, "y": 828.0}, "sw": {"x": 1319.0, "y": 818.0}, "nw": {"x": 1319.0, "y": 828.0}}, "position": {"x": 1314.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115155, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 818.0}, "se": {"x": 1323.0, "y": 828.0}, "sw": {"x": 1333.0, "y": 818.0}, "nw": {"x": 1333.0, "y": 828.0}}, "position": {"x": 1328.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115156, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 818.0}, "se": {"x": 1337.0, "y": 828.0}, "sw": {"x": 1347.0, "y": 818.0}, "nw": {"x": 1347.0, "y": 828.0}}, "position": {"x": 1342.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115157, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 818.0}, "se": {"x": 1351.0, "y": 828.0}, "sw": {"x": 1361.0, "y": 818.0}, "nw": {"x": 1361.0, "y": 828.0}}, "position": {"x": 1356.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115158, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 818.0}, "se": {"x": 1365.0, "y": 828.0}, "sw": {"x": 1375.0, "y": 818.0}, "nw": {"x": 1375.0, "y": 828.0}}, "position": {"x": 1370.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115159, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 818.0}, "se": {"x": 1379.0, "y": 828.0}, "sw": {"x": 1389.0, "y": 818.0}, "nw": {"x": 1389.0, "y": 828.0}}, "position": {"x": 1384.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115162, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 832.0}, "se": {"x": 1281.0, "y": 842.0}, "sw": {"x": 1291.0, "y": 832.0}, "nw": {"x": 1291.0, "y": 842.0}}, "position": {"x": 1286.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115163, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 832.0}, "se": {"x": 1295.0, "y": 842.0}, "sw": {"x": 1305.0, "y": 832.0}, "nw": {"x": 1305.0, "y": 842.0}}, "position": {"x": 1300.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115164, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 832.0}, "se": {"x": 1309.0, "y": 842.0}, "sw": {"x": 1319.0, "y": 832.0}, "nw": {"x": 1319.0, "y": 842.0}}, "position": {"x": 1314.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115165, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 832.0}, "se": {"x": 1323.0, "y": 842.0}, "sw": {"x": 1333.0, "y": 832.0}, "nw": {"x": 1333.0, "y": 842.0}}, "position": {"x": 1328.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115166, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 832.0}, "se": {"x": 1337.0, "y": 842.0}, "sw": {"x": 1347.0, "y": 832.0}, "nw": {"x": 1347.0, "y": 842.0}}, "position": {"x": 1342.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115167, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 832.0}, "se": {"x": 1351.0, "y": 842.0}, "sw": {"x": 1361.0, "y": 832.0}, "nw": {"x": 1361.0, "y": 842.0}}, "position": {"x": 1356.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115168, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 832.0}, "se": {"x": 1365.0, "y": 842.0}, "sw": {"x": 1375.0, "y": 832.0}, "nw": {"x": 1375.0, "y": 842.0}}, "position": {"x": 1370.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115169, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 832.0}, "se": {"x": 1379.0, "y": 842.0}, "sw": {"x": 1389.0, "y": 832.0}, "nw": {"x": 1389.0, "y": 842.0}}, "position": {"x": 1384.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115172, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 873.0}, "se": {"x": 1281.0, "y": 883.0}, "sw": {"x": 1291.0, "y": 873.0}, "nw": {"x": 1291.0, "y": 883.0}}, "position": {"x": 1286.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115173, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 873.0}, "se": {"x": 1295.0, "y": 883.0}, "sw": {"x": 1305.0, "y": 873.0}, "nw": {"x": 1305.0, "y": 883.0}}, "position": {"x": 1300.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115174, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 873.0}, "se": {"x": 1309.0, "y": 883.0}, "sw": {"x": 1319.0, "y": 873.0}, "nw": {"x": 1319.0, "y": 883.0}}, "position": {"x": 1314.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115175, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 873.0}, "se": {"x": 1323.0, "y": 883.0}, "sw": {"x": 1333.0, "y": 873.0}, "nw": {"x": 1333.0, "y": 883.0}}, "position": {"x": 1328.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115176, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 873.0}, "se": {"x": 1337.0, "y": 883.0}, "sw": {"x": 1347.0, "y": 873.0}, "nw": {"x": 1347.0, "y": 883.0}}, "position": {"x": 1342.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115177, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 873.0}, "se": {"x": 1351.0, "y": 883.0}, "sw": {"x": 1361.0, "y": 873.0}, "nw": {"x": 1361.0, "y": 883.0}}, "position": {"x": 1356.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115178, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 873.0}, "se": {"x": 1365.0, "y": 883.0}, "sw": {"x": 1375.0, "y": 873.0}, "nw": {"x": 1375.0, "y": 883.0}}, "position": {"x": 1370.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115179, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 873.0}, "se": {"x": 1379.0, "y": 883.0}, "sw": {"x": 1389.0, "y": 873.0}, "nw": {"x": 1389.0, "y": 883.0}}, "position": {"x": 1384.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115182, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 887.0}, "se": {"x": 1281.0, "y": 897.0}, "sw": {"x": 1291.0, "y": 887.0}, "nw": {"x": 1291.0, "y": 897.0}}, "position": {"x": 1286.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115183, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 887.0}, "se": {"x": 1295.0, "y": 897.0}, "sw": {"x": 1305.0, "y": 887.0}, "nw": {"x": 1305.0, "y": 897.0}}, "position": {"x": 1300.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115184, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 887.0}, "se": {"x": 1309.0, "y": 897.0}, "sw": {"x": 1319.0, "y": 887.0}, "nw": {"x": 1319.0, "y": 897.0}}, "position": {"x": 1314.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115185, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 887.0}, "se": {"x": 1323.0, "y": 897.0}, "sw": {"x": 1333.0, "y": 887.0}, "nw": {"x": 1333.0, "y": 897.0}}, "position": {"x": 1328.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115192, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 901.0}, "se": {"x": 1281.0, "y": 911.0}, "sw": {"x": 1291.0, "y": 901.0}, "nw": {"x": 1291.0, "y": 911.0}}, "position": {"x": 1286.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115193, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 901.0}, "se": {"x": 1295.0, "y": 911.0}, "sw": {"x": 1305.0, "y": 901.0}, "nw": {"x": 1305.0, "y": 911.0}}, "position": {"x": 1300.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115194, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 901.0}, "se": {"x": 1309.0, "y": 911.0}, "sw": {"x": 1319.0, "y": 901.0}, "nw": {"x": 1319.0, "y": 911.0}}, "position": {"x": 1314.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115195, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 901.0}, "se": {"x": 1323.0, "y": 911.0}, "sw": {"x": 1333.0, "y": 901.0}, "nw": {"x": 1333.0, "y": 911.0}}, "position": {"x": 1328.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115196, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 901.0}, "se": {"x": 1337.0, "y": 911.0}, "sw": {"x": 1347.0, "y": 901.0}, "nw": {"x": 1347.0, "y": 911.0}}, "position": {"x": 1342.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115197, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 901.0}, "se": {"x": 1351.0, "y": 911.0}, "sw": {"x": 1361.0, "y": 901.0}, "nw": {"x": 1361.0, "y": 911.0}}, "position": {"x": 1356.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115198, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 901.0}, "se": {"x": 1365.0, "y": 911.0}, "sw": {"x": 1375.0, "y": 901.0}, "nw": {"x": 1375.0, "y": 911.0}}, "position": {"x": 1370.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115199, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 901.0}, "se": {"x": 1379.0, "y": 911.0}, "sw": {"x": 1389.0, "y": 901.0}, "nw": {"x": 1389.0, "y": 911.0}}, "position": {"x": 1384.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115202, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 915.0}, "se": {"x": 1281.0, "y": 925.0}, "sw": {"x": 1291.0, "y": 915.0}, "nw": {"x": 1291.0, "y": 925.0}}, "position": {"x": 1286.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115203, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 915.0}, "se": {"x": 1295.0, "y": 925.0}, "sw": {"x": 1305.0, "y": 915.0}, "nw": {"x": 1305.0, "y": 925.0}}, "position": {"x": 1300.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115204, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 915.0}, "se": {"x": 1309.0, "y": 925.0}, "sw": {"x": 1319.0, "y": 915.0}, "nw": {"x": 1319.0, "y": 925.0}}, "position": {"x": 1314.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115205, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 915.0}, "se": {"x": 1323.0, "y": 925.0}, "sw": {"x": 1333.0, "y": 915.0}, "nw": {"x": 1333.0, "y": 925.0}}, "position": {"x": 1328.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115206, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 915.0}, "se": {"x": 1337.0, "y": 925.0}, "sw": {"x": 1347.0, "y": 915.0}, "nw": {"x": 1347.0, "y": 925.0}}, "position": {"x": 1342.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115207, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 915.0}, "se": {"x": 1351.0, "y": 925.0}, "sw": {"x": 1361.0, "y": 915.0}, "nw": {"x": 1361.0, "y": 925.0}}, "position": {"x": 1356.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115208, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 915.0}, "se": {"x": 1365.0, "y": 925.0}, "sw": {"x": 1375.0, "y": 915.0}, "nw": {"x": 1375.0, "y": 925.0}}, "position": {"x": 1370.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115209, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 915.0}, "se": {"x": 1379.0, "y": 925.0}, "sw": {"x": 1389.0, "y": 915.0}, "nw": {"x": 1389.0, "y": 925.0}}, "position": {"x": 1384.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115212, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 929.0}, "se": {"x": 1281.0, "y": 939.0}, "sw": {"x": 1291.0, "y": 929.0}, "nw": {"x": 1291.0, "y": 939.0}}, "position": {"x": 1286.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115213, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 929.0}, "se": {"x": 1295.0, "y": 939.0}, "sw": {"x": 1305.0, "y": 929.0}, "nw": {"x": 1305.0, "y": 939.0}}, "position": {"x": 1300.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115214, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 929.0}, "se": {"x": 1309.0, "y": 939.0}, "sw": {"x": 1319.0, "y": 929.0}, "nw": {"x": 1319.0, "y": 939.0}}, "position": {"x": 1314.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115215, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 929.0}, "se": {"x": 1323.0, "y": 939.0}, "sw": {"x": 1333.0, "y": 929.0}, "nw": {"x": 1333.0, "y": 939.0}}, "position": {"x": 1328.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115216, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 929.0}, "se": {"x": 1337.0, "y": 939.0}, "sw": {"x": 1347.0, "y": 929.0}, "nw": {"x": 1347.0, "y": 939.0}}, "position": {"x": 1342.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115217, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 929.0}, "se": {"x": 1351.0, "y": 939.0}, "sw": {"x": 1361.0, "y": 929.0}, "nw": {"x": 1361.0, "y": 939.0}}, "position": {"x": 1356.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115218, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 929.0}, "se": {"x": 1365.0, "y": 939.0}, "sw": {"x": 1375.0, "y": 929.0}, "nw": {"x": 1375.0, "y": 939.0}}, "position": {"x": 1370.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115219, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 929.0}, "se": {"x": 1379.0, "y": 939.0}, "sw": {"x": 1389.0, "y": 929.0}, "nw": {"x": 1389.0, "y": 939.0}}, "position": {"x": 1384.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115222, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 943.0}, "se": {"x": 1281.0, "y": 953.0}, "sw": {"x": 1291.0, "y": 943.0}, "nw": {"x": 1291.0, "y": 953.0}}, "position": {"x": 1286.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115223, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 943.0}, "se": {"x": 1295.0, "y": 953.0}, "sw": {"x": 1305.0, "y": 943.0}, "nw": {"x": 1305.0, "y": 953.0}}, "position": {"x": 1300.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115224, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 943.0}, "se": {"x": 1309.0, "y": 953.0}, "sw": {"x": 1319.0, "y": 943.0}, "nw": {"x": 1319.0, "y": 953.0}}, "position": {"x": 1314.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115225, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 943.0}, "se": {"x": 1323.0, "y": 953.0}, "sw": {"x": 1333.0, "y": 943.0}, "nw": {"x": 1333.0, "y": 953.0}}, "position": {"x": 1328.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115226, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 943.0}, "se": {"x": 1337.0, "y": 953.0}, "sw": {"x": 1347.0, "y": 943.0}, "nw": {"x": 1347.0, "y": 953.0}}, "position": {"x": 1342.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115227, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 943.0}, "se": {"x": 1351.0, "y": 953.0}, "sw": {"x": 1361.0, "y": 943.0}, "nw": {"x": 1361.0, "y": 953.0}}, "position": {"x": 1356.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115228, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 943.0}, "se": {"x": 1365.0, "y": 953.0}, "sw": {"x": 1375.0, "y": 943.0}, "nw": {"x": 1375.0, "y": 953.0}}, "position": {"x": 1370.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115229, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 943.0}, "se": {"x": 1379.0, "y": 953.0}, "sw": {"x": 1389.0, "y": 943.0}, "nw": {"x": 1389.0, "y": 953.0}}, "position": {"x": 1384.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115232, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 957.0}, "se": {"x": 1281.0, "y": 967.0}, "sw": {"x": 1291.0, "y": 957.0}, "nw": {"x": 1291.0, "y": 967.0}}, "position": {"x": 1286.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115233, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 957.0}, "se": {"x": 1295.0, "y": 967.0}, "sw": {"x": 1305.0, "y": 957.0}, "nw": {"x": 1305.0, "y": 967.0}}, "position": {"x": 1300.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115234, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 957.0}, "se": {"x": 1309.0, "y": 967.0}, "sw": {"x": 1319.0, "y": 957.0}, "nw": {"x": 1319.0, "y": 967.0}}, "position": {"x": 1314.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115235, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 957.0}, "se": {"x": 1323.0, "y": 967.0}, "sw": {"x": 1333.0, "y": 957.0}, "nw": {"x": 1333.0, "y": 967.0}}, "position": {"x": 1328.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115236, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 957.0}, "se": {"x": 1337.0, "y": 967.0}, "sw": {"x": 1347.0, "y": 957.0}, "nw": {"x": 1347.0, "y": 967.0}}, "position": {"x": 1342.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115237, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 957.0}, "se": {"x": 1351.0, "y": 967.0}, "sw": {"x": 1361.0, "y": 957.0}, "nw": {"x": 1361.0, "y": 967.0}}, "position": {"x": 1356.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115238, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 957.0}, "se": {"x": 1365.0, "y": 967.0}, "sw": {"x": 1375.0, "y": 957.0}, "nw": {"x": 1375.0, "y": 967.0}}, "position": {"x": 1370.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115239, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 957.0}, "se": {"x": 1379.0, "y": 967.0}, "sw": {"x": 1389.0, "y": 957.0}, "nw": {"x": 1389.0, "y": 967.0}}, "position": {"x": 1384.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115242, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 971.0}, "se": {"x": 1281.0, "y": 981.0}, "sw": {"x": 1291.0, "y": 971.0}, "nw": {"x": 1291.0, "y": 981.0}}, "position": {"x": 1286.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115243, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 971.0}, "se": {"x": 1295.0, "y": 981.0}, "sw": {"x": 1305.0, "y": 971.0}, "nw": {"x": 1305.0, "y": 981.0}}, "position": {"x": 1300.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115244, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 971.0}, "se": {"x": 1309.0, "y": 981.0}, "sw": {"x": 1319.0, "y": 971.0}, "nw": {"x": 1319.0, "y": 981.0}}, "position": {"x": 1314.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115245, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 971.0}, "se": {"x": 1323.0, "y": 981.0}, "sw": {"x": 1333.0, "y": 971.0}, "nw": {"x": 1333.0, "y": 981.0}}, "position": {"x": 1328.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115246, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 971.0}, "se": {"x": 1337.0, "y": 981.0}, "sw": {"x": 1347.0, "y": 971.0}, "nw": {"x": 1347.0, "y": 981.0}}, "position": {"x": 1342.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115247, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 971.0}, "se": {"x": 1351.0, "y": 981.0}, "sw": {"x": 1361.0, "y": 971.0}, "nw": {"x": 1361.0, "y": 981.0}}, "position": {"x": 1356.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115248, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 971.0}, "se": {"x": 1365.0, "y": 981.0}, "sw": {"x": 1375.0, "y": 971.0}, "nw": {"x": 1375.0, "y": 981.0}}, "position": {"x": 1370.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115268, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 776.0}, "se": {"x": 1465.0, "y": 786.0}, "sw": {"x": 1475.0, "y": 776.0}, "nw": {"x": 1475.0, "y": 786.0}}, "position": {"x": 1470.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115269, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 776.0}, "se": {"x": 1479.0, "y": 786.0}, "sw": {"x": 1489.0, "y": 776.0}, "nw": {"x": 1489.0, "y": 786.0}}, "position": {"x": 1484.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115270, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 776.0}, "se": {"x": 1493.0, "y": 786.0}, "sw": {"x": 1503.0, "y": 776.0}, "nw": {"x": 1503.0, "y": 786.0}}, "position": {"x": 1498.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115271, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 776.0}, "se": {"x": 1507.0, "y": 786.0}, "sw": {"x": 1517.0, "y": 776.0}, "nw": {"x": 1517.0, "y": 786.0}}, "position": {"x": 1512.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115272, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 776.0}, "se": {"x": 1521.0, "y": 786.0}, "sw": {"x": 1531.0, "y": 776.0}, "nw": {"x": 1531.0, "y": 786.0}}, "position": {"x": 1526.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115278, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 790.0}, "se": {"x": 1465.0, "y": 800.0}, "sw": {"x": 1475.0, "y": 790.0}, "nw": {"x": 1475.0, "y": 800.0}}, "position": {"x": 1470.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115279, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 790.0}, "se": {"x": 1479.0, "y": 800.0}, "sw": {"x": 1489.0, "y": 790.0}, "nw": {"x": 1489.0, "y": 800.0}}, "position": {"x": 1484.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115280, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 790.0}, "se": {"x": 1493.0, "y": 800.0}, "sw": {"x": 1503.0, "y": 790.0}, "nw": {"x": 1503.0, "y": 800.0}}, "position": {"x": 1498.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115281, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 790.0}, "se": {"x": 1507.0, "y": 800.0}, "sw": {"x": 1517.0, "y": 790.0}, "nw": {"x": 1517.0, "y": 800.0}}, "position": {"x": 1512.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115282, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 790.0}, "se": {"x": 1521.0, "y": 800.0}, "sw": {"x": 1531.0, "y": 790.0}, "nw": {"x": 1531.0, "y": 800.0}}, "position": {"x": 1526.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115288, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 804.0}, "se": {"x": 1465.0, "y": 814.0}, "sw": {"x": 1475.0, "y": 804.0}, "nw": {"x": 1475.0, "y": 814.0}}, "position": {"x": 1470.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115289, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 804.0}, "se": {"x": 1479.0, "y": 814.0}, "sw": {"x": 1489.0, "y": 804.0}, "nw": {"x": 1489.0, "y": 814.0}}, "position": {"x": 1484.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115290, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 804.0}, "se": {"x": 1493.0, "y": 814.0}, "sw": {"x": 1503.0, "y": 804.0}, "nw": {"x": 1503.0, "y": 814.0}}, "position": {"x": 1498.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115291, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 804.0}, "se": {"x": 1507.0, "y": 814.0}, "sw": {"x": 1517.0, "y": 804.0}, "nw": {"x": 1517.0, "y": 814.0}}, "position": {"x": 1512.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115292, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 804.0}, "se": {"x": 1521.0, "y": 814.0}, "sw": {"x": 1531.0, "y": 804.0}, "nw": {"x": 1531.0, "y": 814.0}}, "position": {"x": 1526.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115298, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 818.0}, "se": {"x": 1465.0, "y": 828.0}, "sw": {"x": 1475.0, "y": 818.0}, "nw": {"x": 1475.0, "y": 828.0}}, "position": {"x": 1470.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115299, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 818.0}, "se": {"x": 1479.0, "y": 828.0}, "sw": {"x": 1489.0, "y": 818.0}, "nw": {"x": 1489.0, "y": 828.0}}, "position": {"x": 1484.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115300, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 818.0}, "se": {"x": 1493.0, "y": 828.0}, "sw": {"x": 1503.0, "y": 818.0}, "nw": {"x": 1503.0, "y": 828.0}}, "position": {"x": 1498.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115301, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 818.0}, "se": {"x": 1507.0, "y": 828.0}, "sw": {"x": 1517.0, "y": 818.0}, "nw": {"x": 1517.0, "y": 828.0}}, "position": {"x": 1512.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115302, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 818.0}, "se": {"x": 1521.0, "y": 828.0}, "sw": {"x": 1531.0, "y": 818.0}, "nw": {"x": 1531.0, "y": 828.0}}, "position": {"x": 1526.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115308, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 832.0}, "se": {"x": 1465.0, "y": 842.0}, "sw": {"x": 1475.0, "y": 832.0}, "nw": {"x": 1475.0, "y": 842.0}}, "position": {"x": 1470.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115309, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 832.0}, "se": {"x": 1479.0, "y": 842.0}, "sw": {"x": 1489.0, "y": 832.0}, "nw": {"x": 1489.0, "y": 842.0}}, "position": {"x": 1484.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115310, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 832.0}, "se": {"x": 1493.0, "y": 842.0}, "sw": {"x": 1503.0, "y": 832.0}, "nw": {"x": 1503.0, "y": 842.0}}, "position": {"x": 1498.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115311, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 832.0}, "se": {"x": 1507.0, "y": 842.0}, "sw": {"x": 1517.0, "y": 832.0}, "nw": {"x": 1517.0, "y": 842.0}}, "position": {"x": 1512.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115312, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 832.0}, "se": {"x": 1521.0, "y": 842.0}, "sw": {"x": 1531.0, "y": 832.0}, "nw": {"x": 1531.0, "y": 842.0}}, "position": {"x": 1526.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115318, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 873.0}, "se": {"x": 1465.0, "y": 883.0}, "sw": {"x": 1475.0, "y": 873.0}, "nw": {"x": 1475.0, "y": 883.0}}, "position": {"x": 1470.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115319, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 873.0}, "se": {"x": 1479.0, "y": 883.0}, "sw": {"x": 1489.0, "y": 873.0}, "nw": {"x": 1489.0, "y": 883.0}}, "position": {"x": 1484.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115320, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 873.0}, "se": {"x": 1493.0, "y": 883.0}, "sw": {"x": 1503.0, "y": 873.0}, "nw": {"x": 1503.0, "y": 883.0}}, "position": {"x": 1498.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115321, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 873.0}, "se": {"x": 1507.0, "y": 883.0}, "sw": {"x": 1517.0, "y": 873.0}, "nw": {"x": 1517.0, "y": 883.0}}, "position": {"x": 1512.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115322, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 873.0}, "se": {"x": 1521.0, "y": 883.0}, "sw": {"x": 1531.0, "y": 873.0}, "nw": {"x": 1531.0, "y": 883.0}}, "position": {"x": 1526.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115328, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 887.0}, "se": {"x": 1465.0, "y": 897.0}, "sw": {"x": 1475.0, "y": 887.0}, "nw": {"x": 1475.0, "y": 897.0}}, "position": {"x": 1470.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115329, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 887.0}, "se": {"x": 1479.0, "y": 897.0}, "sw": {"x": 1489.0, "y": 887.0}, "nw": {"x": 1489.0, "y": 897.0}}, "position": {"x": 1484.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115330, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 887.0}, "se": {"x": 1493.0, "y": 897.0}, "sw": {"x": 1503.0, "y": 887.0}, "nw": {"x": 1503.0, "y": 897.0}}, "position": {"x": 1498.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115331, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 887.0}, "se": {"x": 1507.0, "y": 897.0}, "sw": {"x": 1517.0, "y": 887.0}, "nw": {"x": 1517.0, "y": 897.0}}, "position": {"x": 1512.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115332, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 887.0}, "se": {"x": 1521.0, "y": 897.0}, "sw": {"x": 1531.0, "y": 887.0}, "nw": {"x": 1531.0, "y": 897.0}}, "position": {"x": 1526.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115338, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 901.0}, "se": {"x": 1465.0, "y": 911.0}, "sw": {"x": 1475.0, "y": 901.0}, "nw": {"x": 1475.0, "y": 911.0}}, "position": {"x": 1470.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115339, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 901.0}, "se": {"x": 1479.0, "y": 911.0}, "sw": {"x": 1489.0, "y": 901.0}, "nw": {"x": 1489.0, "y": 911.0}}, "position": {"x": 1484.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115340, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 901.0}, "se": {"x": 1493.0, "y": 911.0}, "sw": {"x": 1503.0, "y": 901.0}, "nw": {"x": 1503.0, "y": 911.0}}, "position": {"x": 1498.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115341, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 901.0}, "se": {"x": 1507.0, "y": 911.0}, "sw": {"x": 1517.0, "y": 901.0}, "nw": {"x": 1517.0, "y": 911.0}}, "position": {"x": 1512.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115342, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 901.0}, "se": {"x": 1521.0, "y": 911.0}, "sw": {"x": 1531.0, "y": 901.0}, "nw": {"x": 1531.0, "y": 911.0}}, "position": {"x": 1526.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115348, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 915.0}, "se": {"x": 1465.0, "y": 925.0}, "sw": {"x": 1475.0, "y": 915.0}, "nw": {"x": 1475.0, "y": 925.0}}, "position": {"x": 1470.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115349, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 915.0}, "se": {"x": 1479.0, "y": 925.0}, "sw": {"x": 1489.0, "y": 915.0}, "nw": {"x": 1489.0, "y": 925.0}}, "position": {"x": 1484.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115350, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 915.0}, "se": {"x": 1493.0, "y": 925.0}, "sw": {"x": 1503.0, "y": 915.0}, "nw": {"x": 1503.0, "y": 925.0}}, "position": {"x": 1498.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115351, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 915.0}, "se": {"x": 1507.0, "y": 925.0}, "sw": {"x": 1517.0, "y": 915.0}, "nw": {"x": 1517.0, "y": 925.0}}, "position": {"x": 1512.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115352, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 915.0}, "se": {"x": 1521.0, "y": 925.0}, "sw": {"x": 1531.0, "y": 915.0}, "nw": {"x": 1531.0, "y": 925.0}}, "position": {"x": 1526.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115358, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 929.0}, "se": {"x": 1465.0, "y": 939.0}, "sw": {"x": 1475.0, "y": 929.0}, "nw": {"x": 1475.0, "y": 939.0}}, "position": {"x": 1470.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115359, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 929.0}, "se": {"x": 1479.0, "y": 939.0}, "sw": {"x": 1489.0, "y": 929.0}, "nw": {"x": 1489.0, "y": 939.0}}, "position": {"x": 1484.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115360, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 929.0}, "se": {"x": 1493.0, "y": 939.0}, "sw": {"x": 1503.0, "y": 929.0}, "nw": {"x": 1503.0, "y": 939.0}}, "position": {"x": 1498.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115361, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 929.0}, "se": {"x": 1507.0, "y": 939.0}, "sw": {"x": 1517.0, "y": 929.0}, "nw": {"x": 1517.0, "y": 939.0}}, "position": {"x": 1512.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115362, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 929.0}, "se": {"x": 1521.0, "y": 939.0}, "sw": {"x": 1531.0, "y": 929.0}, "nw": {"x": 1531.0, "y": 939.0}}, "position": {"x": 1526.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115368, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 943.0}, "se": {"x": 1465.0, "y": 953.0}, "sw": {"x": 1475.0, "y": 943.0}, "nw": {"x": 1475.0, "y": 953.0}}, "position": {"x": 1470.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115369, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 943.0}, "se": {"x": 1479.0, "y": 953.0}, "sw": {"x": 1489.0, "y": 943.0}, "nw": {"x": 1489.0, "y": 953.0}}, "position": {"x": 1484.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115370, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 943.0}, "se": {"x": 1493.0, "y": 953.0}, "sw": {"x": 1503.0, "y": 943.0}, "nw": {"x": 1503.0, "y": 953.0}}, "position": {"x": 1498.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115371, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 943.0}, "se": {"x": 1507.0, "y": 953.0}, "sw": {"x": 1517.0, "y": 943.0}, "nw": {"x": 1517.0, "y": 953.0}}, "position": {"x": 1512.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115372, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 943.0}, "se": {"x": 1521.0, "y": 953.0}, "sw": {"x": 1531.0, "y": 943.0}, "nw": {"x": 1531.0, "y": 953.0}}, "position": {"x": 1526.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115378, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 957.0}, "se": {"x": 1465.0, "y": 967.0}, "sw": {"x": 1475.0, "y": 957.0}, "nw": {"x": 1475.0, "y": 967.0}}, "position": {"x": 1470.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115379, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 957.0}, "se": {"x": 1479.0, "y": 967.0}, "sw": {"x": 1489.0, "y": 957.0}, "nw": {"x": 1489.0, "y": 967.0}}, "position": {"x": 1484.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115380, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 957.0}, "se": {"x": 1493.0, "y": 967.0}, "sw": {"x": 1503.0, "y": 957.0}, "nw": {"x": 1503.0, "y": 967.0}}, "position": {"x": 1498.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115381, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 957.0}, "se": {"x": 1507.0, "y": 967.0}, "sw": {"x": 1517.0, "y": 957.0}, "nw": {"x": 1517.0, "y": 967.0}}, "position": {"x": 1512.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115382, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 957.0}, "se": {"x": 1521.0, "y": 967.0}, "sw": {"x": 1531.0, "y": 957.0}, "nw": {"x": 1531.0, "y": 967.0}}, "position": {"x": 1526.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115388, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 971.0}, "se": {"x": 1465.0, "y": 981.0}, "sw": {"x": 1475.0, "y": 971.0}, "nw": {"x": 1475.0, "y": 981.0}}, "position": {"x": 1470.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115389, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 971.0}, "se": {"x": 1479.0, "y": 981.0}, "sw": {"x": 1489.0, "y": 971.0}, "nw": {"x": 1489.0, "y": 981.0}}, "position": {"x": 1484.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115390, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 971.0}, "se": {"x": 1493.0, "y": 981.0}, "sw": {"x": 1503.0, "y": 971.0}, "nw": {"x": 1503.0, "y": 981.0}}, "position": {"x": 1498.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115391, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 971.0}, "se": {"x": 1507.0, "y": 981.0}, "sw": {"x": 1517.0, "y": 971.0}, "nw": {"x": 1517.0, "y": 981.0}}, "position": {"x": 1512.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115392, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 971.0}, "se": {"x": 1521.0, "y": 981.0}, "sw": {"x": 1531.0, "y": 971.0}, "nw": {"x": 1531.0, "y": 981.0}}, "position": {"x": 1526.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "2:6": [{"logicalSeatId": 1537113148, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1719.0}, "se": {"x": 732.0, "y": 1729.0}, "sw": {"x": 742.0, "y": 1719.0}, "nw": {"x": 742.0, "y": 1729.0}}, "position": {"x": 737.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1607, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113149, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1719.0}, "se": {"x": 746.0, "y": 1729.0}, "sw": {"x": 756.0, "y": 1719.0}, "nw": {"x": 756.0, "y": 1729.0}}, "position": {"x": 751.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1622, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113150, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1719.0}, "se": {"x": 760.0, "y": 1729.0}, "sw": {"x": 770.0, "y": 1719.0}, "nw": {"x": 770.0, "y": 1729.0}}, "position": {"x": 765.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1638, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113158, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1733.0}, "se": {"x": 704.0, "y": 1743.0}, "sw": {"x": 714.0, "y": 1733.0}, "nw": {"x": 714.0, "y": 1743.0}}, "position": {"x": 709.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158661, "gate": "", "blockId": null, "orderNum": 1485, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113159, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1733.0}, "se": {"x": 732.0, "y": 1743.0}, "sw": {"x": 742.0, "y": 1733.0}, "nw": {"x": 742.0, "y": 1743.0}}, "position": {"x": 737.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1606, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113160, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1733.0}, "se": {"x": 746.0, "y": 1743.0}, "sw": {"x": 756.0, "y": 1733.0}, "nw": {"x": 756.0, "y": 1743.0}}, "position": {"x": 751.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1621, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113161, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1733.0}, "se": {"x": 760.0, "y": 1743.0}, "sw": {"x": 770.0, "y": 1733.0}, "nw": {"x": 770.0, "y": 1743.0}}, "position": {"x": 765.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1637, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113169, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1747.0}, "se": {"x": 676.0, "y": 1757.0}, "sw": {"x": 686.0, "y": 1747.0}, "nw": {"x": 686.0, "y": 1757.0}}, "position": {"x": 681.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158686, "gate": "", "blockId": null, "orderNum": 1269, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113170, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1747.0}, "se": {"x": 690.0, "y": 1757.0}, "sw": {"x": 700.0, "y": 1747.0}, "nw": {"x": 700.0, "y": 1757.0}}, "position": {"x": 695.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158673, "gate": "", "blockId": null, "orderNum": 1377, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113171, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1747.0}, "se": {"x": 718.0, "y": 1757.0}, "sw": {"x": 728.0, "y": 1747.0}, "nw": {"x": 728.0, "y": 1757.0}}, "position": {"x": 723.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158688, "gate": "", "blockId": null, "orderNum": 1592, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113172, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1747.0}, "se": {"x": 732.0, "y": 1757.0}, "sw": {"x": 742.0, "y": 1747.0}, "nw": {"x": 742.0, "y": 1757.0}}, "position": {"x": 737.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1605, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113173, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1747.0}, "se": {"x": 746.0, "y": 1757.0}, "sw": {"x": 756.0, "y": 1747.0}, "nw": {"x": 756.0, "y": 1757.0}}, "position": {"x": 751.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1620, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113174, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1747.0}, "se": {"x": 760.0, "y": 1757.0}, "sw": {"x": 770.0, "y": 1747.0}, "nw": {"x": 770.0, "y": 1757.0}}, "position": {"x": 765.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1636, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113182, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1761.0}, "se": {"x": 662.0, "y": 1771.0}, "sw": {"x": 672.0, "y": 1761.0}, "nw": {"x": 672.0, "y": 1771.0}}, "position": {"x": 667.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158685, "gate": "", "blockId": null, "orderNum": 1180, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113183, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1761.0}, "se": {"x": 676.0, "y": 1771.0}, "sw": {"x": 686.0, "y": 1761.0}, "nw": {"x": 686.0, "y": 1771.0}}, "position": {"x": 681.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158686, "gate": "", "blockId": null, "orderNum": 1268, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113184, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1761.0}, "se": {"x": 704.0, "y": 1771.0}, "sw": {"x": 714.0, "y": 1761.0}, "nw": {"x": 714.0, "y": 1771.0}}, "position": {"x": 709.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158687, "gate": "", "blockId": null, "orderNum": 1484, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113185, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1761.0}, "se": {"x": 718.0, "y": 1771.0}, "sw": {"x": 728.0, "y": 1761.0}, "nw": {"x": 728.0, "y": 1771.0}}, "position": {"x": 723.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158688, "gate": "", "blockId": null, "orderNum": 1591, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113186, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1761.0}, "se": {"x": 732.0, "y": 1771.0}, "sw": {"x": 742.0, "y": 1761.0}, "nw": {"x": 742.0, "y": 1771.0}}, "position": {"x": 737.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1604, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113187, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1761.0}, "se": {"x": 746.0, "y": 1771.0}, "sw": {"x": 756.0, "y": 1761.0}, "nw": {"x": 756.0, "y": 1771.0}}, "position": {"x": 751.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1619, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113188, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1761.0}, "se": {"x": 760.0, "y": 1771.0}, "sw": {"x": 770.0, "y": 1761.0}, "nw": {"x": 770.0, "y": 1771.0}}, "position": {"x": 765.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1635, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113448, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1540.0}, "se": {"x": 604.0, "y": 1540.0}, "sw": {"x": 614.0, "y": 1550.0}, "nw": {"x": 604.0, "y": 1550.0}}, "position": {"x": 609.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1387, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113449, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1554.0}, "se": {"x": 604.0, "y": 1554.0}, "sw": {"x": 614.0, "y": 1564.0}, "nw": {"x": 604.0, "y": 1564.0}}, "position": {"x": 609.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1386, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113450, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1568.0}, "se": {"x": 604.0, "y": 1568.0}, "sw": {"x": 614.0, "y": 1578.0}, "nw": {"x": 604.0, "y": 1578.0}}, "position": {"x": 609.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1385, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113451, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1582.0}, "se": {"x": 604.0, "y": 1582.0}, "sw": {"x": 614.0, "y": 1592.0}, "nw": {"x": 604.0, "y": 1592.0}}, "position": {"x": 609.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1384, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113452, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1596.0}, "se": {"x": 604.0, "y": 1596.0}, "sw": {"x": 614.0, "y": 1606.0}, "nw": {"x": 604.0, "y": 1606.0}}, "position": {"x": 609.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1383, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113453, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1610.0}, "se": {"x": 604.0, "y": 1610.0}, "sw": {"x": 614.0, "y": 1620.0}, "nw": {"x": 604.0, "y": 1620.0}}, "position": {"x": 609.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1382, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113454, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1624.0}, "se": {"x": 604.0, "y": 1624.0}, "sw": {"x": 614.0, "y": 1634.0}, "nw": {"x": 604.0, "y": 1634.0}}, "position": {"x": 609.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1381, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113455, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1638.0}, "se": {"x": 604.0, "y": 1638.0}, "sw": {"x": 614.0, "y": 1648.0}, "nw": {"x": 604.0, "y": 1648.0}}, "position": {"x": 609.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1380, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113456, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1652.0}, "se": {"x": 604.0, "y": 1652.0}, "sw": {"x": 614.0, "y": 1662.0}, "nw": {"x": 604.0, "y": 1662.0}}, "position": {"x": 609.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1379, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113457, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1666.0}, "se": {"x": 604.0, "y": 1666.0}, "sw": {"x": 614.0, "y": 1676.0}, "nw": {"x": 604.0, "y": 1676.0}}, "position": {"x": 609.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1378, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113463, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1540.0}, "se": {"x": 590.0, "y": 1540.0}, "sw": {"x": 600.0, "y": 1550.0}, "nw": {"x": 590.0, "y": 1550.0}}, "position": {"x": 595.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1280, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113464, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1554.0}, "se": {"x": 590.0, "y": 1554.0}, "sw": {"x": 600.0, "y": 1564.0}, "nw": {"x": 590.0, "y": 1564.0}}, "position": {"x": 595.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1279, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113465, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1568.0}, "se": {"x": 590.0, "y": 1568.0}, "sw": {"x": 600.0, "y": 1578.0}, "nw": {"x": 590.0, "y": 1578.0}}, "position": {"x": 595.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1278, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113466, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1582.0}, "se": {"x": 590.0, "y": 1582.0}, "sw": {"x": 600.0, "y": 1592.0}, "nw": {"x": 590.0, "y": 1592.0}}, "position": {"x": 595.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1277, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113467, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1596.0}, "se": {"x": 590.0, "y": 1596.0}, "sw": {"x": 600.0, "y": 1606.0}, "nw": {"x": 590.0, "y": 1606.0}}, "position": {"x": 595.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1276, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113468, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1610.0}, "se": {"x": 590.0, "y": 1610.0}, "sw": {"x": 600.0, "y": 1620.0}, "nw": {"x": 590.0, "y": 1620.0}}, "position": {"x": 595.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1275, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113469, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1624.0}, "se": {"x": 590.0, "y": 1624.0}, "sw": {"x": 600.0, "y": 1634.0}, "nw": {"x": 590.0, "y": 1634.0}}, "position": {"x": 595.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1274, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113470, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1638.0}, "se": {"x": 590.0, "y": 1638.0}, "sw": {"x": 600.0, "y": 1648.0}, "nw": {"x": 590.0, "y": 1648.0}}, "position": {"x": 595.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1273, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113471, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1652.0}, "se": {"x": 590.0, "y": 1652.0}, "sw": {"x": 600.0, "y": 1662.0}, "nw": {"x": 590.0, "y": 1662.0}}, "position": {"x": 595.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1272, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113472, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1666.0}, "se": {"x": 590.0, "y": 1666.0}, "sw": {"x": 600.0, "y": 1676.0}, "nw": {"x": 590.0, "y": 1676.0}}, "position": {"x": 595.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1271, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113473, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1694.0}, "se": {"x": 590.0, "y": 1694.0}, "sw": {"x": 600.0, "y": 1704.0}, "nw": {"x": 590.0, "y": 1704.0}}, "position": {"x": 595.0, "y": 1699.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158976, "gate": "", "blockId": null, "orderNum": 1270, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113479, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1540.0}, "se": {"x": 576.0, "y": 1540.0}, "sw": {"x": 586.0, "y": 1550.0}, "nw": {"x": 576.0, "y": 1550.0}}, "position": {"x": 581.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1193, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113480, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1554.0}, "se": {"x": 576.0, "y": 1554.0}, "sw": {"x": 586.0, "y": 1564.0}, "nw": {"x": 576.0, "y": 1564.0}}, "position": {"x": 581.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1192, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113481, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1568.0}, "se": {"x": 576.0, "y": 1568.0}, "sw": {"x": 586.0, "y": 1578.0}, "nw": {"x": 576.0, "y": 1578.0}}, "position": {"x": 581.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1191, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113482, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1582.0}, "se": {"x": 576.0, "y": 1582.0}, "sw": {"x": 586.0, "y": 1592.0}, "nw": {"x": 576.0, "y": 1592.0}}, "position": {"x": 581.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1190, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113483, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1596.0}, "se": {"x": 576.0, "y": 1596.0}, "sw": {"x": 586.0, "y": 1606.0}, "nw": {"x": 576.0, "y": 1606.0}}, "position": {"x": 581.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1189, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113484, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1610.0}, "se": {"x": 576.0, "y": 1610.0}, "sw": {"x": 586.0, "y": 1620.0}, "nw": {"x": 576.0, "y": 1620.0}}, "position": {"x": 581.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1188, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113485, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1624.0}, "se": {"x": 576.0, "y": 1624.0}, "sw": {"x": 586.0, "y": 1634.0}, "nw": {"x": 576.0, "y": 1634.0}}, "position": {"x": 581.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1187, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113486, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1638.0}, "se": {"x": 576.0, "y": 1638.0}, "sw": {"x": 586.0, "y": 1648.0}, "nw": {"x": 576.0, "y": 1648.0}}, "position": {"x": 581.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1186, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113487, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1652.0}, "se": {"x": 576.0, "y": 1652.0}, "sw": {"x": 586.0, "y": 1662.0}, "nw": {"x": 576.0, "y": 1662.0}}, "position": {"x": 581.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1185, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113488, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1666.0}, "se": {"x": 576.0, "y": 1666.0}, "sw": {"x": 586.0, "y": 1676.0}, "nw": {"x": 576.0, "y": 1676.0}}, "position": {"x": 581.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1184, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113489, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1680.0}, "se": {"x": 576.0, "y": 1680.0}, "sw": {"x": 586.0, "y": 1690.0}, "nw": {"x": 576.0, "y": 1690.0}}, "position": {"x": 581.0, "y": 1685.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1183, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113490, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1708.0}, "se": {"x": 576.0, "y": 1708.0}, "sw": {"x": 586.0, "y": 1718.0}, "nw": {"x": 576.0, "y": 1718.0}}, "position": {"x": 581.0, "y": 1713.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158994, "gate": "", "blockId": null, "orderNum": 1182, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113491, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1722.0}, "se": {"x": 576.0, "y": 1722.0}, "sw": {"x": 586.0, "y": 1732.0}, "nw": {"x": 576.0, "y": 1732.0}}, "position": {"x": 581.0, "y": 1727.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158994, "gate": "", "blockId": null, "orderNum": 1181, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113497, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1540.0}, "se": {"x": 562.0, "y": 1540.0}, "sw": {"x": 572.0, "y": 1550.0}, "nw": {"x": 562.0, "y": 1550.0}}, "position": {"x": 567.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113498, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1554.0}, "se": {"x": 562.0, "y": 1554.0}, "sw": {"x": 572.0, "y": 1564.0}, "nw": {"x": 562.0, "y": 1564.0}}, "position": {"x": 567.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113499, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1568.0}, "se": {"x": 562.0, "y": 1568.0}, "sw": {"x": 572.0, "y": 1578.0}, "nw": {"x": 562.0, "y": 1578.0}}, "position": {"x": 567.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113500, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1582.0}, "se": {"x": 562.0, "y": 1582.0}, "sw": {"x": 572.0, "y": 1592.0}, "nw": {"x": 562.0, "y": 1592.0}}, "position": {"x": 567.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113501, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1596.0}, "se": {"x": 562.0, "y": 1596.0}, "sw": {"x": 572.0, "y": 1606.0}, "nw": {"x": 562.0, "y": 1606.0}}, "position": {"x": 567.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113502, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1610.0}, "se": {"x": 562.0, "y": 1610.0}, "sw": {"x": 572.0, "y": 1620.0}, "nw": {"x": 562.0, "y": 1620.0}}, "position": {"x": 567.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113503, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1624.0}, "se": {"x": 562.0, "y": 1624.0}, "sw": {"x": 572.0, "y": 1634.0}, "nw": {"x": 562.0, "y": 1634.0}}, "position": {"x": 567.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113504, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1638.0}, "se": {"x": 562.0, "y": 1638.0}, "sw": {"x": 572.0, "y": 1648.0}, "nw": {"x": 562.0, "y": 1648.0}}, "position": {"x": 567.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113505, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1652.0}, "se": {"x": 562.0, "y": 1652.0}, "sw": {"x": 572.0, "y": 1662.0}, "nw": {"x": 562.0, "y": 1662.0}}, "position": {"x": 567.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113506, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1666.0}, "se": {"x": 562.0, "y": 1666.0}, "sw": {"x": 572.0, "y": 1676.0}, "nw": {"x": 562.0, "y": 1676.0}}, "position": {"x": 567.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113507, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1680.0}, "se": {"x": 562.0, "y": 1680.0}, "sw": {"x": 572.0, "y": 1690.0}, "nw": {"x": 562.0, "y": 1690.0}}, "position": {"x": 567.0, "y": 1685.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113508, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1694.0}, "se": {"x": 562.0, "y": 1694.0}, "sw": {"x": 572.0, "y": 1704.0}, "nw": {"x": 562.0, "y": 1704.0}}, "position": {"x": 567.0, "y": 1699.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113509, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1722.0}, "se": {"x": 562.0, "y": 1722.0}, "sw": {"x": 572.0, "y": 1732.0}, "nw": {"x": 562.0, "y": 1732.0}}, "position": {"x": 567.0, "y": 1727.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113510, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1736.0}, "se": {"x": 562.0, "y": 1736.0}, "sw": {"x": 572.0, "y": 1746.0}, "nw": {"x": 562.0, "y": 1746.0}}, "position": {"x": 567.0, "y": 1741.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "4:4": [{"logicalSeatId": 1537115518, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1189.0}, "se": {"x": 1031.0, "y": 1199.0}, "sw": {"x": 1041.0, "y": 1189.0}, "nw": {"x": 1041.0, "y": 1199.0}}, "position": {"x": 1036.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115519, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1189.0}, "se": {"x": 1045.0, "y": 1199.0}, "sw": {"x": 1055.0, "y": 1189.0}, "nw": {"x": 1055.0, "y": 1199.0}}, "position": {"x": 1050.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115520, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1189.0}, "se": {"x": 1059.0, "y": 1199.0}, "sw": {"x": 1069.0, "y": 1189.0}, "nw": {"x": 1069.0, "y": 1199.0}}, "position": {"x": 1064.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115521, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1189.0}, "se": {"x": 1073.0, "y": 1199.0}, "sw": {"x": 1083.0, "y": 1189.0}, "nw": {"x": 1083.0, "y": 1199.0}}, "position": {"x": 1078.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115522, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1189.0}, "se": {"x": 1087.0, "y": 1199.0}, "sw": {"x": 1097.0, "y": 1189.0}, "nw": {"x": 1097.0, "y": 1199.0}}, "position": {"x": 1092.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115523, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1189.0}, "se": {"x": 1101.0, "y": 1199.0}, "sw": {"x": 1111.0, "y": 1189.0}, "nw": {"x": 1111.0, "y": 1199.0}}, "position": {"x": 1106.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115524, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1189.0}, "se": {"x": 1115.0, "y": 1199.0}, "sw": {"x": 1125.0, "y": 1189.0}, "nw": {"x": 1125.0, "y": 1199.0}}, "position": {"x": 1120.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115525, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1189.0}, "se": {"x": 1129.0, "y": 1199.0}, "sw": {"x": 1139.0, "y": 1189.0}, "nw": {"x": 1139.0, "y": 1199.0}}, "position": {"x": 1134.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115526, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1189.0}, "se": {"x": 1143.0, "y": 1199.0}, "sw": {"x": 1153.0, "y": 1189.0}, "nw": {"x": 1153.0, "y": 1199.0}}, "position": {"x": 1148.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115527, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1189.0}, "se": {"x": 1157.0, "y": 1199.0}, "sw": {"x": 1167.0, "y": 1189.0}, "nw": {"x": 1167.0, "y": 1199.0}}, "position": {"x": 1162.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115528, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1203.0}, "se": {"x": 1031.0, "y": 1213.0}, "sw": {"x": 1041.0, "y": 1203.0}, "nw": {"x": 1041.0, "y": 1213.0}}, "position": {"x": 1036.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115529, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1203.0}, "se": {"x": 1045.0, "y": 1213.0}, "sw": {"x": 1055.0, "y": 1203.0}, "nw": {"x": 1055.0, "y": 1213.0}}, "position": {"x": 1050.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115530, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1203.0}, "se": {"x": 1059.0, "y": 1213.0}, "sw": {"x": 1069.0, "y": 1203.0}, "nw": {"x": 1069.0, "y": 1213.0}}, "position": {"x": 1064.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115531, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1203.0}, "se": {"x": 1073.0, "y": 1213.0}, "sw": {"x": 1083.0, "y": 1203.0}, "nw": {"x": 1083.0, "y": 1213.0}}, "position": {"x": 1078.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115532, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1203.0}, "se": {"x": 1087.0, "y": 1213.0}, "sw": {"x": 1097.0, "y": 1203.0}, "nw": {"x": 1097.0, "y": 1213.0}}, "position": {"x": 1092.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115533, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1203.0}, "se": {"x": 1101.0, "y": 1213.0}, "sw": {"x": 1111.0, "y": 1203.0}, "nw": {"x": 1111.0, "y": 1213.0}}, "position": {"x": 1106.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115534, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1203.0}, "se": {"x": 1115.0, "y": 1213.0}, "sw": {"x": 1125.0, "y": 1203.0}, "nw": {"x": 1125.0, "y": 1213.0}}, "position": {"x": 1120.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115535, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1203.0}, "se": {"x": 1129.0, "y": 1213.0}, "sw": {"x": 1139.0, "y": 1203.0}, "nw": {"x": 1139.0, "y": 1213.0}}, "position": {"x": 1134.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115536, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1203.0}, "se": {"x": 1143.0, "y": 1213.0}, "sw": {"x": 1153.0, "y": 1203.0}, "nw": {"x": 1153.0, "y": 1213.0}}, "position": {"x": 1148.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115537, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1203.0}, "se": {"x": 1157.0, "y": 1213.0}, "sw": {"x": 1167.0, "y": 1203.0}, "nw": {"x": 1167.0, "y": 1213.0}}, "position": {"x": 1162.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115538, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1217.0}, "se": {"x": 1031.0, "y": 1227.0}, "sw": {"x": 1041.0, "y": 1217.0}, "nw": {"x": 1041.0, "y": 1227.0}}, "position": {"x": 1036.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115539, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1217.0}, "se": {"x": 1045.0, "y": 1227.0}, "sw": {"x": 1055.0, "y": 1217.0}, "nw": {"x": 1055.0, "y": 1227.0}}, "position": {"x": 1050.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115540, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1217.0}, "se": {"x": 1059.0, "y": 1227.0}, "sw": {"x": 1069.0, "y": 1217.0}, "nw": {"x": 1069.0, "y": 1227.0}}, "position": {"x": 1064.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115541, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1217.0}, "se": {"x": 1073.0, "y": 1227.0}, "sw": {"x": 1083.0, "y": 1217.0}, "nw": {"x": 1083.0, "y": 1227.0}}, "position": {"x": 1078.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115542, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1217.0}, "se": {"x": 1087.0, "y": 1227.0}, "sw": {"x": 1097.0, "y": 1217.0}, "nw": {"x": 1097.0, "y": 1227.0}}, "position": {"x": 1092.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115543, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1217.0}, "se": {"x": 1101.0, "y": 1227.0}, "sw": {"x": 1111.0, "y": 1217.0}, "nw": {"x": 1111.0, "y": 1227.0}}, "position": {"x": 1106.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115544, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1217.0}, "se": {"x": 1115.0, "y": 1227.0}, "sw": {"x": 1125.0, "y": 1217.0}, "nw": {"x": 1125.0, "y": 1227.0}}, "position": {"x": 1120.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115545, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1217.0}, "se": {"x": 1129.0, "y": 1227.0}, "sw": {"x": 1139.0, "y": 1217.0}, "nw": {"x": 1139.0, "y": 1227.0}}, "position": {"x": 1134.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115546, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1217.0}, "se": {"x": 1143.0, "y": 1227.0}, "sw": {"x": 1153.0, "y": 1217.0}, "nw": {"x": 1153.0, "y": 1227.0}}, "position": {"x": 1148.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115547, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1217.0}, "se": {"x": 1157.0, "y": 1227.0}, "sw": {"x": 1167.0, "y": 1217.0}, "nw": {"x": 1167.0, "y": 1227.0}}, "position": {"x": 1162.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115548, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1231.0}, "se": {"x": 1031.0, "y": 1241.0}, "sw": {"x": 1041.0, "y": 1231.0}, "nw": {"x": 1041.0, "y": 1241.0}}, "position": {"x": 1036.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115549, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1231.0}, "se": {"x": 1045.0, "y": 1241.0}, "sw": {"x": 1055.0, "y": 1231.0}, "nw": {"x": 1055.0, "y": 1241.0}}, "position": {"x": 1050.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115550, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1231.0}, "se": {"x": 1059.0, "y": 1241.0}, "sw": {"x": 1069.0, "y": 1231.0}, "nw": {"x": 1069.0, "y": 1241.0}}, "position": {"x": 1064.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115551, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1231.0}, "se": {"x": 1073.0, "y": 1241.0}, "sw": {"x": 1083.0, "y": 1231.0}, "nw": {"x": 1083.0, "y": 1241.0}}, "position": {"x": 1078.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115552, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1231.0}, "se": {"x": 1087.0, "y": 1241.0}, "sw": {"x": 1097.0, "y": 1231.0}, "nw": {"x": 1097.0, "y": 1241.0}}, "position": {"x": 1092.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115553, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1231.0}, "se": {"x": 1101.0, "y": 1241.0}, "sw": {"x": 1111.0, "y": 1231.0}, "nw": {"x": 1111.0, "y": 1241.0}}, "position": {"x": 1106.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115554, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1231.0}, "se": {"x": 1115.0, "y": 1241.0}, "sw": {"x": 1125.0, "y": 1231.0}, "nw": {"x": 1125.0, "y": 1241.0}}, "position": {"x": 1120.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115555, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1231.0}, "se": {"x": 1129.0, "y": 1241.0}, "sw": {"x": 1139.0, "y": 1231.0}, "nw": {"x": 1139.0, "y": 1241.0}}, "position": {"x": 1134.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115556, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1231.0}, "se": {"x": 1143.0, "y": 1241.0}, "sw": {"x": 1153.0, "y": 1231.0}, "nw": {"x": 1153.0, "y": 1241.0}}, "position": {"x": 1148.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115557, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1231.0}, "se": {"x": 1157.0, "y": 1241.0}, "sw": {"x": 1167.0, "y": 1231.0}, "nw": {"x": 1167.0, "y": 1241.0}}, "position": {"x": 1162.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115558, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1245.0}, "se": {"x": 1031.0, "y": 1255.0}, "sw": {"x": 1041.0, "y": 1245.0}, "nw": {"x": 1041.0, "y": 1255.0}}, "position": {"x": 1036.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115559, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1245.0}, "se": {"x": 1045.0, "y": 1255.0}, "sw": {"x": 1055.0, "y": 1245.0}, "nw": {"x": 1055.0, "y": 1255.0}}, "position": {"x": 1050.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115560, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1245.0}, "se": {"x": 1059.0, "y": 1255.0}, "sw": {"x": 1069.0, "y": 1245.0}, "nw": {"x": 1069.0, "y": 1255.0}}, "position": {"x": 1064.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115561, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1245.0}, "se": {"x": 1073.0, "y": 1255.0}, "sw": {"x": 1083.0, "y": 1245.0}, "nw": {"x": 1083.0, "y": 1255.0}}, "position": {"x": 1078.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115562, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1245.0}, "se": {"x": 1087.0, "y": 1255.0}, "sw": {"x": 1097.0, "y": 1245.0}, "nw": {"x": 1097.0, "y": 1255.0}}, "position": {"x": 1092.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115563, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1245.0}, "se": {"x": 1101.0, "y": 1255.0}, "sw": {"x": 1111.0, "y": 1245.0}, "nw": {"x": 1111.0, "y": 1255.0}}, "position": {"x": 1106.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115564, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1245.0}, "se": {"x": 1115.0, "y": 1255.0}, "sw": {"x": 1125.0, "y": 1245.0}, "nw": {"x": 1125.0, "y": 1255.0}}, "position": {"x": 1120.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115565, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1245.0}, "se": {"x": 1129.0, "y": 1255.0}, "sw": {"x": 1139.0, "y": 1245.0}, "nw": {"x": 1139.0, "y": 1255.0}}, "position": {"x": 1134.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115566, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1245.0}, "se": {"x": 1143.0, "y": 1255.0}, "sw": {"x": 1153.0, "y": 1245.0}, "nw": {"x": 1153.0, "y": 1255.0}}, "position": {"x": 1148.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115567, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1245.0}, "se": {"x": 1157.0, "y": 1255.0}, "sw": {"x": 1167.0, "y": 1245.0}, "nw": {"x": 1167.0, "y": 1255.0}}, "position": {"x": 1162.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115568, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1259.0}, "se": {"x": 1031.0, "y": 1269.0}, "sw": {"x": 1041.0, "y": 1259.0}, "nw": {"x": 1041.0, "y": 1269.0}}, "position": {"x": 1036.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115569, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1259.0}, "se": {"x": 1045.0, "y": 1269.0}, "sw": {"x": 1055.0, "y": 1259.0}, "nw": {"x": 1055.0, "y": 1269.0}}, "position": {"x": 1050.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115570, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1259.0}, "se": {"x": 1059.0, "y": 1269.0}, "sw": {"x": 1069.0, "y": 1259.0}, "nw": {"x": 1069.0, "y": 1269.0}}, "position": {"x": 1064.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115571, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1259.0}, "se": {"x": 1073.0, "y": 1269.0}, "sw": {"x": 1083.0, "y": 1259.0}, "nw": {"x": 1083.0, "y": 1269.0}}, "position": {"x": 1078.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115572, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1259.0}, "se": {"x": 1087.0, "y": 1269.0}, "sw": {"x": 1097.0, "y": 1259.0}, "nw": {"x": 1097.0, "y": 1269.0}}, "position": {"x": 1092.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115573, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1259.0}, "se": {"x": 1101.0, "y": 1269.0}, "sw": {"x": 1111.0, "y": 1259.0}, "nw": {"x": 1111.0, "y": 1269.0}}, "position": {"x": 1106.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115574, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1259.0}, "se": {"x": 1115.0, "y": 1269.0}, "sw": {"x": 1125.0, "y": 1259.0}, "nw": {"x": 1125.0, "y": 1269.0}}, "position": {"x": 1120.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115575, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1259.0}, "se": {"x": 1129.0, "y": 1269.0}, "sw": {"x": 1139.0, "y": 1259.0}, "nw": {"x": 1139.0, "y": 1269.0}}, "position": {"x": 1134.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115576, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1259.0}, "se": {"x": 1143.0, "y": 1269.0}, "sw": {"x": 1153.0, "y": 1259.0}, "nw": {"x": 1153.0, "y": 1269.0}}, "position": {"x": 1148.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115577, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1259.0}, "se": {"x": 1157.0, "y": 1269.0}, "sw": {"x": 1167.0, "y": 1259.0}, "nw": {"x": 1167.0, "y": 1269.0}}, "position": {"x": 1162.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115578, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1273.0}, "se": {"x": 1031.0, "y": 1283.0}, "sw": {"x": 1041.0, "y": 1273.0}, "nw": {"x": 1041.0, "y": 1283.0}}, "position": {"x": 1036.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115579, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1273.0}, "se": {"x": 1045.0, "y": 1283.0}, "sw": {"x": 1055.0, "y": 1273.0}, "nw": {"x": 1055.0, "y": 1283.0}}, "position": {"x": 1050.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115580, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1273.0}, "se": {"x": 1059.0, "y": 1283.0}, "sw": {"x": 1069.0, "y": 1273.0}, "nw": {"x": 1069.0, "y": 1283.0}}, "position": {"x": 1064.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115581, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1273.0}, "se": {"x": 1073.0, "y": 1283.0}, "sw": {"x": 1083.0, "y": 1273.0}, "nw": {"x": 1083.0, "y": 1283.0}}, "position": {"x": 1078.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115582, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1273.0}, "se": {"x": 1087.0, "y": 1283.0}, "sw": {"x": 1097.0, "y": 1273.0}, "nw": {"x": 1097.0, "y": 1283.0}}, "position": {"x": 1092.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115583, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1273.0}, "se": {"x": 1101.0, "y": 1283.0}, "sw": {"x": 1111.0, "y": 1273.0}, "nw": {"x": 1111.0, "y": 1283.0}}, "position": {"x": 1106.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115584, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1273.0}, "se": {"x": 1115.0, "y": 1283.0}, "sw": {"x": 1125.0, "y": 1273.0}, "nw": {"x": 1125.0, "y": 1283.0}}, "position": {"x": 1120.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115585, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1273.0}, "se": {"x": 1129.0, "y": 1283.0}, "sw": {"x": 1139.0, "y": 1273.0}, "nw": {"x": 1139.0, "y": 1283.0}}, "position": {"x": 1134.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115586, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1273.0}, "se": {"x": 1143.0, "y": 1283.0}, "sw": {"x": 1153.0, "y": 1273.0}, "nw": {"x": 1153.0, "y": 1283.0}}, "position": {"x": 1148.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115587, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1273.0}, "se": {"x": 1157.0, "y": 1283.0}, "sw": {"x": 1167.0, "y": 1273.0}, "nw": {"x": 1167.0, "y": 1283.0}}, "position": {"x": 1162.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115638, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1189.0}, "se": {"x": 1253.0, "y": 1199.0}, "sw": {"x": 1263.0, "y": 1189.0}, "nw": {"x": 1263.0, "y": 1199.0}}, "position": {"x": 1258.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115639, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1189.0}, "se": {"x": 1267.0, "y": 1199.0}, "sw": {"x": 1277.0, "y": 1189.0}, "nw": {"x": 1277.0, "y": 1199.0}}, "position": {"x": 1272.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115648, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1203.0}, "se": {"x": 1253.0, "y": 1213.0}, "sw": {"x": 1263.0, "y": 1203.0}, "nw": {"x": 1263.0, "y": 1213.0}}, "position": {"x": 1258.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115649, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1203.0}, "se": {"x": 1267.0, "y": 1213.0}, "sw": {"x": 1277.0, "y": 1203.0}, "nw": {"x": 1277.0, "y": 1213.0}}, "position": {"x": 1272.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115658, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1217.0}, "se": {"x": 1253.0, "y": 1227.0}, "sw": {"x": 1263.0, "y": 1217.0}, "nw": {"x": 1263.0, "y": 1227.0}}, "position": {"x": 1258.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115659, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1217.0}, "se": {"x": 1267.0, "y": 1227.0}, "sw": {"x": 1277.0, "y": 1217.0}, "nw": {"x": 1277.0, "y": 1227.0}}, "position": {"x": 1272.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115668, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1231.0}, "se": {"x": 1253.0, "y": 1241.0}, "sw": {"x": 1263.0, "y": 1231.0}, "nw": {"x": 1263.0, "y": 1241.0}}, "position": {"x": 1258.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115669, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1231.0}, "se": {"x": 1267.0, "y": 1241.0}, "sw": {"x": 1277.0, "y": 1231.0}, "nw": {"x": 1277.0, "y": 1241.0}}, "position": {"x": 1272.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115678, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1245.0}, "se": {"x": 1253.0, "y": 1255.0}, "sw": {"x": 1263.0, "y": 1245.0}, "nw": {"x": 1263.0, "y": 1255.0}}, "position": {"x": 1258.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115679, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1245.0}, "se": {"x": 1267.0, "y": 1255.0}, "sw": {"x": 1277.0, "y": 1245.0}, "nw": {"x": 1277.0, "y": 1255.0}}, "position": {"x": 1272.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115688, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1259.0}, "se": {"x": 1253.0, "y": 1269.0}, "sw": {"x": 1263.0, "y": 1259.0}, "nw": {"x": 1263.0, "y": 1269.0}}, "position": {"x": 1258.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115689, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1259.0}, "se": {"x": 1267.0, "y": 1269.0}, "sw": {"x": 1277.0, "y": 1259.0}, "nw": {"x": 1277.0, "y": 1269.0}}, "position": {"x": 1272.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115698, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1273.0}, "se": {"x": 1253.0, "y": 1283.0}, "sw": {"x": 1263.0, "y": 1273.0}, "nw": {"x": 1263.0, "y": 1283.0}}, "position": {"x": 1258.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115699, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1273.0}, "se": {"x": 1267.0, "y": 1283.0}, "sw": {"x": 1277.0, "y": 1273.0}, "nw": {"x": 1277.0, "y": 1283.0}}, "position": {"x": 1272.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "6:2": [{"logicalSeatId": 1537115259, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 748.0}, "se": {"x": 1535.0, "y": 758.0}, "sw": {"x": 1545.0, "y": 748.0}, "nw": {"x": 1545.0, "y": 758.0}}, "position": {"x": 1540.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115265, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 762.0}, "se": {"x": 1535.0, "y": 772.0}, "sw": {"x": 1545.0, "y": 762.0}, "nw": {"x": 1545.0, "y": 772.0}}, "position": {"x": 1540.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115266, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 762.0}, "se": {"x": 1549.0, "y": 772.0}, "sw": {"x": 1559.0, "y": 762.0}, "nw": {"x": 1559.0, "y": 772.0}}, "position": {"x": 1554.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115267, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 762.0}, "se": {"x": 1563.0, "y": 772.0}, "sw": {"x": 1573.0, "y": 762.0}, "nw": {"x": 1573.0, "y": 772.0}}, "position": {"x": 1568.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "3:6": [{"logicalSeatId": 1537112653, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1719.0}, "se": {"x": 912.0, "y": 1729.0}, "sw": {"x": 922.0, "y": 1719.0}, "nw": {"x": 922.0, "y": 1729.0}}, "position": {"x": 917.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2351, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112654, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1719.0}, "se": {"x": 926.0, "y": 1729.0}, "sw": {"x": 936.0, "y": 1719.0}, "nw": {"x": 936.0, "y": 1729.0}}, "position": {"x": 931.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2431, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112655, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1719.0}, "se": {"x": 940.0, "y": 1729.0}, "sw": {"x": 950.0, "y": 1719.0}, "nw": {"x": 950.0, "y": 1729.0}}, "position": {"x": 945.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2511, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112656, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1719.0}, "se": {"x": 954.0, "y": 1729.0}, "sw": {"x": 964.0, "y": 1719.0}, "nw": {"x": 964.0, "y": 1729.0}}, "position": {"x": 959.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2591, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112657, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1719.0}, "se": {"x": 968.0, "y": 1729.0}, "sw": {"x": 978.0, "y": 1719.0}, "nw": {"x": 978.0, "y": 1729.0}}, "position": {"x": 973.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2671, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112658, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1719.0}, "se": {"x": 982.0, "y": 1729.0}, "sw": {"x": 992.0, "y": 1719.0}, "nw": {"x": 992.0, "y": 1729.0}}, "position": {"x": 987.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2751, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112659, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1719.0}, "se": {"x": 996.0, "y": 1729.0}, "sw": {"x": 1006.0, "y": 1719.0}, "nw": {"x": 1006.0, "y": 1729.0}}, "position": {"x": 1001.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2831, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112660, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1719.0}, "se": {"x": 1010.0, "y": 1729.0}, "sw": {"x": 1020.0, "y": 1719.0}, "nw": {"x": 1020.0, "y": 1729.0}}, "position": {"x": 1015.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2911, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112691, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1733.0}, "se": {"x": 912.0, "y": 1743.0}, "sw": {"x": 922.0, "y": 1733.0}, "nw": {"x": 922.0, "y": 1743.0}}, "position": {"x": 917.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2350, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112692, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1733.0}, "se": {"x": 926.0, "y": 1743.0}, "sw": {"x": 936.0, "y": 1733.0}, "nw": {"x": 936.0, "y": 1743.0}}, "position": {"x": 931.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2430, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112693, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1733.0}, "se": {"x": 940.0, "y": 1743.0}, "sw": {"x": 950.0, "y": 1733.0}, "nw": {"x": 950.0, "y": 1743.0}}, "position": {"x": 945.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2510, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112694, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1733.0}, "se": {"x": 954.0, "y": 1743.0}, "sw": {"x": 964.0, "y": 1733.0}, "nw": {"x": 964.0, "y": 1743.0}}, "position": {"x": 959.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2590, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112695, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1733.0}, "se": {"x": 968.0, "y": 1743.0}, "sw": {"x": 978.0, "y": 1733.0}, "nw": {"x": 978.0, "y": 1743.0}}, "position": {"x": 973.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2670, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112696, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1733.0}, "se": {"x": 982.0, "y": 1743.0}, "sw": {"x": 992.0, "y": 1733.0}, "nw": {"x": 992.0, "y": 1743.0}}, "position": {"x": 987.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2750, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112697, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1733.0}, "se": {"x": 996.0, "y": 1743.0}, "sw": {"x": 1006.0, "y": 1733.0}, "nw": {"x": 1006.0, "y": 1743.0}}, "position": {"x": 1001.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2830, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112698, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1733.0}, "se": {"x": 1010.0, "y": 1743.0}, "sw": {"x": 1020.0, "y": 1733.0}, "nw": {"x": 1020.0, "y": 1743.0}}, "position": {"x": 1015.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2910, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112729, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1747.0}, "se": {"x": 912.0, "y": 1757.0}, "sw": {"x": 922.0, "y": 1747.0}, "nw": {"x": 922.0, "y": 1757.0}}, "position": {"x": 917.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2349, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112730, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1747.0}, "se": {"x": 926.0, "y": 1757.0}, "sw": {"x": 936.0, "y": 1747.0}, "nw": {"x": 936.0, "y": 1757.0}}, "position": {"x": 931.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2429, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112731, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1747.0}, "se": {"x": 940.0, "y": 1757.0}, "sw": {"x": 950.0, "y": 1747.0}, "nw": {"x": 950.0, "y": 1757.0}}, "position": {"x": 945.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2509, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112732, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1747.0}, "se": {"x": 954.0, "y": 1757.0}, "sw": {"x": 964.0, "y": 1747.0}, "nw": {"x": 964.0, "y": 1757.0}}, "position": {"x": 959.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2589, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112733, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1747.0}, "se": {"x": 968.0, "y": 1757.0}, "sw": {"x": 978.0, "y": 1747.0}, "nw": {"x": 978.0, "y": 1757.0}}, "position": {"x": 973.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2669, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112734, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1747.0}, "se": {"x": 982.0, "y": 1757.0}, "sw": {"x": 992.0, "y": 1747.0}, "nw": {"x": 992.0, "y": 1757.0}}, "position": {"x": 987.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2749, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112735, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1747.0}, "se": {"x": 996.0, "y": 1757.0}, "sw": {"x": 1006.0, "y": 1747.0}, "nw": {"x": 1006.0, "y": 1757.0}}, "position": {"x": 1001.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2829, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112736, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1747.0}, "se": {"x": 1010.0, "y": 1757.0}, "sw": {"x": 1020.0, "y": 1747.0}, "nw": {"x": 1020.0, "y": 1757.0}}, "position": {"x": 1015.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2909, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112767, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1761.0}, "se": {"x": 912.0, "y": 1771.0}, "sw": {"x": 922.0, "y": 1761.0}, "nw": {"x": 922.0, "y": 1771.0}}, "position": {"x": 917.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2348, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112768, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1761.0}, "se": {"x": 926.0, "y": 1771.0}, "sw": {"x": 936.0, "y": 1761.0}, "nw": {"x": 936.0, "y": 1771.0}}, "position": {"x": 931.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2428, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112769, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1761.0}, "se": {"x": 940.0, "y": 1771.0}, "sw": {"x": 950.0, "y": 1761.0}, "nw": {"x": 950.0, "y": 1771.0}}, "position": {"x": 945.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2508, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112770, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1761.0}, "se": {"x": 954.0, "y": 1771.0}, "sw": {"x": 964.0, "y": 1761.0}, "nw": {"x": 964.0, "y": 1771.0}}, "position": {"x": 959.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2588, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112771, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1761.0}, "se": {"x": 968.0, "y": 1771.0}, "sw": {"x": 978.0, "y": 1761.0}, "nw": {"x": 978.0, "y": 1771.0}}, "position": {"x": 973.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2668, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112772, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1761.0}, "se": {"x": 982.0, "y": 1771.0}, "sw": {"x": 992.0, "y": 1761.0}, "nw": {"x": 992.0, "y": 1771.0}}, "position": {"x": 987.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2748, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112773, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1761.0}, "se": {"x": 996.0, "y": 1771.0}, "sw": {"x": 1006.0, "y": 1761.0}, "nw": {"x": 1006.0, "y": 1771.0}}, "position": {"x": 1001.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2828, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112774, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1761.0}, "se": {"x": 1010.0, "y": 1771.0}, "sw": {"x": 1020.0, "y": 1761.0}, "nw": {"x": 1020.0, "y": 1771.0}}, "position": {"x": 1015.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2908, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113151, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1719.0}, "se": {"x": 774.0, "y": 1729.0}, "sw": {"x": 784.0, "y": 1719.0}, "nw": {"x": 784.0, "y": 1729.0}}, "position": {"x": 779.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1654, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113152, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1719.0}, "se": {"x": 788.0, "y": 1729.0}, "sw": {"x": 798.0, "y": 1719.0}, "nw": {"x": 798.0, "y": 1729.0}}, "position": {"x": 793.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1670, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113153, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1719.0}, "se": {"x": 802.0, "y": 1729.0}, "sw": {"x": 812.0, "y": 1719.0}, "nw": {"x": 812.0, "y": 1729.0}}, "position": {"x": 807.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1675, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113154, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1719.0}, "se": {"x": 816.0, "y": 1729.0}, "sw": {"x": 826.0, "y": 1719.0}, "nw": {"x": 826.0, "y": 1729.0}}, "position": {"x": 821.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1680, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113155, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1719.0}, "se": {"x": 830.0, "y": 1729.0}, "sw": {"x": 840.0, "y": 1719.0}, "nw": {"x": 840.0, "y": 1729.0}}, "position": {"x": 835.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1685, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113156, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1719.0}, "se": {"x": 844.0, "y": 1729.0}, "sw": {"x": 854.0, "y": 1719.0}, "nw": {"x": 854.0, "y": 1729.0}}, "position": {"x": 849.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1690, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113157, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1719.0}, "se": {"x": 858.0, "y": 1729.0}, "sw": {"x": 868.0, "y": 1719.0}, "nw": {"x": 868.0, "y": 1729.0}}, "position": {"x": 863.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1759, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113162, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1733.0}, "se": {"x": 774.0, "y": 1743.0}, "sw": {"x": 784.0, "y": 1733.0}, "nw": {"x": 784.0, "y": 1743.0}}, "position": {"x": 779.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1653, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113163, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1733.0}, "se": {"x": 788.0, "y": 1743.0}, "sw": {"x": 798.0, "y": 1733.0}, "nw": {"x": 798.0, "y": 1743.0}}, "position": {"x": 793.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1669, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113164, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1733.0}, "se": {"x": 802.0, "y": 1743.0}, "sw": {"x": 812.0, "y": 1733.0}, "nw": {"x": 812.0, "y": 1743.0}}, "position": {"x": 807.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1674, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113165, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1733.0}, "se": {"x": 816.0, "y": 1743.0}, "sw": {"x": 826.0, "y": 1733.0}, "nw": {"x": 826.0, "y": 1743.0}}, "position": {"x": 821.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1679, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113166, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1733.0}, "se": {"x": 830.0, "y": 1743.0}, "sw": {"x": 840.0, "y": 1733.0}, "nw": {"x": 840.0, "y": 1743.0}}, "position": {"x": 835.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1684, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113167, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1733.0}, "se": {"x": 844.0, "y": 1743.0}, "sw": {"x": 854.0, "y": 1733.0}, "nw": {"x": 854.0, "y": 1743.0}}, "position": {"x": 849.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1689, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113168, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1733.0}, "se": {"x": 858.0, "y": 1743.0}, "sw": {"x": 868.0, "y": 1733.0}, "nw": {"x": 868.0, "y": 1743.0}}, "position": {"x": 863.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1758, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113175, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1747.0}, "se": {"x": 774.0, "y": 1757.0}, "sw": {"x": 784.0, "y": 1747.0}, "nw": {"x": 784.0, "y": 1757.0}}, "position": {"x": 779.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1652, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113176, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1747.0}, "se": {"x": 788.0, "y": 1757.0}, "sw": {"x": 798.0, "y": 1747.0}, "nw": {"x": 798.0, "y": 1757.0}}, "position": {"x": 793.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1668, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113177, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1747.0}, "se": {"x": 802.0, "y": 1757.0}, "sw": {"x": 812.0, "y": 1747.0}, "nw": {"x": 812.0, "y": 1757.0}}, "position": {"x": 807.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1673, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113178, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1747.0}, "se": {"x": 816.0, "y": 1757.0}, "sw": {"x": 826.0, "y": 1747.0}, "nw": {"x": 826.0, "y": 1757.0}}, "position": {"x": 821.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1678, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113179, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1747.0}, "se": {"x": 830.0, "y": 1757.0}, "sw": {"x": 840.0, "y": 1747.0}, "nw": {"x": 840.0, "y": 1757.0}}, "position": {"x": 835.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1683, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113180, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1747.0}, "se": {"x": 844.0, "y": 1757.0}, "sw": {"x": 854.0, "y": 1747.0}, "nw": {"x": 854.0, "y": 1757.0}}, "position": {"x": 849.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1688, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113181, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1747.0}, "se": {"x": 858.0, "y": 1757.0}, "sw": {"x": 868.0, "y": 1747.0}, "nw": {"x": 868.0, "y": 1757.0}}, "position": {"x": 863.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1757, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113189, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1761.0}, "se": {"x": 774.0, "y": 1771.0}, "sw": {"x": 784.0, "y": 1761.0}, "nw": {"x": 784.0, "y": 1771.0}}, "position": {"x": 779.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1651, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113190, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1761.0}, "se": {"x": 788.0, "y": 1771.0}, "sw": {"x": 798.0, "y": 1761.0}, "nw": {"x": 798.0, "y": 1771.0}}, "position": {"x": 793.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1667, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113191, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1761.0}, "se": {"x": 802.0, "y": 1771.0}, "sw": {"x": 812.0, "y": 1761.0}, "nw": {"x": 812.0, "y": 1771.0}}, "position": {"x": 807.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1672, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113192, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1761.0}, "se": {"x": 816.0, "y": 1771.0}, "sw": {"x": 826.0, "y": 1761.0}, "nw": {"x": 826.0, "y": 1771.0}}, "position": {"x": 821.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1677, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113193, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1761.0}, "se": {"x": 830.0, "y": 1771.0}, "sw": {"x": 840.0, "y": 1761.0}, "nw": {"x": 840.0, "y": 1771.0}}, "position": {"x": 835.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1682, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113194, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1761.0}, "se": {"x": 844.0, "y": 1771.0}, "sw": {"x": 854.0, "y": 1761.0}, "nw": {"x": 854.0, "y": 1771.0}}, "position": {"x": 849.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1687, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113195, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1761.0}, "se": {"x": 858.0, "y": 1771.0}, "sw": {"x": 868.0, "y": 1761.0}, "nw": {"x": 868.0, "y": 1771.0}}, "position": {"x": 863.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1756, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "5:4": [{"logicalSeatId": 1537115640, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1189.0}, "se": {"x": 1281.0, "y": 1199.0}, "sw": {"x": 1291.0, "y": 1189.0}, "nw": {"x": 1291.0, "y": 1199.0}}, "position": {"x": 1286.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115641, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1189.0}, "se": {"x": 1295.0, "y": 1199.0}, "sw": {"x": 1305.0, "y": 1189.0}, "nw": {"x": 1305.0, "y": 1199.0}}, "position": {"x": 1300.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115642, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1189.0}, "se": {"x": 1309.0, "y": 1199.0}, "sw": {"x": 1319.0, "y": 1189.0}, "nw": {"x": 1319.0, "y": 1199.0}}, "position": {"x": 1314.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115643, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1189.0}, "se": {"x": 1323.0, "y": 1199.0}, "sw": {"x": 1333.0, "y": 1189.0}, "nw": {"x": 1333.0, "y": 1199.0}}, "position": {"x": 1328.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115644, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1189.0}, "se": {"x": 1337.0, "y": 1199.0}, "sw": {"x": 1347.0, "y": 1189.0}, "nw": {"x": 1347.0, "y": 1199.0}}, "position": {"x": 1342.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115645, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1189.0}, "se": {"x": 1351.0, "y": 1199.0}, "sw": {"x": 1361.0, "y": 1189.0}, "nw": {"x": 1361.0, "y": 1199.0}}, "position": {"x": 1356.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115646, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1189.0}, "se": {"x": 1365.0, "y": 1199.0}, "sw": {"x": 1375.0, "y": 1189.0}, "nw": {"x": 1375.0, "y": 1199.0}}, "position": {"x": 1370.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115647, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1189.0}, "se": {"x": 1379.0, "y": 1199.0}, "sw": {"x": 1389.0, "y": 1189.0}, "nw": {"x": 1389.0, "y": 1199.0}}, "position": {"x": 1384.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115650, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1203.0}, "se": {"x": 1281.0, "y": 1213.0}, "sw": {"x": 1291.0, "y": 1203.0}, "nw": {"x": 1291.0, "y": 1213.0}}, "position": {"x": 1286.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115651, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1203.0}, "se": {"x": 1295.0, "y": 1213.0}, "sw": {"x": 1305.0, "y": 1203.0}, "nw": {"x": 1305.0, "y": 1213.0}}, "position": {"x": 1300.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115652, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1203.0}, "se": {"x": 1309.0, "y": 1213.0}, "sw": {"x": 1319.0, "y": 1203.0}, "nw": {"x": 1319.0, "y": 1213.0}}, "position": {"x": 1314.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115653, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1203.0}, "se": {"x": 1323.0, "y": 1213.0}, "sw": {"x": 1333.0, "y": 1203.0}, "nw": {"x": 1333.0, "y": 1213.0}}, "position": {"x": 1328.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115654, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1203.0}, "se": {"x": 1337.0, "y": 1213.0}, "sw": {"x": 1347.0, "y": 1203.0}, "nw": {"x": 1347.0, "y": 1213.0}}, "position": {"x": 1342.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115655, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1203.0}, "se": {"x": 1351.0, "y": 1213.0}, "sw": {"x": 1361.0, "y": 1203.0}, "nw": {"x": 1361.0, "y": 1213.0}}, "position": {"x": 1356.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115656, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1203.0}, "se": {"x": 1365.0, "y": 1213.0}, "sw": {"x": 1375.0, "y": 1203.0}, "nw": {"x": 1375.0, "y": 1213.0}}, "position": {"x": 1370.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115657, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1203.0}, "se": {"x": 1379.0, "y": 1213.0}, "sw": {"x": 1389.0, "y": 1203.0}, "nw": {"x": 1389.0, "y": 1213.0}}, "position": {"x": 1384.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115660, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1217.0}, "se": {"x": 1281.0, "y": 1227.0}, "sw": {"x": 1291.0, "y": 1217.0}, "nw": {"x": 1291.0, "y": 1227.0}}, "position": {"x": 1286.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115661, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1217.0}, "se": {"x": 1295.0, "y": 1227.0}, "sw": {"x": 1305.0, "y": 1217.0}, "nw": {"x": 1305.0, "y": 1227.0}}, "position": {"x": 1300.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115662, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1217.0}, "se": {"x": 1309.0, "y": 1227.0}, "sw": {"x": 1319.0, "y": 1217.0}, "nw": {"x": 1319.0, "y": 1227.0}}, "position": {"x": 1314.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115663, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1217.0}, "se": {"x": 1323.0, "y": 1227.0}, "sw": {"x": 1333.0, "y": 1217.0}, "nw": {"x": 1333.0, "y": 1227.0}}, "position": {"x": 1328.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115664, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1217.0}, "se": {"x": 1337.0, "y": 1227.0}, "sw": {"x": 1347.0, "y": 1217.0}, "nw": {"x": 1347.0, "y": 1227.0}}, "position": {"x": 1342.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115665, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1217.0}, "se": {"x": 1351.0, "y": 1227.0}, "sw": {"x": 1361.0, "y": 1217.0}, "nw": {"x": 1361.0, "y": 1227.0}}, "position": {"x": 1356.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115666, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1217.0}, "se": {"x": 1365.0, "y": 1227.0}, "sw": {"x": 1375.0, "y": 1217.0}, "nw": {"x": 1375.0, "y": 1227.0}}, "position": {"x": 1370.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115667, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1217.0}, "se": {"x": 1379.0, "y": 1227.0}, "sw": {"x": 1389.0, "y": 1217.0}, "nw": {"x": 1389.0, "y": 1227.0}}, "position": {"x": 1384.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115670, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1231.0}, "se": {"x": 1281.0, "y": 1241.0}, "sw": {"x": 1291.0, "y": 1231.0}, "nw": {"x": 1291.0, "y": 1241.0}}, "position": {"x": 1286.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115671, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1231.0}, "se": {"x": 1295.0, "y": 1241.0}, "sw": {"x": 1305.0, "y": 1231.0}, "nw": {"x": 1305.0, "y": 1241.0}}, "position": {"x": 1300.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115672, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1231.0}, "se": {"x": 1309.0, "y": 1241.0}, "sw": {"x": 1319.0, "y": 1231.0}, "nw": {"x": 1319.0, "y": 1241.0}}, "position": {"x": 1314.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115673, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1231.0}, "se": {"x": 1323.0, "y": 1241.0}, "sw": {"x": 1333.0, "y": 1231.0}, "nw": {"x": 1333.0, "y": 1241.0}}, "position": {"x": 1328.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115674, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1231.0}, "se": {"x": 1337.0, "y": 1241.0}, "sw": {"x": 1347.0, "y": 1231.0}, "nw": {"x": 1347.0, "y": 1241.0}}, "position": {"x": 1342.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115675, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1231.0}, "se": {"x": 1351.0, "y": 1241.0}, "sw": {"x": 1361.0, "y": 1231.0}, "nw": {"x": 1361.0, "y": 1241.0}}, "position": {"x": 1356.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115676, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1231.0}, "se": {"x": 1365.0, "y": 1241.0}, "sw": {"x": 1375.0, "y": 1231.0}, "nw": {"x": 1375.0, "y": 1241.0}}, "position": {"x": 1370.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115677, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1231.0}, "se": {"x": 1379.0, "y": 1241.0}, "sw": {"x": 1389.0, "y": 1231.0}, "nw": {"x": 1389.0, "y": 1241.0}}, "position": {"x": 1384.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115680, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1245.0}, "se": {"x": 1281.0, "y": 1255.0}, "sw": {"x": 1291.0, "y": 1245.0}, "nw": {"x": 1291.0, "y": 1255.0}}, "position": {"x": 1286.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115681, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1245.0}, "se": {"x": 1295.0, "y": 1255.0}, "sw": {"x": 1305.0, "y": 1245.0}, "nw": {"x": 1305.0, "y": 1255.0}}, "position": {"x": 1300.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115682, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1245.0}, "se": {"x": 1309.0, "y": 1255.0}, "sw": {"x": 1319.0, "y": 1245.0}, "nw": {"x": 1319.0, "y": 1255.0}}, "position": {"x": 1314.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115683, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1245.0}, "se": {"x": 1323.0, "y": 1255.0}, "sw": {"x": 1333.0, "y": 1245.0}, "nw": {"x": 1333.0, "y": 1255.0}}, "position": {"x": 1328.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115684, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1245.0}, "se": {"x": 1337.0, "y": 1255.0}, "sw": {"x": 1347.0, "y": 1245.0}, "nw": {"x": 1347.0, "y": 1255.0}}, "position": {"x": 1342.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115685, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1245.0}, "se": {"x": 1351.0, "y": 1255.0}, "sw": {"x": 1361.0, "y": 1245.0}, "nw": {"x": 1361.0, "y": 1255.0}}, "position": {"x": 1356.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115686, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1245.0}, "se": {"x": 1365.0, "y": 1255.0}, "sw": {"x": 1375.0, "y": 1245.0}, "nw": {"x": 1375.0, "y": 1255.0}}, "position": {"x": 1370.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115687, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1245.0}, "se": {"x": 1379.0, "y": 1255.0}, "sw": {"x": 1389.0, "y": 1245.0}, "nw": {"x": 1389.0, "y": 1255.0}}, "position": {"x": 1384.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115690, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1259.0}, "se": {"x": 1281.0, "y": 1269.0}, "sw": {"x": 1291.0, "y": 1259.0}, "nw": {"x": 1291.0, "y": 1269.0}}, "position": {"x": 1286.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115691, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1259.0}, "se": {"x": 1295.0, "y": 1269.0}, "sw": {"x": 1305.0, "y": 1259.0}, "nw": {"x": 1305.0, "y": 1269.0}}, "position": {"x": 1300.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115692, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1259.0}, "se": {"x": 1309.0, "y": 1269.0}, "sw": {"x": 1319.0, "y": 1259.0}, "nw": {"x": 1319.0, "y": 1269.0}}, "position": {"x": 1314.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115693, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1259.0}, "se": {"x": 1323.0, "y": 1269.0}, "sw": {"x": 1333.0, "y": 1259.0}, "nw": {"x": 1333.0, "y": 1269.0}}, "position": {"x": 1328.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115694, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1259.0}, "se": {"x": 1337.0, "y": 1269.0}, "sw": {"x": 1347.0, "y": 1259.0}, "nw": {"x": 1347.0, "y": 1269.0}}, "position": {"x": 1342.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115695, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1259.0}, "se": {"x": 1351.0, "y": 1269.0}, "sw": {"x": 1361.0, "y": 1259.0}, "nw": {"x": 1361.0, "y": 1269.0}}, "position": {"x": 1356.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115696, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1259.0}, "se": {"x": 1365.0, "y": 1269.0}, "sw": {"x": 1375.0, "y": 1259.0}, "nw": {"x": 1375.0, "y": 1269.0}}, "position": {"x": 1370.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115697, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1259.0}, "se": {"x": 1379.0, "y": 1269.0}, "sw": {"x": 1389.0, "y": 1259.0}, "nw": {"x": 1389.0, "y": 1269.0}}, "position": {"x": 1384.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115700, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1273.0}, "se": {"x": 1281.0, "y": 1283.0}, "sw": {"x": 1291.0, "y": 1273.0}, "nw": {"x": 1291.0, "y": 1283.0}}, "position": {"x": 1286.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115701, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1273.0}, "se": {"x": 1295.0, "y": 1283.0}, "sw": {"x": 1305.0, "y": 1273.0}, "nw": {"x": 1305.0, "y": 1283.0}}, "position": {"x": 1300.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115702, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1273.0}, "se": {"x": 1309.0, "y": 1283.0}, "sw": {"x": 1319.0, "y": 1273.0}, "nw": {"x": 1319.0, "y": 1283.0}}, "position": {"x": 1314.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115703, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1273.0}, "se": {"x": 1323.0, "y": 1283.0}, "sw": {"x": 1333.0, "y": 1273.0}, "nw": {"x": 1333.0, "y": 1283.0}}, "position": {"x": 1328.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115704, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1273.0}, "se": {"x": 1337.0, "y": 1283.0}, "sw": {"x": 1347.0, "y": 1273.0}, "nw": {"x": 1347.0, "y": 1283.0}}, "position": {"x": 1342.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115705, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1273.0}, "se": {"x": 1351.0, "y": 1283.0}, "sw": {"x": 1361.0, "y": 1273.0}, "nw": {"x": 1361.0, "y": 1283.0}}, "position": {"x": 1356.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115706, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1273.0}, "se": {"x": 1365.0, "y": 1283.0}, "sw": {"x": 1375.0, "y": 1273.0}, "nw": {"x": 1375.0, "y": 1283.0}}, "position": {"x": 1370.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115707, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1273.0}, "se": {"x": 1379.0, "y": 1283.0}, "sw": {"x": 1389.0, "y": 1273.0}, "nw": {"x": 1389.0, "y": 1283.0}}, "position": {"x": 1384.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115758, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1189.0}, "se": {"x": 1465.0, "y": 1199.0}, "sw": {"x": 1475.0, "y": 1189.0}, "nw": {"x": 1475.0, "y": 1199.0}}, "position": {"x": 1470.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115759, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1189.0}, "se": {"x": 1479.0, "y": 1199.0}, "sw": {"x": 1489.0, "y": 1189.0}, "nw": {"x": 1489.0, "y": 1199.0}}, "position": {"x": 1484.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115760, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1189.0}, "se": {"x": 1493.0, "y": 1199.0}, "sw": {"x": 1503.0, "y": 1189.0}, "nw": {"x": 1503.0, "y": 1199.0}}, "position": {"x": 1498.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115761, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1189.0}, "se": {"x": 1507.0, "y": 1199.0}, "sw": {"x": 1517.0, "y": 1189.0}, "nw": {"x": 1517.0, "y": 1199.0}}, "position": {"x": 1512.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115762, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1189.0}, "se": {"x": 1521.0, "y": 1199.0}, "sw": {"x": 1531.0, "y": 1189.0}, "nw": {"x": 1531.0, "y": 1199.0}}, "position": {"x": 1526.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115768, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1203.0}, "se": {"x": 1465.0, "y": 1213.0}, "sw": {"x": 1475.0, "y": 1203.0}, "nw": {"x": 1475.0, "y": 1213.0}}, "position": {"x": 1470.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115769, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1203.0}, "se": {"x": 1479.0, "y": 1213.0}, "sw": {"x": 1489.0, "y": 1203.0}, "nw": {"x": 1489.0, "y": 1213.0}}, "position": {"x": 1484.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115770, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1203.0}, "se": {"x": 1493.0, "y": 1213.0}, "sw": {"x": 1503.0, "y": 1203.0}, "nw": {"x": 1503.0, "y": 1213.0}}, "position": {"x": 1498.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115771, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1203.0}, "se": {"x": 1507.0, "y": 1213.0}, "sw": {"x": 1517.0, "y": 1203.0}, "nw": {"x": 1517.0, "y": 1213.0}}, "position": {"x": 1512.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115772, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1203.0}, "se": {"x": 1521.0, "y": 1213.0}, "sw": {"x": 1531.0, "y": 1203.0}, "nw": {"x": 1531.0, "y": 1213.0}}, "position": {"x": 1526.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115778, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1217.0}, "se": {"x": 1465.0, "y": 1227.0}, "sw": {"x": 1475.0, "y": 1217.0}, "nw": {"x": 1475.0, "y": 1227.0}}, "position": {"x": 1470.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115779, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1217.0}, "se": {"x": 1479.0, "y": 1227.0}, "sw": {"x": 1489.0, "y": 1217.0}, "nw": {"x": 1489.0, "y": 1227.0}}, "position": {"x": 1484.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115780, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1217.0}, "se": {"x": 1493.0, "y": 1227.0}, "sw": {"x": 1503.0, "y": 1217.0}, "nw": {"x": 1503.0, "y": 1227.0}}, "position": {"x": 1498.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115781, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1217.0}, "se": {"x": 1507.0, "y": 1227.0}, "sw": {"x": 1517.0, "y": 1217.0}, "nw": {"x": 1517.0, "y": 1227.0}}, "position": {"x": 1512.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115782, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1217.0}, "se": {"x": 1521.0, "y": 1227.0}, "sw": {"x": 1531.0, "y": 1217.0}, "nw": {"x": 1531.0, "y": 1227.0}}, "position": {"x": 1526.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115788, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1231.0}, "se": {"x": 1465.0, "y": 1241.0}, "sw": {"x": 1475.0, "y": 1231.0}, "nw": {"x": 1475.0, "y": 1241.0}}, "position": {"x": 1470.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115789, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1231.0}, "se": {"x": 1479.0, "y": 1241.0}, "sw": {"x": 1489.0, "y": 1231.0}, "nw": {"x": 1489.0, "y": 1241.0}}, "position": {"x": 1484.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115790, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1231.0}, "se": {"x": 1493.0, "y": 1241.0}, "sw": {"x": 1503.0, "y": 1231.0}, "nw": {"x": 1503.0, "y": 1241.0}}, "position": {"x": 1498.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115791, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1231.0}, "se": {"x": 1507.0, "y": 1241.0}, "sw": {"x": 1517.0, "y": 1231.0}, "nw": {"x": 1517.0, "y": 1241.0}}, "position": {"x": 1512.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115792, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1231.0}, "se": {"x": 1521.0, "y": 1241.0}, "sw": {"x": 1531.0, "y": 1231.0}, "nw": {"x": 1531.0, "y": 1241.0}}, "position": {"x": 1526.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115798, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1245.0}, "se": {"x": 1465.0, "y": 1255.0}, "sw": {"x": 1475.0, "y": 1245.0}, "nw": {"x": 1475.0, "y": 1255.0}}, "position": {"x": 1470.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115799, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1245.0}, "se": {"x": 1479.0, "y": 1255.0}, "sw": {"x": 1489.0, "y": 1245.0}, "nw": {"x": 1489.0, "y": 1255.0}}, "position": {"x": 1484.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115800, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1245.0}, "se": {"x": 1493.0, "y": 1255.0}, "sw": {"x": 1503.0, "y": 1245.0}, "nw": {"x": 1503.0, "y": 1255.0}}, "position": {"x": 1498.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115801, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1245.0}, "se": {"x": 1507.0, "y": 1255.0}, "sw": {"x": 1517.0, "y": 1245.0}, "nw": {"x": 1517.0, "y": 1255.0}}, "position": {"x": 1512.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115802, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1245.0}, "se": {"x": 1521.0, "y": 1255.0}, "sw": {"x": 1531.0, "y": 1245.0}, "nw": {"x": 1531.0, "y": 1255.0}}, "position": {"x": 1526.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115808, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1259.0}, "se": {"x": 1465.0, "y": 1269.0}, "sw": {"x": 1475.0, "y": 1259.0}, "nw": {"x": 1475.0, "y": 1269.0}}, "position": {"x": 1470.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115809, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1259.0}, "se": {"x": 1479.0, "y": 1269.0}, "sw": {"x": 1489.0, "y": 1259.0}, "nw": {"x": 1489.0, "y": 1269.0}}, "position": {"x": 1484.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115810, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1259.0}, "se": {"x": 1493.0, "y": 1269.0}, "sw": {"x": 1503.0, "y": 1259.0}, "nw": {"x": 1503.0, "y": 1269.0}}, "position": {"x": 1498.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115811, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1259.0}, "se": {"x": 1507.0, "y": 1269.0}, "sw": {"x": 1517.0, "y": 1259.0}, "nw": {"x": 1517.0, "y": 1269.0}}, "position": {"x": 1512.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115812, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1259.0}, "se": {"x": 1521.0, "y": 1269.0}, "sw": {"x": 1531.0, "y": 1259.0}, "nw": {"x": 1531.0, "y": 1269.0}}, "position": {"x": 1526.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115818, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1273.0}, "se": {"x": 1465.0, "y": 1283.0}, "sw": {"x": 1475.0, "y": 1273.0}, "nw": {"x": 1475.0, "y": 1283.0}}, "position": {"x": 1470.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115819, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1273.0}, "se": {"x": 1479.0, "y": 1283.0}, "sw": {"x": 1489.0, "y": 1273.0}, "nw": {"x": 1489.0, "y": 1283.0}}, "position": {"x": 1484.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115820, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1273.0}, "se": {"x": 1493.0, "y": 1283.0}, "sw": {"x": 1503.0, "y": 1273.0}, "nw": {"x": 1503.0, "y": 1283.0}}, "position": {"x": 1498.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115821, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1273.0}, "se": {"x": 1507.0, "y": 1283.0}, "sw": {"x": 1517.0, "y": 1273.0}, "nw": {"x": 1517.0, "y": 1283.0}}, "position": {"x": 1512.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115822, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1273.0}, "se": {"x": 1521.0, "y": 1283.0}, "sw": {"x": 1531.0, "y": 1273.0}, "nw": {"x": 1531.0, "y": 1283.0}}, "position": {"x": 1526.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "2:7": [{"logicalSeatId": 1537113210, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1803.0}, "se": {"x": 676.0, "y": 1813.0}, "sw": {"x": 686.0, "y": 1803.0}, "nw": {"x": 686.0, "y": 1813.0}}, "position": {"x": 681.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1124, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113211, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1803.0}, "se": {"x": 690.0, "y": 1813.0}, "sw": {"x": 700.0, "y": 1803.0}, "nw": {"x": 700.0, "y": 1813.0}}, "position": {"x": 695.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1135, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113212, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1803.0}, "se": {"x": 704.0, "y": 1813.0}, "sw": {"x": 714.0, "y": 1803.0}, "nw": {"x": 714.0, "y": 1813.0}}, "position": {"x": 709.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1146, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113213, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1803.0}, "se": {"x": 718.0, "y": 1813.0}, "sw": {"x": 728.0, "y": 1803.0}, "nw": {"x": 728.0, "y": 1813.0}}, "position": {"x": 723.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1157, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113214, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1803.0}, "se": {"x": 732.0, "y": 1813.0}, "sw": {"x": 742.0, "y": 1803.0}, "nw": {"x": 742.0, "y": 1813.0}}, "position": {"x": 737.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1178, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113215, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1803.0}, "se": {"x": 746.0, "y": 1813.0}, "sw": {"x": 756.0, "y": 1803.0}, "nw": {"x": 756.0, "y": 1813.0}}, "position": {"x": 751.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1266, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113216, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1803.0}, "se": {"x": 760.0, "y": 1813.0}, "sw": {"x": 770.0, "y": 1803.0}, "nw": {"x": 770.0, "y": 1813.0}}, "position": {"x": 765.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1375, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113225, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1817.0}, "se": {"x": 662.0, "y": 1827.0}, "sw": {"x": 672.0, "y": 1817.0}, "nw": {"x": 672.0, "y": 1827.0}}, "position": {"x": 667.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1114, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113226, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1817.0}, "se": {"x": 676.0, "y": 1827.0}, "sw": {"x": 686.0, "y": 1817.0}, "nw": {"x": 686.0, "y": 1827.0}}, "position": {"x": 681.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1123, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113227, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1817.0}, "se": {"x": 690.0, "y": 1827.0}, "sw": {"x": 700.0, "y": 1817.0}, "nw": {"x": 700.0, "y": 1827.0}}, "position": {"x": 695.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1134, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113228, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1817.0}, "se": {"x": 704.0, "y": 1827.0}, "sw": {"x": 714.0, "y": 1817.0}, "nw": {"x": 714.0, "y": 1827.0}}, "position": {"x": 709.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1145, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113229, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1817.0}, "se": {"x": 718.0, "y": 1827.0}, "sw": {"x": 728.0, "y": 1817.0}, "nw": {"x": 728.0, "y": 1827.0}}, "position": {"x": 723.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1156, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113230, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1817.0}, "se": {"x": 732.0, "y": 1827.0}, "sw": {"x": 742.0, "y": 1817.0}, "nw": {"x": 742.0, "y": 1827.0}}, "position": {"x": 737.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1177, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113231, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1817.0}, "se": {"x": 746.0, "y": 1827.0}, "sw": {"x": 756.0, "y": 1817.0}, "nw": {"x": 756.0, "y": 1827.0}}, "position": {"x": 751.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1265, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113232, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1817.0}, "se": {"x": 760.0, "y": 1827.0}, "sw": {"x": 770.0, "y": 1817.0}, "nw": {"x": 770.0, "y": 1827.0}}, "position": {"x": 765.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1374, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113242, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1831.0}, "se": {"x": 662.0, "y": 1841.0}, "sw": {"x": 672.0, "y": 1831.0}, "nw": {"x": 672.0, "y": 1841.0}}, "position": {"x": 667.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1113, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113243, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1831.0}, "se": {"x": 676.0, "y": 1841.0}, "sw": {"x": 686.0, "y": 1831.0}, "nw": {"x": 686.0, "y": 1841.0}}, "position": {"x": 681.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1122, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113244, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1831.0}, "se": {"x": 690.0, "y": 1841.0}, "sw": {"x": 700.0, "y": 1831.0}, "nw": {"x": 700.0, "y": 1841.0}}, "position": {"x": 695.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1133, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113245, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1831.0}, "se": {"x": 704.0, "y": 1841.0}, "sw": {"x": 714.0, "y": 1831.0}, "nw": {"x": 714.0, "y": 1841.0}}, "position": {"x": 709.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1144, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113246, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1831.0}, "se": {"x": 718.0, "y": 1841.0}, "sw": {"x": 728.0, "y": 1831.0}, "nw": {"x": 728.0, "y": 1841.0}}, "position": {"x": 723.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1155, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113247, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1831.0}, "se": {"x": 732.0, "y": 1841.0}, "sw": {"x": 742.0, "y": 1831.0}, "nw": {"x": 742.0, "y": 1841.0}}, "position": {"x": 737.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1176, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113248, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1831.0}, "se": {"x": 746.0, "y": 1841.0}, "sw": {"x": 756.0, "y": 1831.0}, "nw": {"x": 756.0, "y": 1841.0}}, "position": {"x": 751.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1264, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113249, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1831.0}, "se": {"x": 760.0, "y": 1841.0}, "sw": {"x": 770.0, "y": 1831.0}, "nw": {"x": 770.0, "y": 1841.0}}, "position": {"x": 765.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1373, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113259, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1845.0}, "se": {"x": 648.0, "y": 1855.0}, "sw": {"x": 658.0, "y": 1845.0}, "nw": {"x": 658.0, "y": 1855.0}}, "position": {"x": 653.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1105, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113260, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1845.0}, "se": {"x": 662.0, "y": 1855.0}, "sw": {"x": 672.0, "y": 1845.0}, "nw": {"x": 672.0, "y": 1855.0}}, "position": {"x": 667.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1112, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113261, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1845.0}, "se": {"x": 676.0, "y": 1855.0}, "sw": {"x": 686.0, "y": 1845.0}, "nw": {"x": 686.0, "y": 1855.0}}, "position": {"x": 681.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1121, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113262, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1845.0}, "se": {"x": 690.0, "y": 1855.0}, "sw": {"x": 700.0, "y": 1845.0}, "nw": {"x": 700.0, "y": 1855.0}}, "position": {"x": 695.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1132, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113263, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1845.0}, "se": {"x": 704.0, "y": 1855.0}, "sw": {"x": 714.0, "y": 1845.0}, "nw": {"x": 714.0, "y": 1855.0}}, "position": {"x": 709.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1143, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113264, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1845.0}, "se": {"x": 718.0, "y": 1855.0}, "sw": {"x": 728.0, "y": 1845.0}, "nw": {"x": 728.0, "y": 1855.0}}, "position": {"x": 723.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1154, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113265, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1845.0}, "se": {"x": 732.0, "y": 1855.0}, "sw": {"x": 742.0, "y": 1845.0}, "nw": {"x": 742.0, "y": 1855.0}}, "position": {"x": 737.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1175, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113266, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1845.0}, "se": {"x": 746.0, "y": 1855.0}, "sw": {"x": 756.0, "y": 1845.0}, "nw": {"x": 756.0, "y": 1855.0}}, "position": {"x": 751.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1263, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113267, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1845.0}, "se": {"x": 760.0, "y": 1855.0}, "sw": {"x": 770.0, "y": 1845.0}, "nw": {"x": 770.0, "y": 1855.0}}, "position": {"x": 765.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1372, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113278, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1859.0}, "se": {"x": 634.0, "y": 1869.0}, "sw": {"x": 644.0, "y": 1859.0}, "nw": {"x": 644.0, "y": 1869.0}}, "position": {"x": 639.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1096, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113279, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1859.0}, "se": {"x": 648.0, "y": 1869.0}, "sw": {"x": 658.0, "y": 1859.0}, "nw": {"x": 658.0, "y": 1869.0}}, "position": {"x": 653.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1104, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113280, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1859.0}, "se": {"x": 662.0, "y": 1869.0}, "sw": {"x": 672.0, "y": 1859.0}, "nw": {"x": 672.0, "y": 1869.0}}, "position": {"x": 667.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1111, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113281, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1859.0}, "se": {"x": 676.0, "y": 1869.0}, "sw": {"x": 686.0, "y": 1859.0}, "nw": {"x": 686.0, "y": 1869.0}}, "position": {"x": 681.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1120, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113282, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1859.0}, "se": {"x": 690.0, "y": 1869.0}, "sw": {"x": 700.0, "y": 1859.0}, "nw": {"x": 700.0, "y": 1869.0}}, "position": {"x": 695.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1131, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113283, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1859.0}, "se": {"x": 704.0, "y": 1869.0}, "sw": {"x": 714.0, "y": 1859.0}, "nw": {"x": 714.0, "y": 1869.0}}, "position": {"x": 709.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1142, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113284, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1859.0}, "se": {"x": 718.0, "y": 1869.0}, "sw": {"x": 728.0, "y": 1859.0}, "nw": {"x": 728.0, "y": 1869.0}}, "position": {"x": 723.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1153, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113285, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1859.0}, "se": {"x": 732.0, "y": 1869.0}, "sw": {"x": 742.0, "y": 1859.0}, "nw": {"x": 742.0, "y": 1869.0}}, "position": {"x": 737.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1174, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113286, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1859.0}, "se": {"x": 746.0, "y": 1869.0}, "sw": {"x": 756.0, "y": 1859.0}, "nw": {"x": 756.0, "y": 1869.0}}, "position": {"x": 751.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1262, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113287, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1859.0}, "se": {"x": 760.0, "y": 1869.0}, "sw": {"x": 770.0, "y": 1859.0}, "nw": {"x": 770.0, "y": 1869.0}}, "position": {"x": 765.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1371, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113303, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1873.0}, "se": {"x": 634.0, "y": 1883.0}, "sw": {"x": 644.0, "y": 1873.0}, "nw": {"x": 644.0, "y": 1883.0}}, "position": {"x": 639.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1095, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113304, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1873.0}, "se": {"x": 648.0, "y": 1883.0}, "sw": {"x": 658.0, "y": 1873.0}, "nw": {"x": 658.0, "y": 1883.0}}, "position": {"x": 653.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1103, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113305, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1873.0}, "se": {"x": 662.0, "y": 1883.0}, "sw": {"x": 672.0, "y": 1873.0}, "nw": {"x": 672.0, "y": 1883.0}}, "position": {"x": 667.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1110, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113306, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1873.0}, "se": {"x": 676.0, "y": 1883.0}, "sw": {"x": 686.0, "y": 1873.0}, "nw": {"x": 686.0, "y": 1883.0}}, "position": {"x": 681.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1119, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113307, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1873.0}, "se": {"x": 690.0, "y": 1883.0}, "sw": {"x": 700.0, "y": 1873.0}, "nw": {"x": 700.0, "y": 1883.0}}, "position": {"x": 695.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1130, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113308, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1873.0}, "se": {"x": 704.0, "y": 1883.0}, "sw": {"x": 714.0, "y": 1873.0}, "nw": {"x": 714.0, "y": 1883.0}}, "position": {"x": 709.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1141, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113309, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1873.0}, "se": {"x": 718.0, "y": 1883.0}, "sw": {"x": 728.0, "y": 1873.0}, "nw": {"x": 728.0, "y": 1883.0}}, "position": {"x": 723.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1152, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113310, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1873.0}, "se": {"x": 732.0, "y": 1883.0}, "sw": {"x": 742.0, "y": 1873.0}, "nw": {"x": 742.0, "y": 1883.0}}, "position": {"x": 737.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1173, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113311, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1873.0}, "se": {"x": 746.0, "y": 1883.0}, "sw": {"x": 756.0, "y": 1873.0}, "nw": {"x": 756.0, "y": 1883.0}}, "position": {"x": 751.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1261, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113312, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1873.0}, "se": {"x": 760.0, "y": 1883.0}, "sw": {"x": 770.0, "y": 1873.0}, "nw": {"x": 770.0, "y": 1883.0}}, "position": {"x": 765.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1370, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113328, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1887.0}, "se": {"x": 620.0, "y": 1897.0}, "sw": {"x": 630.0, "y": 1887.0}, "nw": {"x": 630.0, "y": 1897.0}}, "position": {"x": 625.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1088, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113329, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1887.0}, "se": {"x": 634.0, "y": 1897.0}, "sw": {"x": 644.0, "y": 1887.0}, "nw": {"x": 644.0, "y": 1897.0}}, "position": {"x": 639.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1094, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113330, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1887.0}, "se": {"x": 648.0, "y": 1897.0}, "sw": {"x": 658.0, "y": 1887.0}, "nw": {"x": 658.0, "y": 1897.0}}, "position": {"x": 653.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1102, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113331, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1887.0}, "se": {"x": 662.0, "y": 1897.0}, "sw": {"x": 672.0, "y": 1887.0}, "nw": {"x": 672.0, "y": 1897.0}}, "position": {"x": 667.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1109, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113332, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1887.0}, "se": {"x": 676.0, "y": 1897.0}, "sw": {"x": 686.0, "y": 1887.0}, "nw": {"x": 686.0, "y": 1897.0}}, "position": {"x": 681.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1118, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113333, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1887.0}, "se": {"x": 690.0, "y": 1897.0}, "sw": {"x": 700.0, "y": 1887.0}, "nw": {"x": 700.0, "y": 1897.0}}, "position": {"x": 695.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1129, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113334, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1887.0}, "se": {"x": 704.0, "y": 1897.0}, "sw": {"x": 714.0, "y": 1887.0}, "nw": {"x": 714.0, "y": 1897.0}}, "position": {"x": 709.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1140, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113335, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1887.0}, "se": {"x": 718.0, "y": 1897.0}, "sw": {"x": 728.0, "y": 1887.0}, "nw": {"x": 728.0, "y": 1897.0}}, "position": {"x": 723.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1151, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113336, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1887.0}, "se": {"x": 732.0, "y": 1897.0}, "sw": {"x": 742.0, "y": 1887.0}, "nw": {"x": 742.0, "y": 1897.0}}, "position": {"x": 737.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1172, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113337, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1887.0}, "se": {"x": 746.0, "y": 1897.0}, "sw": {"x": 756.0, "y": 1887.0}, "nw": {"x": 756.0, "y": 1897.0}}, "position": {"x": 751.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1260, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113338, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1887.0}, "se": {"x": 760.0, "y": 1897.0}, "sw": {"x": 770.0, "y": 1887.0}, "nw": {"x": 770.0, "y": 1897.0}}, "position": {"x": 765.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1369, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113355, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1901.0}, "se": {"x": 606.0, "y": 1911.0}, "sw": {"x": 616.0, "y": 1901.0}, "nw": {"x": 616.0, "y": 1911.0}}, "position": {"x": 611.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1081, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113356, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1901.0}, "se": {"x": 620.0, "y": 1911.0}, "sw": {"x": 630.0, "y": 1901.0}, "nw": {"x": 630.0, "y": 1911.0}}, "position": {"x": 625.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1087, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113357, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1901.0}, "se": {"x": 634.0, "y": 1911.0}, "sw": {"x": 644.0, "y": 1901.0}, "nw": {"x": 644.0, "y": 1911.0}}, "position": {"x": 639.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1093, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113358, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1901.0}, "se": {"x": 648.0, "y": 1911.0}, "sw": {"x": 658.0, "y": 1901.0}, "nw": {"x": 658.0, "y": 1911.0}}, "position": {"x": 653.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1101, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113359, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1901.0}, "se": {"x": 662.0, "y": 1911.0}, "sw": {"x": 672.0, "y": 1901.0}, "nw": {"x": 672.0, "y": 1911.0}}, "position": {"x": 667.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1108, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113360, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1901.0}, "se": {"x": 676.0, "y": 1911.0}, "sw": {"x": 686.0, "y": 1901.0}, "nw": {"x": 686.0, "y": 1911.0}}, "position": {"x": 681.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1117, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113361, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1901.0}, "se": {"x": 690.0, "y": 1911.0}, "sw": {"x": 700.0, "y": 1901.0}, "nw": {"x": 700.0, "y": 1911.0}}, "position": {"x": 695.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1128, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113362, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1901.0}, "se": {"x": 704.0, "y": 1911.0}, "sw": {"x": 714.0, "y": 1901.0}, "nw": {"x": 714.0, "y": 1911.0}}, "position": {"x": 709.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1139, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113363, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1901.0}, "se": {"x": 718.0, "y": 1911.0}, "sw": {"x": 728.0, "y": 1901.0}, "nw": {"x": 728.0, "y": 1911.0}}, "position": {"x": 723.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1150, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113364, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1901.0}, "se": {"x": 732.0, "y": 1911.0}, "sw": {"x": 742.0, "y": 1901.0}, "nw": {"x": 742.0, "y": 1911.0}}, "position": {"x": 737.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1171, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113365, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1901.0}, "se": {"x": 746.0, "y": 1911.0}, "sw": {"x": 756.0, "y": 1901.0}, "nw": {"x": 756.0, "y": 1911.0}}, "position": {"x": 751.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1259, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113366, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1901.0}, "se": {"x": 760.0, "y": 1911.0}, "sw": {"x": 770.0, "y": 1901.0}, "nw": {"x": 770.0, "y": 1911.0}}, "position": {"x": 765.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1368, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113383, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1915.0}, "se": {"x": 606.0, "y": 1925.0}, "sw": {"x": 616.0, "y": 1915.0}, "nw": {"x": 616.0, "y": 1925.0}}, "position": {"x": 611.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1080, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113384, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1915.0}, "se": {"x": 620.0, "y": 1925.0}, "sw": {"x": 630.0, "y": 1915.0}, "nw": {"x": 630.0, "y": 1925.0}}, "position": {"x": 625.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1086, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113385, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1915.0}, "se": {"x": 634.0, "y": 1925.0}, "sw": {"x": 644.0, "y": 1915.0}, "nw": {"x": 644.0, "y": 1925.0}}, "position": {"x": 639.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1092, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113386, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1915.0}, "se": {"x": 648.0, "y": 1925.0}, "sw": {"x": 658.0, "y": 1915.0}, "nw": {"x": 658.0, "y": 1925.0}}, "position": {"x": 653.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1100, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113387, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1915.0}, "se": {"x": 662.0, "y": 1925.0}, "sw": {"x": 672.0, "y": 1915.0}, "nw": {"x": 672.0, "y": 1925.0}}, "position": {"x": 667.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1107, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113388, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1915.0}, "se": {"x": 676.0, "y": 1925.0}, "sw": {"x": 686.0, "y": 1915.0}, "nw": {"x": 686.0, "y": 1925.0}}, "position": {"x": 681.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1116, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113389, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1915.0}, "se": {"x": 690.0, "y": 1925.0}, "sw": {"x": 700.0, "y": 1915.0}, "nw": {"x": 700.0, "y": 1925.0}}, "position": {"x": 695.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1127, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113390, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1915.0}, "se": {"x": 704.0, "y": 1925.0}, "sw": {"x": 714.0, "y": 1915.0}, "nw": {"x": 714.0, "y": 1925.0}}, "position": {"x": 709.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1138, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113391, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1915.0}, "se": {"x": 718.0, "y": 1925.0}, "sw": {"x": 728.0, "y": 1915.0}, "nw": {"x": 728.0, "y": 1925.0}}, "position": {"x": 723.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1149, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113392, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1915.0}, "se": {"x": 732.0, "y": 1925.0}, "sw": {"x": 742.0, "y": 1915.0}, "nw": {"x": 742.0, "y": 1925.0}}, "position": {"x": 737.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1170, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113393, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1915.0}, "se": {"x": 746.0, "y": 1925.0}, "sw": {"x": 756.0, "y": 1915.0}, "nw": {"x": 756.0, "y": 1925.0}}, "position": {"x": 751.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1258, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113394, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1915.0}, "se": {"x": 760.0, "y": 1925.0}, "sw": {"x": 770.0, "y": 1915.0}, "nw": {"x": 770.0, "y": 1925.0}}, "position": {"x": 765.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1367, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113409, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 592.0, "y": 1929.0}, "se": {"x": 592.0, "y": 1939.0}, "sw": {"x": 602.0, "y": 1929.0}, "nw": {"x": 602.0, "y": 1939.0}}, "position": {"x": 597.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158912, "gate": "", "blockId": null, "orderNum": 1075, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113410, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1929.0}, "se": {"x": 606.0, "y": 1939.0}, "sw": {"x": 616.0, "y": 1929.0}, "nw": {"x": 616.0, "y": 1939.0}}, "position": {"x": 611.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1079, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113411, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1929.0}, "se": {"x": 620.0, "y": 1939.0}, "sw": {"x": 630.0, "y": 1929.0}, "nw": {"x": 630.0, "y": 1939.0}}, "position": {"x": 625.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1085, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113412, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1929.0}, "se": {"x": 634.0, "y": 1939.0}, "sw": {"x": 644.0, "y": 1929.0}, "nw": {"x": 644.0, "y": 1939.0}}, "position": {"x": 639.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1091, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113413, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1929.0}, "se": {"x": 648.0, "y": 1939.0}, "sw": {"x": 658.0, "y": 1929.0}, "nw": {"x": 658.0, "y": 1939.0}}, "position": {"x": 653.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1099, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113414, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1929.0}, "se": {"x": 662.0, "y": 1939.0}, "sw": {"x": 672.0, "y": 1929.0}, "nw": {"x": 672.0, "y": 1939.0}}, "position": {"x": 667.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1106, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113415, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1929.0}, "se": {"x": 676.0, "y": 1939.0}, "sw": {"x": 686.0, "y": 1929.0}, "nw": {"x": 686.0, "y": 1939.0}}, "position": {"x": 681.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1115, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113416, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1929.0}, "se": {"x": 690.0, "y": 1939.0}, "sw": {"x": 700.0, "y": 1929.0}, "nw": {"x": 700.0, "y": 1939.0}}, "position": {"x": 695.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1126, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113417, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1929.0}, "se": {"x": 704.0, "y": 1939.0}, "sw": {"x": 714.0, "y": 1929.0}, "nw": {"x": 714.0, "y": 1939.0}}, "position": {"x": 709.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1137, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113418, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1929.0}, "se": {"x": 718.0, "y": 1939.0}, "sw": {"x": 728.0, "y": 1929.0}, "nw": {"x": 728.0, "y": 1939.0}}, "position": {"x": 723.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1148, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113419, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1929.0}, "se": {"x": 732.0, "y": 1939.0}, "sw": {"x": 742.0, "y": 1929.0}, "nw": {"x": 742.0, "y": 1939.0}}, "position": {"x": 737.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1169, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113420, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1929.0}, "se": {"x": 746.0, "y": 1939.0}, "sw": {"x": 756.0, "y": 1929.0}, "nw": {"x": 756.0, "y": 1939.0}}, "position": {"x": 751.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1257, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113421, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1929.0}, "se": {"x": 760.0, "y": 1939.0}, "sw": {"x": 770.0, "y": 1929.0}, "nw": {"x": 770.0, "y": 1939.0}}, "position": {"x": 765.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1366, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "4:5": [{"logicalSeatId": 1537115588, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1287.0}, "se": {"x": 1031.0, "y": 1297.0}, "sw": {"x": 1041.0, "y": 1287.0}, "nw": {"x": 1041.0, "y": 1297.0}}, "position": {"x": 1036.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115589, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1287.0}, "se": {"x": 1045.0, "y": 1297.0}, "sw": {"x": 1055.0, "y": 1287.0}, "nw": {"x": 1055.0, "y": 1297.0}}, "position": {"x": 1050.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115590, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1287.0}, "se": {"x": 1059.0, "y": 1297.0}, "sw": {"x": 1069.0, "y": 1287.0}, "nw": {"x": 1069.0, "y": 1297.0}}, "position": {"x": 1064.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115591, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1287.0}, "se": {"x": 1073.0, "y": 1297.0}, "sw": {"x": 1083.0, "y": 1287.0}, "nw": {"x": 1083.0, "y": 1297.0}}, "position": {"x": 1078.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115592, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1287.0}, "se": {"x": 1087.0, "y": 1297.0}, "sw": {"x": 1097.0, "y": 1287.0}, "nw": {"x": 1097.0, "y": 1297.0}}, "position": {"x": 1092.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115593, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1287.0}, "se": {"x": 1101.0, "y": 1297.0}, "sw": {"x": 1111.0, "y": 1287.0}, "nw": {"x": 1111.0, "y": 1297.0}}, "position": {"x": 1106.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115594, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1287.0}, "se": {"x": 1115.0, "y": 1297.0}, "sw": {"x": 1125.0, "y": 1287.0}, "nw": {"x": 1125.0, "y": 1297.0}}, "position": {"x": 1120.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115595, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1287.0}, "se": {"x": 1129.0, "y": 1297.0}, "sw": {"x": 1139.0, "y": 1287.0}, "nw": {"x": 1139.0, "y": 1297.0}}, "position": {"x": 1134.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115596, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1287.0}, "se": {"x": 1143.0, "y": 1297.0}, "sw": {"x": 1153.0, "y": 1287.0}, "nw": {"x": 1153.0, "y": 1297.0}}, "position": {"x": 1148.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115597, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1287.0}, "se": {"x": 1157.0, "y": 1297.0}, "sw": {"x": 1167.0, "y": 1287.0}, "nw": {"x": 1167.0, "y": 1297.0}}, "position": {"x": 1162.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115708, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1287.0}, "se": {"x": 1253.0, "y": 1297.0}, "sw": {"x": 1263.0, "y": 1287.0}, "nw": {"x": 1263.0, "y": 1297.0}}, "position": {"x": 1258.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115709, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1287.0}, "se": {"x": 1267.0, "y": 1297.0}, "sw": {"x": 1277.0, "y": 1287.0}, "nw": {"x": 1277.0, "y": 1297.0}}, "position": {"x": 1272.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "6:3": [{"logicalSeatId": 1537115273, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 776.0}, "se": {"x": 1535.0, "y": 786.0}, "sw": {"x": 1545.0, "y": 776.0}, "nw": {"x": 1545.0, "y": 786.0}}, "position": {"x": 1540.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115274, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 776.0}, "se": {"x": 1549.0, "y": 786.0}, "sw": {"x": 1559.0, "y": 776.0}, "nw": {"x": 1559.0, "y": 786.0}}, "position": {"x": 1554.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115275, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 776.0}, "se": {"x": 1563.0, "y": 786.0}, "sw": {"x": 1573.0, "y": 776.0}, "nw": {"x": 1573.0, "y": 786.0}}, "position": {"x": 1568.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115276, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 776.0}, "se": {"x": 1577.0, "y": 786.0}, "sw": {"x": 1587.0, "y": 776.0}, "nw": {"x": 1587.0, "y": 786.0}}, "position": {"x": 1582.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115277, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 776.0}, "se": {"x": 1591.0, "y": 786.0}, "sw": {"x": 1601.0, "y": 776.0}, "nw": {"x": 1601.0, "y": 786.0}}, "position": {"x": 1596.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115283, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 790.0}, "se": {"x": 1535.0, "y": 800.0}, "sw": {"x": 1545.0, "y": 790.0}, "nw": {"x": 1545.0, "y": 800.0}}, "position": {"x": 1540.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115284, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 790.0}, "se": {"x": 1549.0, "y": 800.0}, "sw": {"x": 1559.0, "y": 790.0}, "nw": {"x": 1559.0, "y": 800.0}}, "position": {"x": 1554.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115285, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 790.0}, "se": {"x": 1563.0, "y": 800.0}, "sw": {"x": 1573.0, "y": 790.0}, "nw": {"x": 1573.0, "y": 800.0}}, "position": {"x": 1568.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115286, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 790.0}, "se": {"x": 1577.0, "y": 800.0}, "sw": {"x": 1587.0, "y": 790.0}, "nw": {"x": 1587.0, "y": 800.0}}, "position": {"x": 1582.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115287, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 790.0}, "se": {"x": 1591.0, "y": 800.0}, "sw": {"x": 1601.0, "y": 790.0}, "nw": {"x": 1601.0, "y": 800.0}}, "position": {"x": 1596.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115293, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 804.0}, "se": {"x": 1535.0, "y": 814.0}, "sw": {"x": 1545.0, "y": 804.0}, "nw": {"x": 1545.0, "y": 814.0}}, "position": {"x": 1540.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115294, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 804.0}, "se": {"x": 1549.0, "y": 814.0}, "sw": {"x": 1559.0, "y": 804.0}, "nw": {"x": 1559.0, "y": 814.0}}, "position": {"x": 1554.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115295, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 804.0}, "se": {"x": 1563.0, "y": 814.0}, "sw": {"x": 1573.0, "y": 804.0}, "nw": {"x": 1573.0, "y": 814.0}}, "position": {"x": 1568.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115296, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 804.0}, "se": {"x": 1577.0, "y": 814.0}, "sw": {"x": 1587.0, "y": 804.0}, "nw": {"x": 1587.0, "y": 814.0}}, "position": {"x": 1582.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115297, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 804.0}, "se": {"x": 1591.0, "y": 814.0}, "sw": {"x": 1601.0, "y": 804.0}, "nw": {"x": 1601.0, "y": 814.0}}, "position": {"x": 1596.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115303, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 818.0}, "se": {"x": 1535.0, "y": 828.0}, "sw": {"x": 1545.0, "y": 818.0}, "nw": {"x": 1545.0, "y": 828.0}}, "position": {"x": 1540.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115304, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 818.0}, "se": {"x": 1549.0, "y": 828.0}, "sw": {"x": 1559.0, "y": 818.0}, "nw": {"x": 1559.0, "y": 828.0}}, "position": {"x": 1554.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115305, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 818.0}, "se": {"x": 1563.0, "y": 828.0}, "sw": {"x": 1573.0, "y": 818.0}, "nw": {"x": 1573.0, "y": 828.0}}, "position": {"x": 1568.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115306, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 818.0}, "se": {"x": 1577.0, "y": 828.0}, "sw": {"x": 1587.0, "y": 818.0}, "nw": {"x": 1587.0, "y": 828.0}}, "position": {"x": 1582.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115307, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 818.0}, "se": {"x": 1591.0, "y": 828.0}, "sw": {"x": 1601.0, "y": 818.0}, "nw": {"x": 1601.0, "y": 828.0}}, "position": {"x": 1596.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115313, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 832.0}, "se": {"x": 1535.0, "y": 842.0}, "sw": {"x": 1545.0, "y": 832.0}, "nw": {"x": 1545.0, "y": 842.0}}, "position": {"x": 1540.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115314, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 832.0}, "se": {"x": 1549.0, "y": 842.0}, "sw": {"x": 1559.0, "y": 832.0}, "nw": {"x": 1559.0, "y": 842.0}}, "position": {"x": 1554.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115315, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 832.0}, "se": {"x": 1563.0, "y": 842.0}, "sw": {"x": 1573.0, "y": 832.0}, "nw": {"x": 1573.0, "y": 842.0}}, "position": {"x": 1568.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115316, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 832.0}, "se": {"x": 1577.0, "y": 842.0}, "sw": {"x": 1587.0, "y": 832.0}, "nw": {"x": 1587.0, "y": 842.0}}, "position": {"x": 1582.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115317, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 832.0}, "se": {"x": 1591.0, "y": 842.0}, "sw": {"x": 1601.0, "y": 832.0}, "nw": {"x": 1601.0, "y": 842.0}}, "position": {"x": 1596.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115323, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 873.0}, "se": {"x": 1535.0, "y": 883.0}, "sw": {"x": 1545.0, "y": 873.0}, "nw": {"x": 1545.0, "y": 883.0}}, "position": {"x": 1540.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115324, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 873.0}, "se": {"x": 1549.0, "y": 883.0}, "sw": {"x": 1559.0, "y": 873.0}, "nw": {"x": 1559.0, "y": 883.0}}, "position": {"x": 1554.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115325, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 873.0}, "se": {"x": 1563.0, "y": 883.0}, "sw": {"x": 1573.0, "y": 873.0}, "nw": {"x": 1573.0, "y": 883.0}}, "position": {"x": 1568.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115326, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 873.0}, "se": {"x": 1577.0, "y": 883.0}, "sw": {"x": 1587.0, "y": 873.0}, "nw": {"x": 1587.0, "y": 883.0}}, "position": {"x": 1582.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115327, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 873.0}, "se": {"x": 1591.0, "y": 883.0}, "sw": {"x": 1601.0, "y": 873.0}, "nw": {"x": 1601.0, "y": 883.0}}, "position": {"x": 1596.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115333, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 887.0}, "se": {"x": 1535.0, "y": 897.0}, "sw": {"x": 1545.0, "y": 887.0}, "nw": {"x": 1545.0, "y": 897.0}}, "position": {"x": 1540.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115334, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 887.0}, "se": {"x": 1549.0, "y": 897.0}, "sw": {"x": 1559.0, "y": 887.0}, "nw": {"x": 1559.0, "y": 897.0}}, "position": {"x": 1554.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115335, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 887.0}, "se": {"x": 1563.0, "y": 897.0}, "sw": {"x": 1573.0, "y": 887.0}, "nw": {"x": 1573.0, "y": 897.0}}, "position": {"x": 1568.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115336, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 887.0}, "se": {"x": 1577.0, "y": 897.0}, "sw": {"x": 1587.0, "y": 887.0}, "nw": {"x": 1587.0, "y": 897.0}}, "position": {"x": 1582.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115337, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 887.0}, "se": {"x": 1591.0, "y": 897.0}, "sw": {"x": 1601.0, "y": 887.0}, "nw": {"x": 1601.0, "y": 897.0}}, "position": {"x": 1596.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115343, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 901.0}, "se": {"x": 1535.0, "y": 911.0}, "sw": {"x": 1545.0, "y": 901.0}, "nw": {"x": 1545.0, "y": 911.0}}, "position": {"x": 1540.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115344, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 901.0}, "se": {"x": 1549.0, "y": 911.0}, "sw": {"x": 1559.0, "y": 901.0}, "nw": {"x": 1559.0, "y": 911.0}}, "position": {"x": 1554.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115345, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 901.0}, "se": {"x": 1563.0, "y": 911.0}, "sw": {"x": 1573.0, "y": 901.0}, "nw": {"x": 1573.0, "y": 911.0}}, "position": {"x": 1568.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115346, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 901.0}, "se": {"x": 1577.0, "y": 911.0}, "sw": {"x": 1587.0, "y": 901.0}, "nw": {"x": 1587.0, "y": 911.0}}, "position": {"x": 1582.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115347, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 901.0}, "se": {"x": 1591.0, "y": 911.0}, "sw": {"x": 1601.0, "y": 901.0}, "nw": {"x": 1601.0, "y": 911.0}}, "position": {"x": 1596.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115353, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 915.0}, "se": {"x": 1535.0, "y": 925.0}, "sw": {"x": 1545.0, "y": 915.0}, "nw": {"x": 1545.0, "y": 925.0}}, "position": {"x": 1540.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115354, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 915.0}, "se": {"x": 1549.0, "y": 925.0}, "sw": {"x": 1559.0, "y": 915.0}, "nw": {"x": 1559.0, "y": 925.0}}, "position": {"x": 1554.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115355, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 915.0}, "se": {"x": 1563.0, "y": 925.0}, "sw": {"x": 1573.0, "y": 915.0}, "nw": {"x": 1573.0, "y": 925.0}}, "position": {"x": 1568.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115356, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 915.0}, "se": {"x": 1577.0, "y": 925.0}, "sw": {"x": 1587.0, "y": 915.0}, "nw": {"x": 1587.0, "y": 925.0}}, "position": {"x": 1582.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115357, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 915.0}, "se": {"x": 1591.0, "y": 925.0}, "sw": {"x": 1601.0, "y": 915.0}, "nw": {"x": 1601.0, "y": 925.0}}, "position": {"x": 1596.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115363, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 929.0}, "se": {"x": 1535.0, "y": 939.0}, "sw": {"x": 1545.0, "y": 929.0}, "nw": {"x": 1545.0, "y": 939.0}}, "position": {"x": 1540.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115364, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 929.0}, "se": {"x": 1549.0, "y": 939.0}, "sw": {"x": 1559.0, "y": 929.0}, "nw": {"x": 1559.0, "y": 939.0}}, "position": {"x": 1554.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115365, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 929.0}, "se": {"x": 1563.0, "y": 939.0}, "sw": {"x": 1573.0, "y": 929.0}, "nw": {"x": 1573.0, "y": 939.0}}, "position": {"x": 1568.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115366, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 929.0}, "se": {"x": 1577.0, "y": 939.0}, "sw": {"x": 1587.0, "y": 929.0}, "nw": {"x": 1587.0, "y": 939.0}}, "position": {"x": 1582.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115367, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 929.0}, "se": {"x": 1591.0, "y": 939.0}, "sw": {"x": 1601.0, "y": 929.0}, "nw": {"x": 1601.0, "y": 939.0}}, "position": {"x": 1596.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115373, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 943.0}, "se": {"x": 1535.0, "y": 953.0}, "sw": {"x": 1545.0, "y": 943.0}, "nw": {"x": 1545.0, "y": 953.0}}, "position": {"x": 1540.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115374, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 943.0}, "se": {"x": 1549.0, "y": 953.0}, "sw": {"x": 1559.0, "y": 943.0}, "nw": {"x": 1559.0, "y": 953.0}}, "position": {"x": 1554.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115375, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 943.0}, "se": {"x": 1563.0, "y": 953.0}, "sw": {"x": 1573.0, "y": 943.0}, "nw": {"x": 1573.0, "y": 953.0}}, "position": {"x": 1568.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115376, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 943.0}, "se": {"x": 1577.0, "y": 953.0}, "sw": {"x": 1587.0, "y": 943.0}, "nw": {"x": 1587.0, "y": 953.0}}, "position": {"x": 1582.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115377, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 943.0}, "se": {"x": 1591.0, "y": 953.0}, "sw": {"x": 1601.0, "y": 943.0}, "nw": {"x": 1601.0, "y": 953.0}}, "position": {"x": 1596.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115383, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 957.0}, "se": {"x": 1535.0, "y": 967.0}, "sw": {"x": 1545.0, "y": 957.0}, "nw": {"x": 1545.0, "y": 967.0}}, "position": {"x": 1540.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115384, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 957.0}, "se": {"x": 1549.0, "y": 967.0}, "sw": {"x": 1559.0, "y": 957.0}, "nw": {"x": 1559.0, "y": 967.0}}, "position": {"x": 1554.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115385, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 957.0}, "se": {"x": 1563.0, "y": 967.0}, "sw": {"x": 1573.0, "y": 957.0}, "nw": {"x": 1573.0, "y": 967.0}}, "position": {"x": 1568.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115386, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 957.0}, "se": {"x": 1577.0, "y": 967.0}, "sw": {"x": 1587.0, "y": 957.0}, "nw": {"x": 1587.0, "y": 967.0}}, "position": {"x": 1582.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115387, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 957.0}, "se": {"x": 1591.0, "y": 967.0}, "sw": {"x": 1601.0, "y": 957.0}, "nw": {"x": 1601.0, "y": 967.0}}, "position": {"x": 1596.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115393, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 971.0}, "se": {"x": 1535.0, "y": 981.0}, "sw": {"x": 1545.0, "y": 971.0}, "nw": {"x": 1545.0, "y": 981.0}}, "position": {"x": 1540.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115394, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 971.0}, "se": {"x": 1549.0, "y": 981.0}, "sw": {"x": 1559.0, "y": 971.0}, "nw": {"x": 1559.0, "y": 981.0}}, "position": {"x": 1554.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115395, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 971.0}, "se": {"x": 1563.0, "y": 981.0}, "sw": {"x": 1573.0, "y": 971.0}, "nw": {"x": 1573.0, "y": 981.0}}, "position": {"x": 1568.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115396, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 971.0}, "se": {"x": 1577.0, "y": 981.0}, "sw": {"x": 1587.0, "y": 971.0}, "nw": {"x": 1587.0, "y": 981.0}}, "position": {"x": 1582.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115397, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 971.0}, "se": {"x": 1591.0, "y": 981.0}, "sw": {"x": 1601.0, "y": 971.0}, "nw": {"x": 1601.0, "y": 981.0}}, "position": {"x": 1596.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "3:7": [{"logicalSeatId": 1537112829, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1803.0}, "se": {"x": 912.0, "y": 1813.0}, "sw": {"x": 922.0, "y": 1803.0}, "nw": {"x": 922.0, "y": 1813.0}}, "position": {"x": 917.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2346, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112830, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1803.0}, "se": {"x": 926.0, "y": 1813.0}, "sw": {"x": 936.0, "y": 1803.0}, "nw": {"x": 936.0, "y": 1813.0}}, "position": {"x": 931.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2426, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112831, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1803.0}, "se": {"x": 940.0, "y": 1813.0}, "sw": {"x": 950.0, "y": 1803.0}, "nw": {"x": 950.0, "y": 1813.0}}, "position": {"x": 945.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2506, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112832, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1803.0}, "se": {"x": 954.0, "y": 1813.0}, "sw": {"x": 964.0, "y": 1803.0}, "nw": {"x": 964.0, "y": 1813.0}}, "position": {"x": 959.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2586, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112833, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1803.0}, "se": {"x": 968.0, "y": 1813.0}, "sw": {"x": 978.0, "y": 1803.0}, "nw": {"x": 978.0, "y": 1813.0}}, "position": {"x": 973.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2666, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112834, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1803.0}, "se": {"x": 982.0, "y": 1813.0}, "sw": {"x": 992.0, "y": 1803.0}, "nw": {"x": 992.0, "y": 1813.0}}, "position": {"x": 987.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2746, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112835, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1803.0}, "se": {"x": 996.0, "y": 1813.0}, "sw": {"x": 1006.0, "y": 1803.0}, "nw": {"x": 1006.0, "y": 1813.0}}, "position": {"x": 1001.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2826, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112836, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1803.0}, "se": {"x": 1010.0, "y": 1813.0}, "sw": {"x": 1020.0, "y": 1803.0}, "nw": {"x": 1020.0, "y": 1813.0}}, "position": {"x": 1015.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2906, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112853, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1817.0}, "se": {"x": 912.0, "y": 1827.0}, "sw": {"x": 922.0, "y": 1817.0}, "nw": {"x": 922.0, "y": 1827.0}}, "position": {"x": 917.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2345, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112854, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1817.0}, "se": {"x": 926.0, "y": 1827.0}, "sw": {"x": 936.0, "y": 1817.0}, "nw": {"x": 936.0, "y": 1827.0}}, "position": {"x": 931.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2425, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112855, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1817.0}, "se": {"x": 940.0, "y": 1827.0}, "sw": {"x": 950.0, "y": 1817.0}, "nw": {"x": 950.0, "y": 1827.0}}, "position": {"x": 945.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2505, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112856, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1817.0}, "se": {"x": 954.0, "y": 1827.0}, "sw": {"x": 964.0, "y": 1817.0}, "nw": {"x": 964.0, "y": 1827.0}}, "position": {"x": 959.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2585, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112857, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1817.0}, "se": {"x": 968.0, "y": 1827.0}, "sw": {"x": 978.0, "y": 1817.0}, "nw": {"x": 978.0, "y": 1827.0}}, "position": {"x": 973.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2665, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112858, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1817.0}, "se": {"x": 982.0, "y": 1827.0}, "sw": {"x": 992.0, "y": 1817.0}, "nw": {"x": 992.0, "y": 1827.0}}, "position": {"x": 987.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2745, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112859, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1817.0}, "se": {"x": 996.0, "y": 1827.0}, "sw": {"x": 1006.0, "y": 1817.0}, "nw": {"x": 1006.0, "y": 1827.0}}, "position": {"x": 1001.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2825, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112860, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1817.0}, "se": {"x": 1010.0, "y": 1827.0}, "sw": {"x": 1020.0, "y": 1817.0}, "nw": {"x": 1020.0, "y": 1827.0}}, "position": {"x": 1015.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2905, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112877, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1831.0}, "se": {"x": 912.0, "y": 1841.0}, "sw": {"x": 922.0, "y": 1831.0}, "nw": {"x": 922.0, "y": 1841.0}}, "position": {"x": 917.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2344, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112878, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1831.0}, "se": {"x": 926.0, "y": 1841.0}, "sw": {"x": 936.0, "y": 1831.0}, "nw": {"x": 936.0, "y": 1841.0}}, "position": {"x": 931.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2424, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112879, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1831.0}, "se": {"x": 940.0, "y": 1841.0}, "sw": {"x": 950.0, "y": 1831.0}, "nw": {"x": 950.0, "y": 1841.0}}, "position": {"x": 945.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2504, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112880, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1831.0}, "se": {"x": 954.0, "y": 1841.0}, "sw": {"x": 964.0, "y": 1831.0}, "nw": {"x": 964.0, "y": 1841.0}}, "position": {"x": 959.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2584, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112881, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1831.0}, "se": {"x": 968.0, "y": 1841.0}, "sw": {"x": 978.0, "y": 1831.0}, "nw": {"x": 978.0, "y": 1841.0}}, "position": {"x": 973.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2664, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112882, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1831.0}, "se": {"x": 982.0, "y": 1841.0}, "sw": {"x": 992.0, "y": 1831.0}, "nw": {"x": 992.0, "y": 1841.0}}, "position": {"x": 987.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2744, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112883, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1831.0}, "se": {"x": 996.0, "y": 1841.0}, "sw": {"x": 1006.0, "y": 1831.0}, "nw": {"x": 1006.0, "y": 1841.0}}, "position": {"x": 1001.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2824, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112884, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1831.0}, "se": {"x": 1010.0, "y": 1841.0}, "sw": {"x": 1020.0, "y": 1831.0}, "nw": {"x": 1020.0, "y": 1841.0}}, "position": {"x": 1015.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2904, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112901, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1845.0}, "se": {"x": 912.0, "y": 1855.0}, "sw": {"x": 922.0, "y": 1845.0}, "nw": {"x": 922.0, "y": 1855.0}}, "position": {"x": 917.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2343, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112902, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1845.0}, "se": {"x": 926.0, "y": 1855.0}, "sw": {"x": 936.0, "y": 1845.0}, "nw": {"x": 936.0, "y": 1855.0}}, "position": {"x": 931.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2423, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112903, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1845.0}, "se": {"x": 940.0, "y": 1855.0}, "sw": {"x": 950.0, "y": 1845.0}, "nw": {"x": 950.0, "y": 1855.0}}, "position": {"x": 945.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2503, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112904, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1845.0}, "se": {"x": 954.0, "y": 1855.0}, "sw": {"x": 964.0, "y": 1845.0}, "nw": {"x": 964.0, "y": 1855.0}}, "position": {"x": 959.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2583, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112905, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1845.0}, "se": {"x": 968.0, "y": 1855.0}, "sw": {"x": 978.0, "y": 1845.0}, "nw": {"x": 978.0, "y": 1855.0}}, "position": {"x": 973.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2663, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112906, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1845.0}, "se": {"x": 982.0, "y": 1855.0}, "sw": {"x": 992.0, "y": 1845.0}, "nw": {"x": 992.0, "y": 1855.0}}, "position": {"x": 987.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2743, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112907, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1845.0}, "se": {"x": 996.0, "y": 1855.0}, "sw": {"x": 1006.0, "y": 1845.0}, "nw": {"x": 1006.0, "y": 1855.0}}, "position": {"x": 1001.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2823, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112908, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1845.0}, "se": {"x": 1010.0, "y": 1855.0}, "sw": {"x": 1020.0, "y": 1845.0}, "nw": {"x": 1020.0, "y": 1855.0}}, "position": {"x": 1015.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2903, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112925, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1859.0}, "se": {"x": 912.0, "y": 1869.0}, "sw": {"x": 922.0, "y": 1859.0}, "nw": {"x": 922.0, "y": 1869.0}}, "position": {"x": 917.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2342, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112926, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1859.0}, "se": {"x": 926.0, "y": 1869.0}, "sw": {"x": 936.0, "y": 1859.0}, "nw": {"x": 936.0, "y": 1869.0}}, "position": {"x": 931.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2422, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112927, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1859.0}, "se": {"x": 940.0, "y": 1869.0}, "sw": {"x": 950.0, "y": 1859.0}, "nw": {"x": 950.0, "y": 1869.0}}, "position": {"x": 945.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2502, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112928, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1859.0}, "se": {"x": 954.0, "y": 1869.0}, "sw": {"x": 964.0, "y": 1859.0}, "nw": {"x": 964.0, "y": 1869.0}}, "position": {"x": 959.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2582, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112929, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1859.0}, "se": {"x": 968.0, "y": 1869.0}, "sw": {"x": 978.0, "y": 1859.0}, "nw": {"x": 978.0, "y": 1869.0}}, "position": {"x": 973.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2662, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112930, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1859.0}, "se": {"x": 982.0, "y": 1869.0}, "sw": {"x": 992.0, "y": 1859.0}, "nw": {"x": 992.0, "y": 1869.0}}, "position": {"x": 987.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2742, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112931, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1859.0}, "se": {"x": 996.0, "y": 1869.0}, "sw": {"x": 1006.0, "y": 1859.0}, "nw": {"x": 1006.0, "y": 1869.0}}, "position": {"x": 1001.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2822, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112932, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1859.0}, "se": {"x": 1010.0, "y": 1869.0}, "sw": {"x": 1020.0, "y": 1859.0}, "nw": {"x": 1020.0, "y": 1869.0}}, "position": {"x": 1015.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2902, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112949, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1873.0}, "se": {"x": 912.0, "y": 1883.0}, "sw": {"x": 922.0, "y": 1873.0}, "nw": {"x": 922.0, "y": 1883.0}}, "position": {"x": 917.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2341, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112950, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1873.0}, "se": {"x": 926.0, "y": 1883.0}, "sw": {"x": 936.0, "y": 1873.0}, "nw": {"x": 936.0, "y": 1883.0}}, "position": {"x": 931.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2421, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112951, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1873.0}, "se": {"x": 940.0, "y": 1883.0}, "sw": {"x": 950.0, "y": 1873.0}, "nw": {"x": 950.0, "y": 1883.0}}, "position": {"x": 945.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2501, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112952, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1873.0}, "se": {"x": 954.0, "y": 1883.0}, "sw": {"x": 964.0, "y": 1873.0}, "nw": {"x": 964.0, "y": 1883.0}}, "position": {"x": 959.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2581, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112953, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1873.0}, "se": {"x": 968.0, "y": 1883.0}, "sw": {"x": 978.0, "y": 1873.0}, "nw": {"x": 978.0, "y": 1883.0}}, "position": {"x": 973.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2661, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112954, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1873.0}, "se": {"x": 982.0, "y": 1883.0}, "sw": {"x": 992.0, "y": 1873.0}, "nw": {"x": 992.0, "y": 1883.0}}, "position": {"x": 987.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2741, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112955, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1873.0}, "se": {"x": 996.0, "y": 1883.0}, "sw": {"x": 1006.0, "y": 1873.0}, "nw": {"x": 1006.0, "y": 1883.0}}, "position": {"x": 1001.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2821, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112956, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1873.0}, "se": {"x": 1010.0, "y": 1883.0}, "sw": {"x": 1020.0, "y": 1873.0}, "nw": {"x": 1020.0, "y": 1883.0}}, "position": {"x": 1015.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2901, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112987, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1887.0}, "se": {"x": 912.0, "y": 1897.0}, "sw": {"x": 922.0, "y": 1887.0}, "nw": {"x": 922.0, "y": 1897.0}}, "position": {"x": 917.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2340, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112988, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1887.0}, "se": {"x": 926.0, "y": 1897.0}, "sw": {"x": 936.0, "y": 1887.0}, "nw": {"x": 936.0, "y": 1897.0}}, "position": {"x": 931.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2420, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112989, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1887.0}, "se": {"x": 940.0, "y": 1897.0}, "sw": {"x": 950.0, "y": 1887.0}, "nw": {"x": 950.0, "y": 1897.0}}, "position": {"x": 945.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2500, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112990, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1887.0}, "se": {"x": 954.0, "y": 1897.0}, "sw": {"x": 964.0, "y": 1887.0}, "nw": {"x": 964.0, "y": 1897.0}}, "position": {"x": 959.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2580, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112991, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1887.0}, "se": {"x": 968.0, "y": 1897.0}, "sw": {"x": 978.0, "y": 1887.0}, "nw": {"x": 978.0, "y": 1897.0}}, "position": {"x": 973.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2660, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112992, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1887.0}, "se": {"x": 982.0, "y": 1897.0}, "sw": {"x": 992.0, "y": 1887.0}, "nw": {"x": 992.0, "y": 1897.0}}, "position": {"x": 987.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2740, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112993, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1887.0}, "se": {"x": 996.0, "y": 1897.0}, "sw": {"x": 1006.0, "y": 1887.0}, "nw": {"x": 1006.0, "y": 1897.0}}, "position": {"x": 1001.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2820, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112994, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1887.0}, "se": {"x": 1010.0, "y": 1897.0}, "sw": {"x": 1020.0, "y": 1887.0}, "nw": {"x": 1020.0, "y": 1897.0}}, "position": {"x": 1015.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2900, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113025, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1901.0}, "se": {"x": 912.0, "y": 1911.0}, "sw": {"x": 922.0, "y": 1901.0}, "nw": {"x": 922.0, "y": 1911.0}}, "position": {"x": 917.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2339, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113026, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1901.0}, "se": {"x": 926.0, "y": 1911.0}, "sw": {"x": 936.0, "y": 1901.0}, "nw": {"x": 936.0, "y": 1911.0}}, "position": {"x": 931.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2419, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113027, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1901.0}, "se": {"x": 940.0, "y": 1911.0}, "sw": {"x": 950.0, "y": 1901.0}, "nw": {"x": 950.0, "y": 1911.0}}, "position": {"x": 945.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2499, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113028, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1901.0}, "se": {"x": 954.0, "y": 1911.0}, "sw": {"x": 964.0, "y": 1901.0}, "nw": {"x": 964.0, "y": 1911.0}}, "position": {"x": 959.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2579, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113029, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1901.0}, "se": {"x": 968.0, "y": 1911.0}, "sw": {"x": 978.0, "y": 1901.0}, "nw": {"x": 978.0, "y": 1911.0}}, "position": {"x": 973.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2659, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113030, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1901.0}, "se": {"x": 982.0, "y": 1911.0}, "sw": {"x": 992.0, "y": 1901.0}, "nw": {"x": 992.0, "y": 1911.0}}, "position": {"x": 987.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2739, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113031, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1901.0}, "se": {"x": 996.0, "y": 1911.0}, "sw": {"x": 1006.0, "y": 1901.0}, "nw": {"x": 1006.0, "y": 1911.0}}, "position": {"x": 1001.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2819, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113032, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1901.0}, "se": {"x": 1010.0, "y": 1911.0}, "sw": {"x": 1020.0, "y": 1901.0}, "nw": {"x": 1020.0, "y": 1911.0}}, "position": {"x": 1015.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2899, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113063, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1915.0}, "se": {"x": 912.0, "y": 1925.0}, "sw": {"x": 922.0, "y": 1915.0}, "nw": {"x": 922.0, "y": 1925.0}}, "position": {"x": 917.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2338, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113064, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1915.0}, "se": {"x": 926.0, "y": 1925.0}, "sw": {"x": 936.0, "y": 1915.0}, "nw": {"x": 936.0, "y": 1925.0}}, "position": {"x": 931.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2418, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113065, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1915.0}, "se": {"x": 940.0, "y": 1925.0}, "sw": {"x": 950.0, "y": 1915.0}, "nw": {"x": 950.0, "y": 1925.0}}, "position": {"x": 945.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2498, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113066, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1915.0}, "se": {"x": 954.0, "y": 1925.0}, "sw": {"x": 964.0, "y": 1915.0}, "nw": {"x": 964.0, "y": 1925.0}}, "position": {"x": 959.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2578, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113067, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1915.0}, "se": {"x": 968.0, "y": 1925.0}, "sw": {"x": 978.0, "y": 1915.0}, "nw": {"x": 978.0, "y": 1925.0}}, "position": {"x": 973.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2658, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113068, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1915.0}, "se": {"x": 982.0, "y": 1925.0}, "sw": {"x": 992.0, "y": 1915.0}, "nw": {"x": 992.0, "y": 1925.0}}, "position": {"x": 987.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2738, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113069, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1915.0}, "se": {"x": 996.0, "y": 1925.0}, "sw": {"x": 1006.0, "y": 1915.0}, "nw": {"x": 1006.0, "y": 1925.0}}, "position": {"x": 1001.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2818, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113070, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1915.0}, "se": {"x": 1010.0, "y": 1925.0}, "sw": {"x": 1020.0, "y": 1915.0}, "nw": {"x": 1020.0, "y": 1925.0}}, "position": {"x": 1015.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2898, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113101, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1929.0}, "se": {"x": 912.0, "y": 1939.0}, "sw": {"x": 922.0, "y": 1929.0}, "nw": {"x": 922.0, "y": 1939.0}}, "position": {"x": 917.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2337, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113102, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1929.0}, "se": {"x": 926.0, "y": 1939.0}, "sw": {"x": 936.0, "y": 1929.0}, "nw": {"x": 936.0, "y": 1939.0}}, "position": {"x": 931.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2417, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113103, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1929.0}, "se": {"x": 940.0, "y": 1939.0}, "sw": {"x": 950.0, "y": 1929.0}, "nw": {"x": 950.0, "y": 1939.0}}, "position": {"x": 945.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2497, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113104, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1929.0}, "se": {"x": 954.0, "y": 1939.0}, "sw": {"x": 964.0, "y": 1929.0}, "nw": {"x": 964.0, "y": 1939.0}}, "position": {"x": 959.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2577, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113105, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1929.0}, "se": {"x": 968.0, "y": 1939.0}, "sw": {"x": 978.0, "y": 1929.0}, "nw": {"x": 978.0, "y": 1939.0}}, "position": {"x": 973.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2657, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113106, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1929.0}, "se": {"x": 982.0, "y": 1939.0}, "sw": {"x": 992.0, "y": 1929.0}, "nw": {"x": 992.0, "y": 1939.0}}, "position": {"x": 987.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2737, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113107, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1929.0}, "se": {"x": 996.0, "y": 1939.0}, "sw": {"x": 1006.0, "y": 1929.0}, "nw": {"x": 1006.0, "y": 1939.0}}, "position": {"x": 1001.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2817, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113108, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1929.0}, "se": {"x": 1010.0, "y": 1939.0}, "sw": {"x": 1020.0, "y": 1929.0}, "nw": {"x": 1020.0, "y": 1939.0}}, "position": {"x": 1015.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2897, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113217, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1803.0}, "se": {"x": 774.0, "y": 1813.0}, "sw": {"x": 784.0, "y": 1803.0}, "nw": {"x": 784.0, "y": 1813.0}}, "position": {"x": 779.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1482, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113218, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1803.0}, "se": {"x": 788.0, "y": 1813.0}, "sw": {"x": 798.0, "y": 1803.0}, "nw": {"x": 798.0, "y": 1813.0}}, "position": {"x": 793.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1589, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113219, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1803.0}, "se": {"x": 802.0, "y": 1813.0}, "sw": {"x": 812.0, "y": 1803.0}, "nw": {"x": 812.0, "y": 1813.0}}, "position": {"x": 807.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1602, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113220, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1803.0}, "se": {"x": 816.0, "y": 1813.0}, "sw": {"x": 826.0, "y": 1803.0}, "nw": {"x": 826.0, "y": 1813.0}}, "position": {"x": 821.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1617, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113221, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1803.0}, "se": {"x": 830.0, "y": 1813.0}, "sw": {"x": 840.0, "y": 1803.0}, "nw": {"x": 840.0, "y": 1813.0}}, "position": {"x": 835.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1633, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113222, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1803.0}, "se": {"x": 844.0, "y": 1813.0}, "sw": {"x": 854.0, "y": 1803.0}, "nw": {"x": 854.0, "y": 1813.0}}, "position": {"x": 849.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1649, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113223, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1803.0}, "se": {"x": 858.0, "y": 1813.0}, "sw": {"x": 868.0, "y": 1803.0}, "nw": {"x": 868.0, "y": 1813.0}}, "position": {"x": 863.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1665, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113233, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1817.0}, "se": {"x": 774.0, "y": 1827.0}, "sw": {"x": 784.0, "y": 1817.0}, "nw": {"x": 784.0, "y": 1827.0}}, "position": {"x": 779.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1481, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113234, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1817.0}, "se": {"x": 788.0, "y": 1827.0}, "sw": {"x": 798.0, "y": 1817.0}, "nw": {"x": 798.0, "y": 1827.0}}, "position": {"x": 793.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1588, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113235, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1817.0}, "se": {"x": 802.0, "y": 1827.0}, "sw": {"x": 812.0, "y": 1817.0}, "nw": {"x": 812.0, "y": 1827.0}}, "position": {"x": 807.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1601, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113236, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1817.0}, "se": {"x": 816.0, "y": 1827.0}, "sw": {"x": 826.0, "y": 1817.0}, "nw": {"x": 826.0, "y": 1827.0}}, "position": {"x": 821.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1616, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113237, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1817.0}, "se": {"x": 830.0, "y": 1827.0}, "sw": {"x": 840.0, "y": 1817.0}, "nw": {"x": 840.0, "y": 1827.0}}, "position": {"x": 835.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1632, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113238, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1817.0}, "se": {"x": 844.0, "y": 1827.0}, "sw": {"x": 854.0, "y": 1817.0}, "nw": {"x": 854.0, "y": 1827.0}}, "position": {"x": 849.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1648, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113239, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1817.0}, "se": {"x": 858.0, "y": 1827.0}, "sw": {"x": 868.0, "y": 1817.0}, "nw": {"x": 868.0, "y": 1827.0}}, "position": {"x": 863.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1664, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113250, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1831.0}, "se": {"x": 774.0, "y": 1841.0}, "sw": {"x": 784.0, "y": 1831.0}, "nw": {"x": 784.0, "y": 1841.0}}, "position": {"x": 779.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1480, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113251, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1831.0}, "se": {"x": 788.0, "y": 1841.0}, "sw": {"x": 798.0, "y": 1831.0}, "nw": {"x": 798.0, "y": 1841.0}}, "position": {"x": 793.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1587, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113252, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1831.0}, "se": {"x": 802.0, "y": 1841.0}, "sw": {"x": 812.0, "y": 1831.0}, "nw": {"x": 812.0, "y": 1841.0}}, "position": {"x": 807.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1600, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113253, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1831.0}, "se": {"x": 816.0, "y": 1841.0}, "sw": {"x": 826.0, "y": 1831.0}, "nw": {"x": 826.0, "y": 1841.0}}, "position": {"x": 821.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1615, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113254, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1831.0}, "se": {"x": 830.0, "y": 1841.0}, "sw": {"x": 840.0, "y": 1831.0}, "nw": {"x": 840.0, "y": 1841.0}}, "position": {"x": 835.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1631, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113255, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1831.0}, "se": {"x": 844.0, "y": 1841.0}, "sw": {"x": 854.0, "y": 1831.0}, "nw": {"x": 854.0, "y": 1841.0}}, "position": {"x": 849.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1647, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113256, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1831.0}, "se": {"x": 858.0, "y": 1841.0}, "sw": {"x": 868.0, "y": 1831.0}, "nw": {"x": 868.0, "y": 1841.0}}, "position": {"x": 863.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1663, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113268, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1845.0}, "se": {"x": 774.0, "y": 1855.0}, "sw": {"x": 784.0, "y": 1845.0}, "nw": {"x": 784.0, "y": 1855.0}}, "position": {"x": 779.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1479, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113269, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1845.0}, "se": {"x": 788.0, "y": 1855.0}, "sw": {"x": 798.0, "y": 1845.0}, "nw": {"x": 798.0, "y": 1855.0}}, "position": {"x": 793.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1586, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113270, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1845.0}, "se": {"x": 802.0, "y": 1855.0}, "sw": {"x": 812.0, "y": 1845.0}, "nw": {"x": 812.0, "y": 1855.0}}, "position": {"x": 807.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1599, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113271, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1845.0}, "se": {"x": 816.0, "y": 1855.0}, "sw": {"x": 826.0, "y": 1845.0}, "nw": {"x": 826.0, "y": 1855.0}}, "position": {"x": 821.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1614, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113272, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1845.0}, "se": {"x": 830.0, "y": 1855.0}, "sw": {"x": 840.0, "y": 1845.0}, "nw": {"x": 840.0, "y": 1855.0}}, "position": {"x": 835.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1630, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113273, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1845.0}, "se": {"x": 844.0, "y": 1855.0}, "sw": {"x": 854.0, "y": 1845.0}, "nw": {"x": 854.0, "y": 1855.0}}, "position": {"x": 849.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1646, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113274, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1845.0}, "se": {"x": 858.0, "y": 1855.0}, "sw": {"x": 868.0, "y": 1845.0}, "nw": {"x": 868.0, "y": 1855.0}}, "position": {"x": 863.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1662, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400018\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113288, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1859.0}, "se": {"x": 774.0, "y": 1869.0}, "sw": {"x": 784.0, "y": 1859.0}, "nw": {"x": 784.0, "y": 1869.0}}, "position": {"x": 779.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1478, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113289, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1859.0}, "se": {"x": 788.0, "y": 1869.0}, "sw": {"x": 798.0, "y": 1859.0}, "nw": {"x": 798.0, "y": 1869.0}}, "position": {"x": 793.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1585, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113290, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1859.0}, "se": {"x": 802.0, "y": 1869.0}, "sw": {"x": 812.0, "y": 1859.0}, "nw": {"x": 812.0, "y": 1869.0}}, "position": {"x": 807.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1598, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113291, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1859.0}, "se": {"x": 816.0, "y": 1869.0}, "sw": {"x": 826.0, "y": 1859.0}, "nw": {"x": 826.0, "y": 1869.0}}, "position": {"x": 821.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1613, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113292, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1859.0}, "se": {"x": 830.0, "y": 1869.0}, "sw": {"x": 840.0, "y": 1859.0}, "nw": {"x": 840.0, "y": 1869.0}}, "position": {"x": 835.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1629, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400018\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113293, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1859.0}, "se": {"x": 844.0, "y": 1869.0}, "sw": {"x": 854.0, "y": 1859.0}, "nw": {"x": 854.0, "y": 1869.0}}, "position": {"x": 849.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1645, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400019\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113294, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1859.0}, "se": {"x": 858.0, "y": 1869.0}, "sw": {"x": 868.0, "y": 1859.0}, "nw": {"x": 868.0, "y": 1869.0}}, "position": {"x": 863.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1661, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113313, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1873.0}, "se": {"x": 774.0, "y": 1883.0}, "sw": {"x": 784.0, "y": 1873.0}, "nw": {"x": 784.0, "y": 1883.0}}, "position": {"x": 779.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1477, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113314, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1873.0}, "se": {"x": 788.0, "y": 1883.0}, "sw": {"x": 798.0, "y": 1873.0}, "nw": {"x": 798.0, "y": 1883.0}}, "position": {"x": 793.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1584, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113315, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1873.0}, "se": {"x": 802.0, "y": 1883.0}, "sw": {"x": 812.0, "y": 1873.0}, "nw": {"x": 812.0, "y": 1883.0}}, "position": {"x": 807.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1597, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113316, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1873.0}, "se": {"x": 816.0, "y": 1883.0}, "sw": {"x": 826.0, "y": 1873.0}, "nw": {"x": 826.0, "y": 1883.0}}, "position": {"x": 821.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1612, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113317, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1873.0}, "se": {"x": 830.0, "y": 1883.0}, "sw": {"x": 840.0, "y": 1873.0}, "nw": {"x": 840.0, "y": 1883.0}}, "position": {"x": 835.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1628, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113318, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1873.0}, "se": {"x": 844.0, "y": 1883.0}, "sw": {"x": 854.0, "y": 1873.0}, "nw": {"x": 854.0, "y": 1883.0}}, "position": {"x": 849.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1644, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113319, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1873.0}, "se": {"x": 858.0, "y": 1883.0}, "sw": {"x": 868.0, "y": 1873.0}, "nw": {"x": 868.0, "y": 1883.0}}, "position": {"x": 863.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1660, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113339, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1887.0}, "se": {"x": 774.0, "y": 1897.0}, "sw": {"x": 784.0, "y": 1887.0}, "nw": {"x": 784.0, "y": 1897.0}}, "position": {"x": 779.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1476, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113340, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1887.0}, "se": {"x": 788.0, "y": 1897.0}, "sw": {"x": 798.0, "y": 1887.0}, "nw": {"x": 798.0, "y": 1897.0}}, "position": {"x": 793.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1583, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113341, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1887.0}, "se": {"x": 802.0, "y": 1897.0}, "sw": {"x": 812.0, "y": 1887.0}, "nw": {"x": 812.0, "y": 1897.0}}, "position": {"x": 807.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1596, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113342, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1887.0}, "se": {"x": 816.0, "y": 1897.0}, "sw": {"x": 826.0, "y": 1887.0}, "nw": {"x": 826.0, "y": 1897.0}}, "position": {"x": 821.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1611, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113343, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1887.0}, "se": {"x": 830.0, "y": 1897.0}, "sw": {"x": 840.0, "y": 1887.0}, "nw": {"x": 840.0, "y": 1897.0}}, "position": {"x": 835.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1627, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113344, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1887.0}, "se": {"x": 844.0, "y": 1897.0}, "sw": {"x": 854.0, "y": 1887.0}, "nw": {"x": 854.0, "y": 1897.0}}, "position": {"x": 849.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1643, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113345, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1887.0}, "se": {"x": 858.0, "y": 1897.0}, "sw": {"x": 868.0, "y": 1887.0}, "nw": {"x": 868.0, "y": 1897.0}}, "position": {"x": 863.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1659, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113367, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1901.0}, "se": {"x": 774.0, "y": 1911.0}, "sw": {"x": 784.0, "y": 1901.0}, "nw": {"x": 784.0, "y": 1911.0}}, "position": {"x": 779.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1475, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113368, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1901.0}, "se": {"x": 788.0, "y": 1911.0}, "sw": {"x": 798.0, "y": 1901.0}, "nw": {"x": 798.0, "y": 1911.0}}, "position": {"x": 793.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1582, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113369, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1901.0}, "se": {"x": 802.0, "y": 1911.0}, "sw": {"x": 812.0, "y": 1901.0}, "nw": {"x": 812.0, "y": 1911.0}}, "position": {"x": 807.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1595, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113370, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1901.0}, "se": {"x": 816.0, "y": 1911.0}, "sw": {"x": 826.0, "y": 1901.0}, "nw": {"x": 826.0, "y": 1911.0}}, "position": {"x": 821.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1610, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113371, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1901.0}, "se": {"x": 830.0, "y": 1911.0}, "sw": {"x": 840.0, "y": 1901.0}, "nw": {"x": 840.0, "y": 1911.0}}, "position": {"x": 835.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1626, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113372, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1901.0}, "se": {"x": 844.0, "y": 1911.0}, "sw": {"x": 854.0, "y": 1901.0}, "nw": {"x": 854.0, "y": 1911.0}}, "position": {"x": 849.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1642, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113373, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1901.0}, "se": {"x": 858.0, "y": 1911.0}, "sw": {"x": 868.0, "y": 1901.0}, "nw": {"x": 868.0, "y": 1911.0}}, "position": {"x": 863.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 28\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1658, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "28\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400028\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113395, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1915.0}, "se": {"x": 774.0, "y": 1925.0}, "sw": {"x": 784.0, "y": 1915.0}, "nw": {"x": 784.0, "y": 1925.0}}, "position": {"x": 779.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1474, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113396, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1915.0}, "se": {"x": 788.0, "y": 1925.0}, "sw": {"x": 798.0, "y": 1915.0}, "nw": {"x": 798.0, "y": 1925.0}}, "position": {"x": 793.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1581, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113397, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1915.0}, "se": {"x": 802.0, "y": 1925.0}, "sw": {"x": 812.0, "y": 1915.0}, "nw": {"x": 812.0, "y": 1925.0}}, "position": {"x": 807.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1594, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113398, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1915.0}, "se": {"x": 816.0, "y": 1925.0}, "sw": {"x": 826.0, "y": 1915.0}, "nw": {"x": 826.0, "y": 1925.0}}, "position": {"x": 821.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1609, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113399, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1915.0}, "se": {"x": 830.0, "y": 1925.0}, "sw": {"x": 840.0, "y": 1915.0}, "nw": {"x": 840.0, "y": 1925.0}}, "position": {"x": 835.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1625, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113400, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1915.0}, "se": {"x": 844.0, "y": 1925.0}, "sw": {"x": 854.0, "y": 1915.0}, "nw": {"x": 854.0, "y": 1925.0}}, "position": {"x": 849.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 28\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1641, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "28\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400028\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113401, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1915.0}, "se": {"x": 858.0, "y": 1925.0}, "sw": {"x": 868.0, "y": 1915.0}, "nw": {"x": 868.0, "y": 1925.0}}, "position": {"x": 863.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 29\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1657, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "29\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400029\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113422, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1929.0}, "se": {"x": 774.0, "y": 1939.0}, "sw": {"x": 784.0, "y": 1929.0}, "nw": {"x": 784.0, "y": 1939.0}}, "position": {"x": 779.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1473, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113423, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1929.0}, "se": {"x": 788.0, "y": 1939.0}, "sw": {"x": 798.0, "y": 1929.0}, "nw": {"x": 798.0, "y": 1939.0}}, "position": {"x": 793.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1580, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113424, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1929.0}, "se": {"x": 802.0, "y": 1939.0}, "sw": {"x": 812.0, "y": 1929.0}, "nw": {"x": 812.0, "y": 1939.0}}, "position": {"x": 807.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1593, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113425, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1929.0}, "se": {"x": 816.0, "y": 1939.0}, "sw": {"x": 826.0, "y": 1929.0}, "nw": {"x": 826.0, "y": 1939.0}}, "position": {"x": 821.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1608, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113426, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1929.0}, "se": {"x": 830.0, "y": 1939.0}, "sw": {"x": 840.0, "y": 1929.0}, "nw": {"x": 840.0, "y": 1939.0}}, "position": {"x": 835.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1624, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113427, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1929.0}, "se": {"x": 844.0, "y": 1939.0}, "sw": {"x": 854.0, "y": 1929.0}, "nw": {"x": 854.0, "y": 1939.0}}, "position": {"x": 849.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1640, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113428, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1929.0}, "se": {"x": 858.0, "y": 1939.0}, "sw": {"x": 868.0, "y": 1929.0}, "nw": {"x": 868.0, "y": 1939.0}}, "position": {"x": 863.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1656, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "5:5": [{"logicalSeatId": 1537115710, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1287.0}, "se": {"x": 1281.0, "y": 1297.0}, "sw": {"x": 1291.0, "y": 1287.0}, "nw": {"x": 1291.0, "y": 1297.0}}, "position": {"x": 1286.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115711, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1287.0}, "se": {"x": 1295.0, "y": 1297.0}, "sw": {"x": 1305.0, "y": 1287.0}, "nw": {"x": 1305.0, "y": 1297.0}}, "position": {"x": 1300.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115712, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1287.0}, "se": {"x": 1309.0, "y": 1297.0}, "sw": {"x": 1319.0, "y": 1287.0}, "nw": {"x": 1319.0, "y": 1297.0}}, "position": {"x": 1314.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115713, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1287.0}, "se": {"x": 1323.0, "y": 1297.0}, "sw": {"x": 1333.0, "y": 1287.0}, "nw": {"x": 1333.0, "y": 1297.0}}, "position": {"x": 1328.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115714, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1287.0}, "se": {"x": 1337.0, "y": 1297.0}, "sw": {"x": 1347.0, "y": 1287.0}, "nw": {"x": 1347.0, "y": 1297.0}}, "position": {"x": 1342.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115715, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1287.0}, "se": {"x": 1351.0, "y": 1297.0}, "sw": {"x": 1361.0, "y": 1287.0}, "nw": {"x": 1361.0, "y": 1297.0}}, "position": {"x": 1356.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115716, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1287.0}, "se": {"x": 1365.0, "y": 1297.0}, "sw": {"x": 1375.0, "y": 1287.0}, "nw": {"x": 1375.0, "y": 1297.0}}, "position": {"x": 1370.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115717, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1287.0}, "se": {"x": 1379.0, "y": 1297.0}, "sw": {"x": 1389.0, "y": 1287.0}, "nw": {"x": 1389.0, "y": 1297.0}}, "position": {"x": 1384.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115828, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1287.0}, "se": {"x": 1465.0, "y": 1297.0}, "sw": {"x": 1475.0, "y": 1287.0}, "nw": {"x": 1475.0, "y": 1297.0}}, "position": {"x": 1470.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115829, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1287.0}, "se": {"x": 1479.0, "y": 1297.0}, "sw": {"x": 1489.0, "y": 1287.0}, "nw": {"x": 1489.0, "y": 1297.0}}, "position": {"x": 1484.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115830, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1287.0}, "se": {"x": 1493.0, "y": 1297.0}, "sw": {"x": 1503.0, "y": 1287.0}, "nw": {"x": 1503.0, "y": 1297.0}}, "position": {"x": 1498.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115831, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1287.0}, "se": {"x": 1507.0, "y": 1297.0}, "sw": {"x": 1517.0, "y": 1287.0}, "nw": {"x": 1517.0, "y": 1297.0}}, "position": {"x": 1512.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115832, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1287.0}, "se": {"x": 1521.0, "y": 1297.0}, "sw": {"x": 1531.0, "y": 1287.0}, "nw": {"x": 1531.0, "y": 1297.0}}, "position": {"x": 1526.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "7:3": [{"logicalSeatId": 1537111426, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1018.0}, "se": {"x": 1814.0, "y": 1018.0}, "sw": {"x": 1804.0, "y": 1008.0}, "nw": {"x": 1814.0, "y": 1008.0}}, "position": {"x": 1809.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7646, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111427, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1004.0}, "se": {"x": 1814.0, "y": 1004.0}, "sw": {"x": 1804.0, "y": 994.0}, "nw": {"x": 1814.0, "y": 994.0}}, "position": {"x": 1809.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7647, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111428, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 990.0}, "se": {"x": 1814.0, "y": 990.0}, "sw": {"x": 1804.0, "y": 980.0}, "nw": {"x": 1814.0, "y": 980.0}}, "position": {"x": 1809.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7648, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111429, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 976.0}, "se": {"x": 1814.0, "y": 976.0}, "sw": {"x": 1804.0, "y": 966.0}, "nw": {"x": 1814.0, "y": 966.0}}, "position": {"x": 1809.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7649, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111430, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 962.0}, "se": {"x": 1814.0, "y": 962.0}, "sw": {"x": 1804.0, "y": 952.0}, "nw": {"x": 1814.0, "y": 952.0}}, "position": {"x": 1809.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7650, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111431, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 948.0}, "se": {"x": 1814.0, "y": 948.0}, "sw": {"x": 1804.0, "y": 938.0}, "nw": {"x": 1814.0, "y": 938.0}}, "position": {"x": 1809.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7651, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111432, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 934.0}, "se": {"x": 1814.0, "y": 934.0}, "sw": {"x": 1804.0, "y": 924.0}, "nw": {"x": 1814.0, "y": 924.0}}, "position": {"x": 1809.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7652, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111433, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 920.0}, "se": {"x": 1814.0, "y": 920.0}, "sw": {"x": 1804.0, "y": 910.0}, "nw": {"x": 1814.0, "y": 910.0}}, "position": {"x": 1809.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7653, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111434, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 906.0}, "se": {"x": 1814.0, "y": 906.0}, "sw": {"x": 1804.0, "y": 896.0}, "nw": {"x": 1814.0, "y": 896.0}}, "position": {"x": 1809.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7654, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111435, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 892.0}, "se": {"x": 1814.0, "y": 892.0}, "sw": {"x": 1804.0, "y": 882.0}, "nw": {"x": 1814.0, "y": 882.0}}, "position": {"x": 1809.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7655, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111436, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 878.0}, "se": {"x": 1814.0, "y": 878.0}, "sw": {"x": 1804.0, "y": 868.0}, "nw": {"x": 1814.0, "y": 868.0}}, "position": {"x": 1809.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7656, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111437, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 864.0}, "se": {"x": 1814.0, "y": 864.0}, "sw": {"x": 1804.0, "y": 854.0}, "nw": {"x": 1814.0, "y": 854.0}}, "position": {"x": 1809.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7657, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111438, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 850.0}, "se": {"x": 1814.0, "y": 850.0}, "sw": {"x": 1804.0, "y": 840.0}, "nw": {"x": 1814.0, "y": 840.0}}, "position": {"x": 1809.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7658, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111439, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 836.0}, "se": {"x": 1814.0, "y": 836.0}, "sw": {"x": 1804.0, "y": 826.0}, "nw": {"x": 1814.0, "y": 826.0}}, "position": {"x": 1809.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7659, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111440, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 822.0}, "se": {"x": 1814.0, "y": 822.0}, "sw": {"x": 1804.0, "y": 812.0}, "nw": {"x": 1814.0, "y": 812.0}}, "position": {"x": 1809.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7660, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111446, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1018.0}, "se": {"x": 1828.0, "y": 1018.0}, "sw": {"x": 1818.0, "y": 1008.0}, "nw": {"x": 1828.0, "y": 1008.0}}, "position": {"x": 1823.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7733, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111447, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1004.0}, "se": {"x": 1828.0, "y": 1004.0}, "sw": {"x": 1818.0, "y": 994.0}, "nw": {"x": 1828.0, "y": 994.0}}, "position": {"x": 1823.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7734, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111448, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 990.0}, "se": {"x": 1828.0, "y": 990.0}, "sw": {"x": 1818.0, "y": 980.0}, "nw": {"x": 1828.0, "y": 980.0}}, "position": {"x": 1823.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7735, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111449, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 976.0}, "se": {"x": 1828.0, "y": 976.0}, "sw": {"x": 1818.0, "y": 966.0}, "nw": {"x": 1828.0, "y": 966.0}}, "position": {"x": 1823.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7736, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111450, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 962.0}, "se": {"x": 1828.0, "y": 962.0}, "sw": {"x": 1818.0, "y": 952.0}, "nw": {"x": 1828.0, "y": 952.0}}, "position": {"x": 1823.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7737, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111451, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 948.0}, "se": {"x": 1828.0, "y": 948.0}, "sw": {"x": 1818.0, "y": 938.0}, "nw": {"x": 1828.0, "y": 938.0}}, "position": {"x": 1823.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7738, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111452, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 934.0}, "se": {"x": 1828.0, "y": 934.0}, "sw": {"x": 1818.0, "y": 924.0}, "nw": {"x": 1828.0, "y": 924.0}}, "position": {"x": 1823.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7739, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111453, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 920.0}, "se": {"x": 1828.0, "y": 920.0}, "sw": {"x": 1818.0, "y": 910.0}, "nw": {"x": 1828.0, "y": 910.0}}, "position": {"x": 1823.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7740, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111454, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 906.0}, "se": {"x": 1828.0, "y": 906.0}, "sw": {"x": 1818.0, "y": 896.0}, "nw": {"x": 1828.0, "y": 896.0}}, "position": {"x": 1823.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7741, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111455, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 892.0}, "se": {"x": 1828.0, "y": 892.0}, "sw": {"x": 1818.0, "y": 882.0}, "nw": {"x": 1828.0, "y": 882.0}}, "position": {"x": 1823.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7742, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111456, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 878.0}, "se": {"x": 1828.0, "y": 878.0}, "sw": {"x": 1818.0, "y": 868.0}, "nw": {"x": 1828.0, "y": 868.0}}, "position": {"x": 1823.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7743, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111457, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 864.0}, "se": {"x": 1828.0, "y": 864.0}, "sw": {"x": 1818.0, "y": 854.0}, "nw": {"x": 1828.0, "y": 854.0}}, "position": {"x": 1823.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7744, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111458, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 850.0}, "se": {"x": 1828.0, "y": 850.0}, "sw": {"x": 1818.0, "y": 840.0}, "nw": {"x": 1828.0, "y": 840.0}}, "position": {"x": 1823.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7745, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111459, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 836.0}, "se": {"x": 1828.0, "y": 836.0}, "sw": {"x": 1818.0, "y": 826.0}, "nw": {"x": 1828.0, "y": 826.0}}, "position": {"x": 1823.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7746, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111460, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 822.0}, "se": {"x": 1828.0, "y": 822.0}, "sw": {"x": 1818.0, "y": 812.0}, "nw": {"x": 1828.0, "y": 812.0}}, "position": {"x": 1823.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7747, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111466, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1018.0}, "se": {"x": 1842.0, "y": 1018.0}, "sw": {"x": 1832.0, "y": 1008.0}, "nw": {"x": 1842.0, "y": 1008.0}}, "position": {"x": 1837.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7820, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111467, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1004.0}, "se": {"x": 1842.0, "y": 1004.0}, "sw": {"x": 1832.0, "y": 994.0}, "nw": {"x": 1842.0, "y": 994.0}}, "position": {"x": 1837.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7821, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111468, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 990.0}, "se": {"x": 1842.0, "y": 990.0}, "sw": {"x": 1832.0, "y": 980.0}, "nw": {"x": 1842.0, "y": 980.0}}, "position": {"x": 1837.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7822, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111469, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 976.0}, "se": {"x": 1842.0, "y": 976.0}, "sw": {"x": 1832.0, "y": 966.0}, "nw": {"x": 1842.0, "y": 966.0}}, "position": {"x": 1837.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7823, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111470, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 962.0}, "se": {"x": 1842.0, "y": 962.0}, "sw": {"x": 1832.0, "y": 952.0}, "nw": {"x": 1842.0, "y": 952.0}}, "position": {"x": 1837.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7824, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111471, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 948.0}, "se": {"x": 1842.0, "y": 948.0}, "sw": {"x": 1832.0, "y": 938.0}, "nw": {"x": 1842.0, "y": 938.0}}, "position": {"x": 1837.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7825, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111472, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 934.0}, "se": {"x": 1842.0, "y": 934.0}, "sw": {"x": 1832.0, "y": 924.0}, "nw": {"x": 1842.0, "y": 924.0}}, "position": {"x": 1837.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7826, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111473, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 920.0}, "se": {"x": 1842.0, "y": 920.0}, "sw": {"x": 1832.0, "y": 910.0}, "nw": {"x": 1842.0, "y": 910.0}}, "position": {"x": 1837.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7827, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111474, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 906.0}, "se": {"x": 1842.0, "y": 906.0}, "sw": {"x": 1832.0, "y": 896.0}, "nw": {"x": 1842.0, "y": 896.0}}, "position": {"x": 1837.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7828, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111475, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 892.0}, "se": {"x": 1842.0, "y": 892.0}, "sw": {"x": 1832.0, "y": 882.0}, "nw": {"x": 1842.0, "y": 882.0}}, "position": {"x": 1837.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7829, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111476, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 878.0}, "se": {"x": 1842.0, "y": 878.0}, "sw": {"x": 1832.0, "y": 868.0}, "nw": {"x": 1842.0, "y": 868.0}}, "position": {"x": 1837.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7830, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111477, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 864.0}, "se": {"x": 1842.0, "y": 864.0}, "sw": {"x": 1832.0, "y": 854.0}, "nw": {"x": 1842.0, "y": 854.0}}, "position": {"x": 1837.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7831, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111478, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 850.0}, "se": {"x": 1842.0, "y": 850.0}, "sw": {"x": 1832.0, "y": 840.0}, "nw": {"x": 1842.0, "y": 840.0}}, "position": {"x": 1837.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7832, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111479, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 836.0}, "se": {"x": 1842.0, "y": 836.0}, "sw": {"x": 1832.0, "y": 826.0}, "nw": {"x": 1842.0, "y": 826.0}}, "position": {"x": 1837.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7833, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111480, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 822.0}, "se": {"x": 1842.0, "y": 822.0}, "sw": {"x": 1832.0, "y": 812.0}, "nw": {"x": 1842.0, "y": 812.0}}, "position": {"x": 1837.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7834, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111486, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1018.0}, "se": {"x": 1856.0, "y": 1018.0}, "sw": {"x": 1846.0, "y": 1008.0}, "nw": {"x": 1856.0, "y": 1008.0}}, "position": {"x": 1851.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7907, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111487, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1004.0}, "se": {"x": 1856.0, "y": 1004.0}, "sw": {"x": 1846.0, "y": 994.0}, "nw": {"x": 1856.0, "y": 994.0}}, "position": {"x": 1851.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7908, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111488, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 990.0}, "se": {"x": 1856.0, "y": 990.0}, "sw": {"x": 1846.0, "y": 980.0}, "nw": {"x": 1856.0, "y": 980.0}}, "position": {"x": 1851.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7909, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111489, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 976.0}, "se": {"x": 1856.0, "y": 976.0}, "sw": {"x": 1846.0, "y": 966.0}, "nw": {"x": 1856.0, "y": 966.0}}, "position": {"x": 1851.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7910, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111490, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 962.0}, "se": {"x": 1856.0, "y": 962.0}, "sw": {"x": 1846.0, "y": 952.0}, "nw": {"x": 1856.0, "y": 952.0}}, "position": {"x": 1851.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7911, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111491, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 948.0}, "se": {"x": 1856.0, "y": 948.0}, "sw": {"x": 1846.0, "y": 938.0}, "nw": {"x": 1856.0, "y": 938.0}}, "position": {"x": 1851.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7912, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111492, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 934.0}, "se": {"x": 1856.0, "y": 934.0}, "sw": {"x": 1846.0, "y": 924.0}, "nw": {"x": 1856.0, "y": 924.0}}, "position": {"x": 1851.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7913, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111493, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 920.0}, "se": {"x": 1856.0, "y": 920.0}, "sw": {"x": 1846.0, "y": 910.0}, "nw": {"x": 1856.0, "y": 910.0}}, "position": {"x": 1851.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7914, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111494, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 906.0}, "se": {"x": 1856.0, "y": 906.0}, "sw": {"x": 1846.0, "y": 896.0}, "nw": {"x": 1856.0, "y": 896.0}}, "position": {"x": 1851.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7915, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111495, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 892.0}, "se": {"x": 1856.0, "y": 892.0}, "sw": {"x": 1846.0, "y": 882.0}, "nw": {"x": 1856.0, "y": 882.0}}, "position": {"x": 1851.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7916, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111496, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 878.0}, "se": {"x": 1856.0, "y": 878.0}, "sw": {"x": 1846.0, "y": 868.0}, "nw": {"x": 1856.0, "y": 868.0}}, "position": {"x": 1851.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7917, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111497, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 864.0}, "se": {"x": 1856.0, "y": 864.0}, "sw": {"x": 1846.0, "y": 854.0}, "nw": {"x": 1856.0, "y": 854.0}}, "position": {"x": 1851.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7918, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111498, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 850.0}, "se": {"x": 1856.0, "y": 850.0}, "sw": {"x": 1846.0, "y": 840.0}, "nw": {"x": 1856.0, "y": 840.0}}, "position": {"x": 1851.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7919, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111499, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 836.0}, "se": {"x": 1856.0, "y": 836.0}, "sw": {"x": 1846.0, "y": 826.0}, "nw": {"x": 1856.0, "y": 826.0}}, "position": {"x": 1851.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7920, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111500, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 822.0}, "se": {"x": 1856.0, "y": 822.0}, "sw": {"x": 1846.0, "y": 812.0}, "nw": {"x": 1856.0, "y": 812.0}}, "position": {"x": 1851.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7921, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}], "4:6": [{"logicalSeatId": 1537112661, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1719.0}, "se": {"x": 1024.0, "y": 1729.0}, "sw": {"x": 1034.0, "y": 1719.0}, "nw": {"x": 1034.0, "y": 1729.0}}, "position": {"x": 1029.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2991, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112662, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1719.0}, "se": {"x": 1038.0, "y": 1729.0}, "sw": {"x": 1048.0, "y": 1719.0}, "nw": {"x": 1048.0, "y": 1729.0}}, "position": {"x": 1043.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3071, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112663, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1719.0}, "se": {"x": 1052.0, "y": 1729.0}, "sw": {"x": 1062.0, "y": 1719.0}, "nw": {"x": 1062.0, "y": 1729.0}}, "position": {"x": 1057.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3151, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112664, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1719.0}, "se": {"x": 1066.0, "y": 1729.0}, "sw": {"x": 1076.0, "y": 1719.0}, "nw": {"x": 1076.0, "y": 1729.0}}, "position": {"x": 1071.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3206, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112665, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1719.0}, "se": {"x": 1080.0, "y": 1729.0}, "sw": {"x": 1090.0, "y": 1719.0}, "nw": {"x": 1090.0, "y": 1729.0}}, "position": {"x": 1085.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3255, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112666, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1719.0}, "se": {"x": 1094.0, "y": 1729.0}, "sw": {"x": 1104.0, "y": 1719.0}, "nw": {"x": 1104.0, "y": 1729.0}}, "position": {"x": 1099.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3304, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112667, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1719.0}, "se": {"x": 1108.0, "y": 1729.0}, "sw": {"x": 1118.0, "y": 1719.0}, "nw": {"x": 1118.0, "y": 1729.0}}, "position": {"x": 1113.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3353, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112668, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1719.0}, "se": {"x": 1122.0, "y": 1729.0}, "sw": {"x": 1132.0, "y": 1719.0}, "nw": {"x": 1132.0, "y": 1729.0}}, "position": {"x": 1127.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3402, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112669, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1719.0}, "se": {"x": 1136.0, "y": 1729.0}, "sw": {"x": 1146.0, "y": 1719.0}, "nw": {"x": 1146.0, "y": 1729.0}}, "position": {"x": 1141.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3451, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112670, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1719.0}, "se": {"x": 1150.0, "y": 1729.0}, "sw": {"x": 1160.0, "y": 1719.0}, "nw": {"x": 1160.0, "y": 1729.0}}, "position": {"x": 1155.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3500, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112671, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1719.0}, "se": {"x": 1164.0, "y": 1729.0}, "sw": {"x": 1174.0, "y": 1719.0}, "nw": {"x": 1174.0, "y": 1729.0}}, "position": {"x": 1169.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3549, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112672, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1719.0}, "se": {"x": 1227.0, "y": 1729.0}, "sw": {"x": 1237.0, "y": 1719.0}, "nw": {"x": 1237.0, "y": 1729.0}}, "position": {"x": 1232.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3949, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112673, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1719.0}, "se": {"x": 1241.0, "y": 1729.0}, "sw": {"x": 1251.0, "y": 1719.0}, "nw": {"x": 1251.0, "y": 1729.0}}, "position": {"x": 1246.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4037, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112674, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1719.0}, "se": {"x": 1255.0, "y": 1729.0}, "sw": {"x": 1265.0, "y": 1719.0}, "nw": {"x": 1265.0, "y": 1729.0}}, "position": {"x": 1260.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4125, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112675, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1719.0}, "se": {"x": 1269.0, "y": 1729.0}, "sw": {"x": 1279.0, "y": 1719.0}, "nw": {"x": 1279.0, "y": 1729.0}}, "position": {"x": 1274.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4213, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112699, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1733.0}, "se": {"x": 1024.0, "y": 1743.0}, "sw": {"x": 1034.0, "y": 1733.0}, "nw": {"x": 1034.0, "y": 1743.0}}, "position": {"x": 1029.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2990, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112700, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1733.0}, "se": {"x": 1038.0, "y": 1743.0}, "sw": {"x": 1048.0, "y": 1733.0}, "nw": {"x": 1048.0, "y": 1743.0}}, "position": {"x": 1043.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3070, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112701, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1733.0}, "se": {"x": 1052.0, "y": 1743.0}, "sw": {"x": 1062.0, "y": 1733.0}, "nw": {"x": 1062.0, "y": 1743.0}}, "position": {"x": 1057.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3150, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112702, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1733.0}, "se": {"x": 1066.0, "y": 1743.0}, "sw": {"x": 1076.0, "y": 1733.0}, "nw": {"x": 1076.0, "y": 1743.0}}, "position": {"x": 1071.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3205, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112703, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1733.0}, "se": {"x": 1080.0, "y": 1743.0}, "sw": {"x": 1090.0, "y": 1733.0}, "nw": {"x": 1090.0, "y": 1743.0}}, "position": {"x": 1085.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3254, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112704, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1733.0}, "se": {"x": 1094.0, "y": 1743.0}, "sw": {"x": 1104.0, "y": 1733.0}, "nw": {"x": 1104.0, "y": 1743.0}}, "position": {"x": 1099.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3303, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112705, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1733.0}, "se": {"x": 1108.0, "y": 1743.0}, "sw": {"x": 1118.0, "y": 1733.0}, "nw": {"x": 1118.0, "y": 1743.0}}, "position": {"x": 1113.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3352, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112706, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1733.0}, "se": {"x": 1122.0, "y": 1743.0}, "sw": {"x": 1132.0, "y": 1733.0}, "nw": {"x": 1132.0, "y": 1743.0}}, "position": {"x": 1127.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3401, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112707, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1733.0}, "se": {"x": 1136.0, "y": 1743.0}, "sw": {"x": 1146.0, "y": 1733.0}, "nw": {"x": 1146.0, "y": 1743.0}}, "position": {"x": 1141.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3450, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112708, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1733.0}, "se": {"x": 1150.0, "y": 1743.0}, "sw": {"x": 1160.0, "y": 1733.0}, "nw": {"x": 1160.0, "y": 1743.0}}, "position": {"x": 1155.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3499, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112709, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1733.0}, "se": {"x": 1164.0, "y": 1743.0}, "sw": {"x": 1174.0, "y": 1733.0}, "nw": {"x": 1174.0, "y": 1743.0}}, "position": {"x": 1169.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3548, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112710, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1733.0}, "se": {"x": 1227.0, "y": 1743.0}, "sw": {"x": 1237.0, "y": 1733.0}, "nw": {"x": 1237.0, "y": 1743.0}}, "position": {"x": 1232.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3948, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112711, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1733.0}, "se": {"x": 1241.0, "y": 1743.0}, "sw": {"x": 1251.0, "y": 1733.0}, "nw": {"x": 1251.0, "y": 1743.0}}, "position": {"x": 1246.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4036, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112712, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1733.0}, "se": {"x": 1255.0, "y": 1743.0}, "sw": {"x": 1265.0, "y": 1733.0}, "nw": {"x": 1265.0, "y": 1743.0}}, "position": {"x": 1260.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4124, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112713, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1733.0}, "se": {"x": 1269.0, "y": 1743.0}, "sw": {"x": 1279.0, "y": 1733.0}, "nw": {"x": 1279.0, "y": 1743.0}}, "position": {"x": 1274.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4212, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112737, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1747.0}, "se": {"x": 1024.0, "y": 1757.0}, "sw": {"x": 1034.0, "y": 1747.0}, "nw": {"x": 1034.0, "y": 1757.0}}, "position": {"x": 1029.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2989, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112738, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1747.0}, "se": {"x": 1038.0, "y": 1757.0}, "sw": {"x": 1048.0, "y": 1747.0}, "nw": {"x": 1048.0, "y": 1757.0}}, "position": {"x": 1043.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3069, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112739, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1747.0}, "se": {"x": 1052.0, "y": 1757.0}, "sw": {"x": 1062.0, "y": 1747.0}, "nw": {"x": 1062.0, "y": 1757.0}}, "position": {"x": 1057.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3149, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112740, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1747.0}, "se": {"x": 1066.0, "y": 1757.0}, "sw": {"x": 1076.0, "y": 1747.0}, "nw": {"x": 1076.0, "y": 1757.0}}, "position": {"x": 1071.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3204, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112741, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1747.0}, "se": {"x": 1080.0, "y": 1757.0}, "sw": {"x": 1090.0, "y": 1747.0}, "nw": {"x": 1090.0, "y": 1757.0}}, "position": {"x": 1085.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3253, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112742, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1747.0}, "se": {"x": 1094.0, "y": 1757.0}, "sw": {"x": 1104.0, "y": 1747.0}, "nw": {"x": 1104.0, "y": 1757.0}}, "position": {"x": 1099.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3302, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112743, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1747.0}, "se": {"x": 1108.0, "y": 1757.0}, "sw": {"x": 1118.0, "y": 1747.0}, "nw": {"x": 1118.0, "y": 1757.0}}, "position": {"x": 1113.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3351, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112744, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1747.0}, "se": {"x": 1122.0, "y": 1757.0}, "sw": {"x": 1132.0, "y": 1747.0}, "nw": {"x": 1132.0, "y": 1757.0}}, "position": {"x": 1127.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3400, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112745, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1747.0}, "se": {"x": 1136.0, "y": 1757.0}, "sw": {"x": 1146.0, "y": 1747.0}, "nw": {"x": 1146.0, "y": 1757.0}}, "position": {"x": 1141.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3449, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112746, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1747.0}, "se": {"x": 1150.0, "y": 1757.0}, "sw": {"x": 1160.0, "y": 1747.0}, "nw": {"x": 1160.0, "y": 1757.0}}, "position": {"x": 1155.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3498, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112747, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1747.0}, "se": {"x": 1164.0, "y": 1757.0}, "sw": {"x": 1174.0, "y": 1747.0}, "nw": {"x": 1174.0, "y": 1757.0}}, "position": {"x": 1169.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3547, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112748, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1747.0}, "se": {"x": 1227.0, "y": 1757.0}, "sw": {"x": 1237.0, "y": 1747.0}, "nw": {"x": 1237.0, "y": 1757.0}}, "position": {"x": 1232.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3947, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112749, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1747.0}, "se": {"x": 1241.0, "y": 1757.0}, "sw": {"x": 1251.0, "y": 1747.0}, "nw": {"x": 1251.0, "y": 1757.0}}, "position": {"x": 1246.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4035, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112750, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1747.0}, "se": {"x": 1255.0, "y": 1757.0}, "sw": {"x": 1265.0, "y": 1747.0}, "nw": {"x": 1265.0, "y": 1757.0}}, "position": {"x": 1260.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4123, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112751, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1747.0}, "se": {"x": 1269.0, "y": 1757.0}, "sw": {"x": 1279.0, "y": 1747.0}, "nw": {"x": 1279.0, "y": 1757.0}}, "position": {"x": 1274.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4211, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112775, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1761.0}, "se": {"x": 1024.0, "y": 1771.0}, "sw": {"x": 1034.0, "y": 1761.0}, "nw": {"x": 1034.0, "y": 1771.0}}, "position": {"x": 1029.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2988, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112776, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1761.0}, "se": {"x": 1038.0, "y": 1771.0}, "sw": {"x": 1048.0, "y": 1761.0}, "nw": {"x": 1048.0, "y": 1771.0}}, "position": {"x": 1043.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3068, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112777, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1761.0}, "se": {"x": 1052.0, "y": 1771.0}, "sw": {"x": 1062.0, "y": 1761.0}, "nw": {"x": 1062.0, "y": 1771.0}}, "position": {"x": 1057.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3148, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112778, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1761.0}, "se": {"x": 1066.0, "y": 1771.0}, "sw": {"x": 1076.0, "y": 1761.0}, "nw": {"x": 1076.0, "y": 1771.0}}, "position": {"x": 1071.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3203, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112779, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1761.0}, "se": {"x": 1080.0, "y": 1771.0}, "sw": {"x": 1090.0, "y": 1761.0}, "nw": {"x": 1090.0, "y": 1771.0}}, "position": {"x": 1085.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3252, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112780, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1761.0}, "se": {"x": 1094.0, "y": 1771.0}, "sw": {"x": 1104.0, "y": 1761.0}, "nw": {"x": 1104.0, "y": 1771.0}}, "position": {"x": 1099.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3301, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112781, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1761.0}, "se": {"x": 1108.0, "y": 1771.0}, "sw": {"x": 1118.0, "y": 1761.0}, "nw": {"x": 1118.0, "y": 1771.0}}, "position": {"x": 1113.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3350, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112782, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1761.0}, "se": {"x": 1122.0, "y": 1771.0}, "sw": {"x": 1132.0, "y": 1761.0}, "nw": {"x": 1132.0, "y": 1771.0}}, "position": {"x": 1127.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3399, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112783, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1761.0}, "se": {"x": 1136.0, "y": 1771.0}, "sw": {"x": 1146.0, "y": 1761.0}, "nw": {"x": 1146.0, "y": 1771.0}}, "position": {"x": 1141.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3448, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112784, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1761.0}, "se": {"x": 1150.0, "y": 1771.0}, "sw": {"x": 1160.0, "y": 1761.0}, "nw": {"x": 1160.0, "y": 1771.0}}, "position": {"x": 1155.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3497, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112785, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1761.0}, "se": {"x": 1164.0, "y": 1771.0}, "sw": {"x": 1174.0, "y": 1761.0}, "nw": {"x": 1174.0, "y": 1771.0}}, "position": {"x": 1169.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3546, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112786, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1761.0}, "se": {"x": 1227.0, "y": 1771.0}, "sw": {"x": 1237.0, "y": 1761.0}, "nw": {"x": 1237.0, "y": 1771.0}}, "position": {"x": 1232.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3946, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112787, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1761.0}, "se": {"x": 1241.0, "y": 1771.0}, "sw": {"x": 1251.0, "y": 1761.0}, "nw": {"x": 1251.0, "y": 1771.0}}, "position": {"x": 1246.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4034, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112788, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1761.0}, "se": {"x": 1255.0, "y": 1771.0}, "sw": {"x": 1265.0, "y": 1761.0}, "nw": {"x": 1265.0, "y": 1771.0}}, "position": {"x": 1260.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4122, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112789, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1761.0}, "se": {"x": 1269.0, "y": 1771.0}, "sw": {"x": 1279.0, "y": 1761.0}, "nw": {"x": 1279.0, "y": 1771.0}}, "position": {"x": 1274.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4210, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "6:4": [{"logicalSeatId": 1537115763, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1189.0}, "se": {"x": 1535.0, "y": 1199.0}, "sw": {"x": 1545.0, "y": 1189.0}, "nw": {"x": 1545.0, "y": 1199.0}}, "position": {"x": 1540.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115764, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1189.0}, "se": {"x": 1549.0, "y": 1199.0}, "sw": {"x": 1559.0, "y": 1189.0}, "nw": {"x": 1559.0, "y": 1199.0}}, "position": {"x": 1554.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115765, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1189.0}, "se": {"x": 1563.0, "y": 1199.0}, "sw": {"x": 1573.0, "y": 1189.0}, "nw": {"x": 1573.0, "y": 1199.0}}, "position": {"x": 1568.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115766, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1189.0}, "se": {"x": 1577.0, "y": 1199.0}, "sw": {"x": 1587.0, "y": 1189.0}, "nw": {"x": 1587.0, "y": 1199.0}}, "position": {"x": 1582.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115767, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1189.0}, "se": {"x": 1591.0, "y": 1199.0}, "sw": {"x": 1601.0, "y": 1189.0}, "nw": {"x": 1601.0, "y": 1199.0}}, "position": {"x": 1596.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115773, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1203.0}, "se": {"x": 1535.0, "y": 1213.0}, "sw": {"x": 1545.0, "y": 1203.0}, "nw": {"x": 1545.0, "y": 1213.0}}, "position": {"x": 1540.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115774, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1203.0}, "se": {"x": 1549.0, "y": 1213.0}, "sw": {"x": 1559.0, "y": 1203.0}, "nw": {"x": 1559.0, "y": 1213.0}}, "position": {"x": 1554.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115775, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1203.0}, "se": {"x": 1563.0, "y": 1213.0}, "sw": {"x": 1573.0, "y": 1203.0}, "nw": {"x": 1573.0, "y": 1213.0}}, "position": {"x": 1568.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115776, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1203.0}, "se": {"x": 1577.0, "y": 1213.0}, "sw": {"x": 1587.0, "y": 1203.0}, "nw": {"x": 1587.0, "y": 1213.0}}, "position": {"x": 1582.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115777, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1203.0}, "se": {"x": 1591.0, "y": 1213.0}, "sw": {"x": 1601.0, "y": 1203.0}, "nw": {"x": 1601.0, "y": 1213.0}}, "position": {"x": 1596.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115783, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1217.0}, "se": {"x": 1535.0, "y": 1227.0}, "sw": {"x": 1545.0, "y": 1217.0}, "nw": {"x": 1545.0, "y": 1227.0}}, "position": {"x": 1540.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115784, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1217.0}, "se": {"x": 1549.0, "y": 1227.0}, "sw": {"x": 1559.0, "y": 1217.0}, "nw": {"x": 1559.0, "y": 1227.0}}, "position": {"x": 1554.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115785, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1217.0}, "se": {"x": 1563.0, "y": 1227.0}, "sw": {"x": 1573.0, "y": 1217.0}, "nw": {"x": 1573.0, "y": 1227.0}}, "position": {"x": 1568.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115786, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1217.0}, "se": {"x": 1577.0, "y": 1227.0}, "sw": {"x": 1587.0, "y": 1217.0}, "nw": {"x": 1587.0, "y": 1227.0}}, "position": {"x": 1582.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115787, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1217.0}, "se": {"x": 1591.0, "y": 1227.0}, "sw": {"x": 1601.0, "y": 1217.0}, "nw": {"x": 1601.0, "y": 1227.0}}, "position": {"x": 1596.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115793, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1231.0}, "se": {"x": 1535.0, "y": 1241.0}, "sw": {"x": 1545.0, "y": 1231.0}, "nw": {"x": 1545.0, "y": 1241.0}}, "position": {"x": 1540.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115794, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1231.0}, "se": {"x": 1549.0, "y": 1241.0}, "sw": {"x": 1559.0, "y": 1231.0}, "nw": {"x": 1559.0, "y": 1241.0}}, "position": {"x": 1554.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115795, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1231.0}, "se": {"x": 1563.0, "y": 1241.0}, "sw": {"x": 1573.0, "y": 1231.0}, "nw": {"x": 1573.0, "y": 1241.0}}, "position": {"x": 1568.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115796, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1231.0}, "se": {"x": 1577.0, "y": 1241.0}, "sw": {"x": 1587.0, "y": 1231.0}, "nw": {"x": 1587.0, "y": 1241.0}}, "position": {"x": 1582.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115797, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1231.0}, "se": {"x": 1591.0, "y": 1241.0}, "sw": {"x": 1601.0, "y": 1231.0}, "nw": {"x": 1601.0, "y": 1241.0}}, "position": {"x": 1596.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115803, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1245.0}, "se": {"x": 1535.0, "y": 1255.0}, "sw": {"x": 1545.0, "y": 1245.0}, "nw": {"x": 1545.0, "y": 1255.0}}, "position": {"x": 1540.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115804, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1245.0}, "se": {"x": 1549.0, "y": 1255.0}, "sw": {"x": 1559.0, "y": 1245.0}, "nw": {"x": 1559.0, "y": 1255.0}}, "position": {"x": 1554.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115805, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1245.0}, "se": {"x": 1563.0, "y": 1255.0}, "sw": {"x": 1573.0, "y": 1245.0}, "nw": {"x": 1573.0, "y": 1255.0}}, "position": {"x": 1568.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115806, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1245.0}, "se": {"x": 1577.0, "y": 1255.0}, "sw": {"x": 1587.0, "y": 1245.0}, "nw": {"x": 1587.0, "y": 1255.0}}, "position": {"x": 1582.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115807, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1245.0}, "se": {"x": 1591.0, "y": 1255.0}, "sw": {"x": 1601.0, "y": 1245.0}, "nw": {"x": 1601.0, "y": 1255.0}}, "position": {"x": 1596.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115813, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1259.0}, "se": {"x": 1535.0, "y": 1269.0}, "sw": {"x": 1545.0, "y": 1259.0}, "nw": {"x": 1545.0, "y": 1269.0}}, "position": {"x": 1540.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115814, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1259.0}, "se": {"x": 1549.0, "y": 1269.0}, "sw": {"x": 1559.0, "y": 1259.0}, "nw": {"x": 1559.0, "y": 1269.0}}, "position": {"x": 1554.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115815, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1259.0}, "se": {"x": 1563.0, "y": 1269.0}, "sw": {"x": 1573.0, "y": 1259.0}, "nw": {"x": 1573.0, "y": 1269.0}}, "position": {"x": 1568.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115816, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1259.0}, "se": {"x": 1577.0, "y": 1269.0}, "sw": {"x": 1587.0, "y": 1259.0}, "nw": {"x": 1587.0, "y": 1269.0}}, "position": {"x": 1582.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115817, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1259.0}, "se": {"x": 1591.0, "y": 1269.0}, "sw": {"x": 1601.0, "y": 1259.0}, "nw": {"x": 1601.0, "y": 1269.0}}, "position": {"x": 1596.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115823, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1273.0}, "se": {"x": 1535.0, "y": 1283.0}, "sw": {"x": 1545.0, "y": 1273.0}, "nw": {"x": 1545.0, "y": 1283.0}}, "position": {"x": 1540.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115824, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1273.0}, "se": {"x": 1549.0, "y": 1283.0}, "sw": {"x": 1559.0, "y": 1273.0}, "nw": {"x": 1559.0, "y": 1283.0}}, "position": {"x": 1554.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115825, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1273.0}, "se": {"x": 1563.0, "y": 1283.0}, "sw": {"x": 1573.0, "y": 1273.0}, "nw": {"x": 1573.0, "y": 1283.0}}, "position": {"x": 1568.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115826, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1273.0}, "se": {"x": 1577.0, "y": 1283.0}, "sw": {"x": 1587.0, "y": 1273.0}, "nw": {"x": 1587.0, "y": 1283.0}}, "position": {"x": 1582.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115827, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1273.0}, "se": {"x": 1591.0, "y": 1283.0}, "sw": {"x": 1601.0, "y": 1273.0}, "nw": {"x": 1601.0, "y": 1283.0}}, "position": {"x": 1596.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "5:6": [{"logicalSeatId": 1537112676, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1719.0}, "se": {"x": 1283.0, "y": 1729.0}, "sw": {"x": 1293.0, "y": 1719.0}, "nw": {"x": 1293.0, "y": 1729.0}}, "position": {"x": 1288.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4301, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112677, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1719.0}, "se": {"x": 1297.0, "y": 1729.0}, "sw": {"x": 1307.0, "y": 1719.0}, "nw": {"x": 1307.0, "y": 1729.0}}, "position": {"x": 1302.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4413, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112678, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1719.0}, "se": {"x": 1311.0, "y": 1729.0}, "sw": {"x": 1321.0, "y": 1719.0}, "nw": {"x": 1321.0, "y": 1729.0}}, "position": {"x": 1316.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4525, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112679, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1719.0}, "se": {"x": 1325.0, "y": 1729.0}, "sw": {"x": 1335.0, "y": 1719.0}, "nw": {"x": 1335.0, "y": 1729.0}}, "position": {"x": 1330.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4643, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112680, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1719.0}, "se": {"x": 1339.0, "y": 1729.0}, "sw": {"x": 1349.0, "y": 1719.0}, "nw": {"x": 1349.0, "y": 1729.0}}, "position": {"x": 1344.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4761, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112681, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1719.0}, "se": {"x": 1353.0, "y": 1729.0}, "sw": {"x": 1363.0, "y": 1719.0}, "nw": {"x": 1363.0, "y": 1729.0}}, "position": {"x": 1358.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4929, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112682, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1719.0}, "se": {"x": 1367.0, "y": 1729.0}, "sw": {"x": 1377.0, "y": 1719.0}, "nw": {"x": 1377.0, "y": 1729.0}}, "position": {"x": 1372.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5097, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112683, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1719.0}, "se": {"x": 1381.0, "y": 1729.0}, "sw": {"x": 1391.0, "y": 1719.0}, "nw": {"x": 1391.0, "y": 1729.0}}, "position": {"x": 1386.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5265, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112684, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1719.0}, "se": {"x": 1395.0, "y": 1729.0}, "sw": {"x": 1405.0, "y": 1719.0}, "nw": {"x": 1405.0, "y": 1729.0}}, "position": {"x": 1400.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5433, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112685, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1719.0}, "se": {"x": 1409.0, "y": 1729.0}, "sw": {"x": 1419.0, "y": 1719.0}, "nw": {"x": 1419.0, "y": 1729.0}}, "position": {"x": 1414.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5601, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112686, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1719.0}, "se": {"x": 1423.0, "y": 1729.0}, "sw": {"x": 1433.0, "y": 1719.0}, "nw": {"x": 1433.0, "y": 1729.0}}, "position": {"x": 1428.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5791, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112687, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1719.0}, "se": {"x": 1437.0, "y": 1729.0}, "sw": {"x": 1447.0, "y": 1719.0}, "nw": {"x": 1447.0, "y": 1729.0}}, "position": {"x": 1442.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5981, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112688, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1719.0}, "se": {"x": 1451.0, "y": 1729.0}, "sw": {"x": 1461.0, "y": 1719.0}, "nw": {"x": 1461.0, "y": 1729.0}}, "position": {"x": 1456.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6171, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112689, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1719.0}, "se": {"x": 1465.0, "y": 1729.0}, "sw": {"x": 1475.0, "y": 1719.0}, "nw": {"x": 1475.0, "y": 1729.0}}, "position": {"x": 1470.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6361, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112690, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1719.0}, "se": {"x": 1479.0, "y": 1729.0}, "sw": {"x": 1489.0, "y": 1719.0}, "nw": {"x": 1489.0, "y": 1729.0}}, "position": {"x": 1484.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6551, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112714, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1733.0}, "se": {"x": 1283.0, "y": 1743.0}, "sw": {"x": 1293.0, "y": 1733.0}, "nw": {"x": 1293.0, "y": 1743.0}}, "position": {"x": 1288.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4300, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112715, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1733.0}, "se": {"x": 1297.0, "y": 1743.0}, "sw": {"x": 1307.0, "y": 1733.0}, "nw": {"x": 1307.0, "y": 1743.0}}, "position": {"x": 1302.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4412, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112716, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1733.0}, "se": {"x": 1311.0, "y": 1743.0}, "sw": {"x": 1321.0, "y": 1733.0}, "nw": {"x": 1321.0, "y": 1743.0}}, "position": {"x": 1316.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4524, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112717, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1733.0}, "se": {"x": 1325.0, "y": 1743.0}, "sw": {"x": 1335.0, "y": 1733.0}, "nw": {"x": 1335.0, "y": 1743.0}}, "position": {"x": 1330.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4642, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112718, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1733.0}, "se": {"x": 1339.0, "y": 1743.0}, "sw": {"x": 1349.0, "y": 1733.0}, "nw": {"x": 1349.0, "y": 1743.0}}, "position": {"x": 1344.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4760, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112719, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1733.0}, "se": {"x": 1353.0, "y": 1743.0}, "sw": {"x": 1363.0, "y": 1733.0}, "nw": {"x": 1363.0, "y": 1743.0}}, "position": {"x": 1358.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4928, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112720, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1733.0}, "se": {"x": 1367.0, "y": 1743.0}, "sw": {"x": 1377.0, "y": 1733.0}, "nw": {"x": 1377.0, "y": 1743.0}}, "position": {"x": 1372.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5096, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112721, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1733.0}, "se": {"x": 1381.0, "y": 1743.0}, "sw": {"x": 1391.0, "y": 1733.0}, "nw": {"x": 1391.0, "y": 1743.0}}, "position": {"x": 1386.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5264, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112722, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1733.0}, "se": {"x": 1395.0, "y": 1743.0}, "sw": {"x": 1405.0, "y": 1733.0}, "nw": {"x": 1405.0, "y": 1743.0}}, "position": {"x": 1400.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5432, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112723, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1733.0}, "se": {"x": 1409.0, "y": 1743.0}, "sw": {"x": 1419.0, "y": 1733.0}, "nw": {"x": 1419.0, "y": 1743.0}}, "position": {"x": 1414.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5600, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112724, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1733.0}, "se": {"x": 1423.0, "y": 1743.0}, "sw": {"x": 1433.0, "y": 1733.0}, "nw": {"x": 1433.0, "y": 1743.0}}, "position": {"x": 1428.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5790, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112725, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1733.0}, "se": {"x": 1437.0, "y": 1743.0}, "sw": {"x": 1447.0, "y": 1733.0}, "nw": {"x": 1447.0, "y": 1743.0}}, "position": {"x": 1442.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5980, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112726, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1733.0}, "se": {"x": 1451.0, "y": 1743.0}, "sw": {"x": 1461.0, "y": 1733.0}, "nw": {"x": 1461.0, "y": 1743.0}}, "position": {"x": 1456.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6170, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112727, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1733.0}, "se": {"x": 1465.0, "y": 1743.0}, "sw": {"x": 1475.0, "y": 1733.0}, "nw": {"x": 1475.0, "y": 1743.0}}, "position": {"x": 1470.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6360, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112728, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1733.0}, "se": {"x": 1479.0, "y": 1743.0}, "sw": {"x": 1489.0, "y": 1733.0}, "nw": {"x": 1489.0, "y": 1743.0}}, "position": {"x": 1484.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6550, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112752, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1747.0}, "se": {"x": 1283.0, "y": 1757.0}, "sw": {"x": 1293.0, "y": 1747.0}, "nw": {"x": 1293.0, "y": 1757.0}}, "position": {"x": 1288.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4299, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112753, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1747.0}, "se": {"x": 1297.0, "y": 1757.0}, "sw": {"x": 1307.0, "y": 1747.0}, "nw": {"x": 1307.0, "y": 1757.0}}, "position": {"x": 1302.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4411, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112754, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1747.0}, "se": {"x": 1311.0, "y": 1757.0}, "sw": {"x": 1321.0, "y": 1747.0}, "nw": {"x": 1321.0, "y": 1757.0}}, "position": {"x": 1316.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4523, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112755, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1747.0}, "se": {"x": 1325.0, "y": 1757.0}, "sw": {"x": 1335.0, "y": 1747.0}, "nw": {"x": 1335.0, "y": 1757.0}}, "position": {"x": 1330.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4641, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112756, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1747.0}, "se": {"x": 1339.0, "y": 1757.0}, "sw": {"x": 1349.0, "y": 1747.0}, "nw": {"x": 1349.0, "y": 1757.0}}, "position": {"x": 1344.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4759, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112757, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1747.0}, "se": {"x": 1353.0, "y": 1757.0}, "sw": {"x": 1363.0, "y": 1747.0}, "nw": {"x": 1363.0, "y": 1757.0}}, "position": {"x": 1358.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4927, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112758, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1747.0}, "se": {"x": 1367.0, "y": 1757.0}, "sw": {"x": 1377.0, "y": 1747.0}, "nw": {"x": 1377.0, "y": 1757.0}}, "position": {"x": 1372.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5095, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112759, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1747.0}, "se": {"x": 1381.0, "y": 1757.0}, "sw": {"x": 1391.0, "y": 1747.0}, "nw": {"x": 1391.0, "y": 1757.0}}, "position": {"x": 1386.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5263, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112760, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1747.0}, "se": {"x": 1395.0, "y": 1757.0}, "sw": {"x": 1405.0, "y": 1747.0}, "nw": {"x": 1405.0, "y": 1757.0}}, "position": {"x": 1400.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5431, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112761, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1747.0}, "se": {"x": 1409.0, "y": 1757.0}, "sw": {"x": 1419.0, "y": 1747.0}, "nw": {"x": 1419.0, "y": 1757.0}}, "position": {"x": 1414.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5599, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112762, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1747.0}, "se": {"x": 1423.0, "y": 1757.0}, "sw": {"x": 1433.0, "y": 1747.0}, "nw": {"x": 1433.0, "y": 1757.0}}, "position": {"x": 1428.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5789, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112763, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1747.0}, "se": {"x": 1437.0, "y": 1757.0}, "sw": {"x": 1447.0, "y": 1747.0}, "nw": {"x": 1447.0, "y": 1757.0}}, "position": {"x": 1442.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5979, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112764, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1747.0}, "se": {"x": 1451.0, "y": 1757.0}, "sw": {"x": 1461.0, "y": 1747.0}, "nw": {"x": 1461.0, "y": 1757.0}}, "position": {"x": 1456.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6169, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112765, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1747.0}, "se": {"x": 1465.0, "y": 1757.0}, "sw": {"x": 1475.0, "y": 1747.0}, "nw": {"x": 1475.0, "y": 1757.0}}, "position": {"x": 1470.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6359, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112766, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1747.0}, "se": {"x": 1479.0, "y": 1757.0}, "sw": {"x": 1489.0, "y": 1747.0}, "nw": {"x": 1489.0, "y": 1757.0}}, "position": {"x": 1484.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6549, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112790, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1761.0}, "se": {"x": 1283.0, "y": 1771.0}, "sw": {"x": 1293.0, "y": 1761.0}, "nw": {"x": 1293.0, "y": 1771.0}}, "position": {"x": 1288.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4298, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112791, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1761.0}, "se": {"x": 1297.0, "y": 1771.0}, "sw": {"x": 1307.0, "y": 1761.0}, "nw": {"x": 1307.0, "y": 1771.0}}, "position": {"x": 1302.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4410, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112792, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1761.0}, "se": {"x": 1311.0, "y": 1771.0}, "sw": {"x": 1321.0, "y": 1761.0}, "nw": {"x": 1321.0, "y": 1771.0}}, "position": {"x": 1316.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4522, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112793, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1761.0}, "se": {"x": 1325.0, "y": 1771.0}, "sw": {"x": 1335.0, "y": 1761.0}, "nw": {"x": 1335.0, "y": 1771.0}}, "position": {"x": 1330.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4640, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112794, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1761.0}, "se": {"x": 1339.0, "y": 1771.0}, "sw": {"x": 1349.0, "y": 1761.0}, "nw": {"x": 1349.0, "y": 1771.0}}, "position": {"x": 1344.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4758, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112795, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1761.0}, "se": {"x": 1353.0, "y": 1771.0}, "sw": {"x": 1363.0, "y": 1761.0}, "nw": {"x": 1363.0, "y": 1771.0}}, "position": {"x": 1358.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4926, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112796, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1761.0}, "se": {"x": 1367.0, "y": 1771.0}, "sw": {"x": 1377.0, "y": 1761.0}, "nw": {"x": 1377.0, "y": 1771.0}}, "position": {"x": 1372.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5094, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112797, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1761.0}, "se": {"x": 1381.0, "y": 1771.0}, "sw": {"x": 1391.0, "y": 1761.0}, "nw": {"x": 1391.0, "y": 1771.0}}, "position": {"x": 1386.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5262, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112798, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1761.0}, "se": {"x": 1395.0, "y": 1771.0}, "sw": {"x": 1405.0, "y": 1761.0}, "nw": {"x": 1405.0, "y": 1771.0}}, "position": {"x": 1400.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5430, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112799, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1761.0}, "se": {"x": 1409.0, "y": 1771.0}, "sw": {"x": 1419.0, "y": 1761.0}, "nw": {"x": 1419.0, "y": 1771.0}}, "position": {"x": 1414.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5598, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112800, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1761.0}, "se": {"x": 1423.0, "y": 1771.0}, "sw": {"x": 1433.0, "y": 1761.0}, "nw": {"x": 1433.0, "y": 1771.0}}, "position": {"x": 1428.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5788, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112801, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1761.0}, "se": {"x": 1437.0, "y": 1771.0}, "sw": {"x": 1447.0, "y": 1761.0}, "nw": {"x": 1447.0, "y": 1771.0}}, "position": {"x": 1442.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5978, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112802, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1761.0}, "se": {"x": 1451.0, "y": 1771.0}, "sw": {"x": 1461.0, "y": 1761.0}, "nw": {"x": 1461.0, "y": 1771.0}}, "position": {"x": 1456.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6168, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112803, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1761.0}, "se": {"x": 1465.0, "y": 1771.0}, "sw": {"x": 1475.0, "y": 1761.0}, "nw": {"x": 1475.0, "y": 1771.0}}, "position": {"x": 1470.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6358, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112804, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1761.0}, "se": {"x": 1479.0, "y": 1771.0}, "sw": {"x": 1489.0, "y": 1761.0}, "nw": {"x": 1489.0, "y": 1771.0}}, "position": {"x": 1484.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6548, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "7:4": [{"logicalSeatId": 1537111421, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1088.0}, "se": {"x": 1814.0, "y": 1088.0}, "sw": {"x": 1804.0, "y": 1078.0}, "nw": {"x": 1814.0, "y": 1078.0}}, "position": {"x": 1809.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7641, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111422, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1074.0}, "se": {"x": 1814.0, "y": 1074.0}, "sw": {"x": 1804.0, "y": 1064.0}, "nw": {"x": 1814.0, "y": 1064.0}}, "position": {"x": 1809.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7642, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111423, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1060.0}, "se": {"x": 1814.0, "y": 1060.0}, "sw": {"x": 1804.0, "y": 1050.0}, "nw": {"x": 1814.0, "y": 1050.0}}, "position": {"x": 1809.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7643, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111424, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1046.0}, "se": {"x": 1814.0, "y": 1046.0}, "sw": {"x": 1804.0, "y": 1036.0}, "nw": {"x": 1814.0, "y": 1036.0}}, "position": {"x": 1809.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7644, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111425, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1032.0}, "se": {"x": 1814.0, "y": 1032.0}, "sw": {"x": 1804.0, "y": 1022.0}, "nw": {"x": 1814.0, "y": 1022.0}}, "position": {"x": 1809.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7645, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111441, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1088.0}, "se": {"x": 1828.0, "y": 1088.0}, "sw": {"x": 1818.0, "y": 1078.0}, "nw": {"x": 1828.0, "y": 1078.0}}, "position": {"x": 1823.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7728, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111442, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1074.0}, "se": {"x": 1828.0, "y": 1074.0}, "sw": {"x": 1818.0, "y": 1064.0}, "nw": {"x": 1828.0, "y": 1064.0}}, "position": {"x": 1823.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7729, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111443, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1060.0}, "se": {"x": 1828.0, "y": 1060.0}, "sw": {"x": 1818.0, "y": 1050.0}, "nw": {"x": 1828.0, "y": 1050.0}}, "position": {"x": 1823.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7730, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111444, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1046.0}, "se": {"x": 1828.0, "y": 1046.0}, "sw": {"x": 1818.0, "y": 1036.0}, "nw": {"x": 1828.0, "y": 1036.0}}, "position": {"x": 1823.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7731, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111445, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1032.0}, "se": {"x": 1828.0, "y": 1032.0}, "sw": {"x": 1818.0, "y": 1022.0}, "nw": {"x": 1828.0, "y": 1022.0}}, "position": {"x": 1823.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7732, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111461, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1088.0}, "se": {"x": 1842.0, "y": 1088.0}, "sw": {"x": 1832.0, "y": 1078.0}, "nw": {"x": 1842.0, "y": 1078.0}}, "position": {"x": 1837.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7815, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111462, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1074.0}, "se": {"x": 1842.0, "y": 1074.0}, "sw": {"x": 1832.0, "y": 1064.0}, "nw": {"x": 1842.0, "y": 1064.0}}, "position": {"x": 1837.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7816, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111463, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1060.0}, "se": {"x": 1842.0, "y": 1060.0}, "sw": {"x": 1832.0, "y": 1050.0}, "nw": {"x": 1842.0, "y": 1050.0}}, "position": {"x": 1837.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7817, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111464, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1046.0}, "se": {"x": 1842.0, "y": 1046.0}, "sw": {"x": 1832.0, "y": 1036.0}, "nw": {"x": 1842.0, "y": 1036.0}}, "position": {"x": 1837.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7818, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111465, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1032.0}, "se": {"x": 1842.0, "y": 1032.0}, "sw": {"x": 1832.0, "y": 1022.0}, "nw": {"x": 1842.0, "y": 1022.0}}, "position": {"x": 1837.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7819, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111481, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1088.0}, "se": {"x": 1856.0, "y": 1088.0}, "sw": {"x": 1846.0, "y": 1078.0}, "nw": {"x": 1856.0, "y": 1078.0}}, "position": {"x": 1851.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7902, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111482, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1074.0}, "se": {"x": 1856.0, "y": 1074.0}, "sw": {"x": 1846.0, "y": 1064.0}, "nw": {"x": 1856.0, "y": 1064.0}}, "position": {"x": 1851.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7903, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111483, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1060.0}, "se": {"x": 1856.0, "y": 1060.0}, "sw": {"x": 1846.0, "y": 1050.0}, "nw": {"x": 1856.0, "y": 1050.0}}, "position": {"x": 1851.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7904, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111484, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1046.0}, "se": {"x": 1856.0, "y": 1046.0}, "sw": {"x": 1846.0, "y": 1036.0}, "nw": {"x": 1856.0, "y": 1036.0}}, "position": {"x": 1851.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7905, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537111485, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1032.0}, "se": {"x": 1856.0, "y": 1032.0}, "sw": {"x": 1846.0, "y": 1022.0}, "nw": {"x": 1856.0, "y": 1022.0}}, "position": {"x": 1851.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7906, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}], "4:7": [{"logicalSeatId": 1537112837, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1803.0}, "se": {"x": 1024.0, "y": 1813.0}, "sw": {"x": 1034.0, "y": 1803.0}, "nw": {"x": 1034.0, "y": 1813.0}}, "position": {"x": 1029.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2986, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112838, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1803.0}, "se": {"x": 1038.0, "y": 1813.0}, "sw": {"x": 1048.0, "y": 1803.0}, "nw": {"x": 1048.0, "y": 1813.0}}, "position": {"x": 1043.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3066, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112839, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1803.0}, "se": {"x": 1052.0, "y": 1813.0}, "sw": {"x": 1062.0, "y": 1803.0}, "nw": {"x": 1062.0, "y": 1813.0}}, "position": {"x": 1057.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3146, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112840, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1803.0}, "se": {"x": 1066.0, "y": 1813.0}, "sw": {"x": 1076.0, "y": 1803.0}, "nw": {"x": 1076.0, "y": 1813.0}}, "position": {"x": 1071.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3201, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112861, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1817.0}, "se": {"x": 1024.0, "y": 1827.0}, "sw": {"x": 1034.0, "y": 1817.0}, "nw": {"x": 1034.0, "y": 1827.0}}, "position": {"x": 1029.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2985, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112862, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1817.0}, "se": {"x": 1038.0, "y": 1827.0}, "sw": {"x": 1048.0, "y": 1817.0}, "nw": {"x": 1048.0, "y": 1827.0}}, "position": {"x": 1043.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3065, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112863, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1817.0}, "se": {"x": 1052.0, "y": 1827.0}, "sw": {"x": 1062.0, "y": 1817.0}, "nw": {"x": 1062.0, "y": 1827.0}}, "position": {"x": 1057.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3145, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112864, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1817.0}, "se": {"x": 1066.0, "y": 1827.0}, "sw": {"x": 1076.0, "y": 1817.0}, "nw": {"x": 1076.0, "y": 1827.0}}, "position": {"x": 1071.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3200, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112885, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1831.0}, "se": {"x": 1024.0, "y": 1841.0}, "sw": {"x": 1034.0, "y": 1831.0}, "nw": {"x": 1034.0, "y": 1841.0}}, "position": {"x": 1029.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2984, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112886, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1831.0}, "se": {"x": 1038.0, "y": 1841.0}, "sw": {"x": 1048.0, "y": 1831.0}, "nw": {"x": 1048.0, "y": 1841.0}}, "position": {"x": 1043.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3064, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112887, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1831.0}, "se": {"x": 1052.0, "y": 1841.0}, "sw": {"x": 1062.0, "y": 1831.0}, "nw": {"x": 1062.0, "y": 1841.0}}, "position": {"x": 1057.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3144, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112888, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1831.0}, "se": {"x": 1066.0, "y": 1841.0}, "sw": {"x": 1076.0, "y": 1831.0}, "nw": {"x": 1076.0, "y": 1841.0}}, "position": {"x": 1071.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3199, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112909, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1845.0}, "se": {"x": 1024.0, "y": 1855.0}, "sw": {"x": 1034.0, "y": 1845.0}, "nw": {"x": 1034.0, "y": 1855.0}}, "position": {"x": 1029.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2983, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112910, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1845.0}, "se": {"x": 1038.0, "y": 1855.0}, "sw": {"x": 1048.0, "y": 1845.0}, "nw": {"x": 1048.0, "y": 1855.0}}, "position": {"x": 1043.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3063, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112911, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1845.0}, "se": {"x": 1052.0, "y": 1855.0}, "sw": {"x": 1062.0, "y": 1845.0}, "nw": {"x": 1062.0, "y": 1855.0}}, "position": {"x": 1057.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3143, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112912, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1845.0}, "se": {"x": 1066.0, "y": 1855.0}, "sw": {"x": 1076.0, "y": 1845.0}, "nw": {"x": 1076.0, "y": 1855.0}}, "position": {"x": 1071.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3198, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112933, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1859.0}, "se": {"x": 1024.0, "y": 1869.0}, "sw": {"x": 1034.0, "y": 1859.0}, "nw": {"x": 1034.0, "y": 1869.0}}, "position": {"x": 1029.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2982, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112934, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1859.0}, "se": {"x": 1038.0, "y": 1869.0}, "sw": {"x": 1048.0, "y": 1859.0}, "nw": {"x": 1048.0, "y": 1869.0}}, "position": {"x": 1043.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3062, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112935, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1859.0}, "se": {"x": 1052.0, "y": 1869.0}, "sw": {"x": 1062.0, "y": 1859.0}, "nw": {"x": 1062.0, "y": 1869.0}}, "position": {"x": 1057.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3142, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112936, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1859.0}, "se": {"x": 1066.0, "y": 1869.0}, "sw": {"x": 1076.0, "y": 1859.0}, "nw": {"x": 1076.0, "y": 1869.0}}, "position": {"x": 1071.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3197, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112957, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1873.0}, "se": {"x": 1024.0, "y": 1883.0}, "sw": {"x": 1034.0, "y": 1873.0}, "nw": {"x": 1034.0, "y": 1883.0}}, "position": {"x": 1029.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2981, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112958, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1873.0}, "se": {"x": 1038.0, "y": 1883.0}, "sw": {"x": 1048.0, "y": 1873.0}, "nw": {"x": 1048.0, "y": 1883.0}}, "position": {"x": 1043.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3061, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112959, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1873.0}, "se": {"x": 1052.0, "y": 1883.0}, "sw": {"x": 1062.0, "y": 1873.0}, "nw": {"x": 1062.0, "y": 1883.0}}, "position": {"x": 1057.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3141, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112960, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1873.0}, "se": {"x": 1066.0, "y": 1883.0}, "sw": {"x": 1076.0, "y": 1873.0}, "nw": {"x": 1076.0, "y": 1883.0}}, "position": {"x": 1071.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3196, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112961, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1873.0}, "se": {"x": 1080.0, "y": 1883.0}, "sw": {"x": 1090.0, "y": 1873.0}, "nw": {"x": 1090.0, "y": 1883.0}}, "position": {"x": 1085.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3251, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112962, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1873.0}, "se": {"x": 1094.0, "y": 1883.0}, "sw": {"x": 1104.0, "y": 1873.0}, "nw": {"x": 1104.0, "y": 1883.0}}, "position": {"x": 1099.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3300, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112963, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1873.0}, "se": {"x": 1108.0, "y": 1883.0}, "sw": {"x": 1118.0, "y": 1873.0}, "nw": {"x": 1118.0, "y": 1883.0}}, "position": {"x": 1113.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3349, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112964, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1873.0}, "se": {"x": 1122.0, "y": 1883.0}, "sw": {"x": 1132.0, "y": 1873.0}, "nw": {"x": 1132.0, "y": 1883.0}}, "position": {"x": 1127.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3398, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112965, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1873.0}, "se": {"x": 1136.0, "y": 1883.0}, "sw": {"x": 1146.0, "y": 1873.0}, "nw": {"x": 1146.0, "y": 1883.0}}, "position": {"x": 1141.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3447, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112966, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1873.0}, "se": {"x": 1150.0, "y": 1883.0}, "sw": {"x": 1160.0, "y": 1873.0}, "nw": {"x": 1160.0, "y": 1883.0}}, "position": {"x": 1155.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3496, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112967, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1873.0}, "se": {"x": 1164.0, "y": 1883.0}, "sw": {"x": 1174.0, "y": 1873.0}, "nw": {"x": 1174.0, "y": 1883.0}}, "position": {"x": 1169.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3545, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112968, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1873.0}, "se": {"x": 1227.0, "y": 1883.0}, "sw": {"x": 1237.0, "y": 1873.0}, "nw": {"x": 1237.0, "y": 1883.0}}, "position": {"x": 1232.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3945, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112969, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1873.0}, "se": {"x": 1241.0, "y": 1883.0}, "sw": {"x": 1251.0, "y": 1873.0}, "nw": {"x": 1251.0, "y": 1883.0}}, "position": {"x": 1246.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4033, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112970, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1873.0}, "se": {"x": 1255.0, "y": 1883.0}, "sw": {"x": 1265.0, "y": 1873.0}, "nw": {"x": 1265.0, "y": 1883.0}}, "position": {"x": 1260.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4121, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112971, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1873.0}, "se": {"x": 1269.0, "y": 1883.0}, "sw": {"x": 1279.0, "y": 1873.0}, "nw": {"x": 1279.0, "y": 1883.0}}, "position": {"x": 1274.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4209, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112995, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1887.0}, "se": {"x": 1024.0, "y": 1897.0}, "sw": {"x": 1034.0, "y": 1887.0}, "nw": {"x": 1034.0, "y": 1897.0}}, "position": {"x": 1029.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2980, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112996, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1887.0}, "se": {"x": 1038.0, "y": 1897.0}, "sw": {"x": 1048.0, "y": 1887.0}, "nw": {"x": 1048.0, "y": 1897.0}}, "position": {"x": 1043.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3060, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112997, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1887.0}, "se": {"x": 1052.0, "y": 1897.0}, "sw": {"x": 1062.0, "y": 1887.0}, "nw": {"x": 1062.0, "y": 1897.0}}, "position": {"x": 1057.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3140, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112998, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1887.0}, "se": {"x": 1066.0, "y": 1897.0}, "sw": {"x": 1076.0, "y": 1887.0}, "nw": {"x": 1076.0, "y": 1897.0}}, "position": {"x": 1071.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3195, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112999, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1887.0}, "se": {"x": 1080.0, "y": 1897.0}, "sw": {"x": 1090.0, "y": 1887.0}, "nw": {"x": 1090.0, "y": 1897.0}}, "position": {"x": 1085.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3250, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113000, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1887.0}, "se": {"x": 1094.0, "y": 1897.0}, "sw": {"x": 1104.0, "y": 1887.0}, "nw": {"x": 1104.0, "y": 1897.0}}, "position": {"x": 1099.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3299, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113001, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1887.0}, "se": {"x": 1108.0, "y": 1897.0}, "sw": {"x": 1118.0, "y": 1887.0}, "nw": {"x": 1118.0, "y": 1897.0}}, "position": {"x": 1113.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3348, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113002, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1887.0}, "se": {"x": 1122.0, "y": 1897.0}, "sw": {"x": 1132.0, "y": 1887.0}, "nw": {"x": 1132.0, "y": 1897.0}}, "position": {"x": 1127.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3397, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113003, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1887.0}, "se": {"x": 1136.0, "y": 1897.0}, "sw": {"x": 1146.0, "y": 1887.0}, "nw": {"x": 1146.0, "y": 1897.0}}, "position": {"x": 1141.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3446, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113004, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1887.0}, "se": {"x": 1150.0, "y": 1897.0}, "sw": {"x": 1160.0, "y": 1887.0}, "nw": {"x": 1160.0, "y": 1897.0}}, "position": {"x": 1155.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3495, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113005, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1887.0}, "se": {"x": 1164.0, "y": 1897.0}, "sw": {"x": 1174.0, "y": 1887.0}, "nw": {"x": 1174.0, "y": 1897.0}}, "position": {"x": 1169.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3544, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113006, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1887.0}, "se": {"x": 1227.0, "y": 1897.0}, "sw": {"x": 1237.0, "y": 1887.0}, "nw": {"x": 1237.0, "y": 1897.0}}, "position": {"x": 1232.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3944, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113007, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1887.0}, "se": {"x": 1241.0, "y": 1897.0}, "sw": {"x": 1251.0, "y": 1887.0}, "nw": {"x": 1251.0, "y": 1897.0}}, "position": {"x": 1246.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4032, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113008, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1887.0}, "se": {"x": 1255.0, "y": 1897.0}, "sw": {"x": 1265.0, "y": 1887.0}, "nw": {"x": 1265.0, "y": 1897.0}}, "position": {"x": 1260.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4120, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113009, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1887.0}, "se": {"x": 1269.0, "y": 1897.0}, "sw": {"x": 1279.0, "y": 1887.0}, "nw": {"x": 1279.0, "y": 1897.0}}, "position": {"x": 1274.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4208, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113033, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1901.0}, "se": {"x": 1024.0, "y": 1911.0}, "sw": {"x": 1034.0, "y": 1901.0}, "nw": {"x": 1034.0, "y": 1911.0}}, "position": {"x": 1029.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2979, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113034, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1901.0}, "se": {"x": 1038.0, "y": 1911.0}, "sw": {"x": 1048.0, "y": 1901.0}, "nw": {"x": 1048.0, "y": 1911.0}}, "position": {"x": 1043.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3059, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113035, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1901.0}, "se": {"x": 1052.0, "y": 1911.0}, "sw": {"x": 1062.0, "y": 1901.0}, "nw": {"x": 1062.0, "y": 1911.0}}, "position": {"x": 1057.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3139, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113036, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1901.0}, "se": {"x": 1066.0, "y": 1911.0}, "sw": {"x": 1076.0, "y": 1901.0}, "nw": {"x": 1076.0, "y": 1911.0}}, "position": {"x": 1071.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3194, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113037, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1901.0}, "se": {"x": 1080.0, "y": 1911.0}, "sw": {"x": 1090.0, "y": 1901.0}, "nw": {"x": 1090.0, "y": 1911.0}}, "position": {"x": 1085.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3249, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113038, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1901.0}, "se": {"x": 1094.0, "y": 1911.0}, "sw": {"x": 1104.0, "y": 1901.0}, "nw": {"x": 1104.0, "y": 1911.0}}, "position": {"x": 1099.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3298, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113039, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1901.0}, "se": {"x": 1108.0, "y": 1911.0}, "sw": {"x": 1118.0, "y": 1901.0}, "nw": {"x": 1118.0, "y": 1911.0}}, "position": {"x": 1113.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3347, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113040, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1901.0}, "se": {"x": 1122.0, "y": 1911.0}, "sw": {"x": 1132.0, "y": 1901.0}, "nw": {"x": 1132.0, "y": 1911.0}}, "position": {"x": 1127.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3396, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113041, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1901.0}, "se": {"x": 1136.0, "y": 1911.0}, "sw": {"x": 1146.0, "y": 1901.0}, "nw": {"x": 1146.0, "y": 1911.0}}, "position": {"x": 1141.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3445, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113042, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1901.0}, "se": {"x": 1150.0, "y": 1911.0}, "sw": {"x": 1160.0, "y": 1901.0}, "nw": {"x": 1160.0, "y": 1911.0}}, "position": {"x": 1155.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3494, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113043, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1901.0}, "se": {"x": 1164.0, "y": 1911.0}, "sw": {"x": 1174.0, "y": 1901.0}, "nw": {"x": 1174.0, "y": 1911.0}}, "position": {"x": 1169.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3543, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113044, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1901.0}, "se": {"x": 1227.0, "y": 1911.0}, "sw": {"x": 1237.0, "y": 1901.0}, "nw": {"x": 1237.0, "y": 1911.0}}, "position": {"x": 1232.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3943, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113045, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1901.0}, "se": {"x": 1241.0, "y": 1911.0}, "sw": {"x": 1251.0, "y": 1901.0}, "nw": {"x": 1251.0, "y": 1911.0}}, "position": {"x": 1246.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4031, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113046, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1901.0}, "se": {"x": 1255.0, "y": 1911.0}, "sw": {"x": 1265.0, "y": 1901.0}, "nw": {"x": 1265.0, "y": 1911.0}}, "position": {"x": 1260.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4119, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113047, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1901.0}, "se": {"x": 1269.0, "y": 1911.0}, "sw": {"x": 1279.0, "y": 1901.0}, "nw": {"x": 1279.0, "y": 1911.0}}, "position": {"x": 1274.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4207, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113071, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1915.0}, "se": {"x": 1024.0, "y": 1925.0}, "sw": {"x": 1034.0, "y": 1915.0}, "nw": {"x": 1034.0, "y": 1925.0}}, "position": {"x": 1029.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2978, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113072, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1915.0}, "se": {"x": 1038.0, "y": 1925.0}, "sw": {"x": 1048.0, "y": 1915.0}, "nw": {"x": 1048.0, "y": 1925.0}}, "position": {"x": 1043.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3058, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113073, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1915.0}, "se": {"x": 1052.0, "y": 1925.0}, "sw": {"x": 1062.0, "y": 1915.0}, "nw": {"x": 1062.0, "y": 1925.0}}, "position": {"x": 1057.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3138, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113074, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1915.0}, "se": {"x": 1066.0, "y": 1925.0}, "sw": {"x": 1076.0, "y": 1915.0}, "nw": {"x": 1076.0, "y": 1925.0}}, "position": {"x": 1071.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3193, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113075, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1915.0}, "se": {"x": 1080.0, "y": 1925.0}, "sw": {"x": 1090.0, "y": 1915.0}, "nw": {"x": 1090.0, "y": 1925.0}}, "position": {"x": 1085.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3248, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113076, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1915.0}, "se": {"x": 1094.0, "y": 1925.0}, "sw": {"x": 1104.0, "y": 1915.0}, "nw": {"x": 1104.0, "y": 1925.0}}, "position": {"x": 1099.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3297, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113077, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1915.0}, "se": {"x": 1108.0, "y": 1925.0}, "sw": {"x": 1118.0, "y": 1915.0}, "nw": {"x": 1118.0, "y": 1925.0}}, "position": {"x": 1113.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3346, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113078, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1915.0}, "se": {"x": 1122.0, "y": 1925.0}, "sw": {"x": 1132.0, "y": 1915.0}, "nw": {"x": 1132.0, "y": 1925.0}}, "position": {"x": 1127.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3395, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113079, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1915.0}, "se": {"x": 1136.0, "y": 1925.0}, "sw": {"x": 1146.0, "y": 1915.0}, "nw": {"x": 1146.0, "y": 1925.0}}, "position": {"x": 1141.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3444, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113080, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1915.0}, "se": {"x": 1150.0, "y": 1925.0}, "sw": {"x": 1160.0, "y": 1915.0}, "nw": {"x": 1160.0, "y": 1925.0}}, "position": {"x": 1155.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3493, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113081, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1915.0}, "se": {"x": 1164.0, "y": 1925.0}, "sw": {"x": 1174.0, "y": 1915.0}, "nw": {"x": 1174.0, "y": 1925.0}}, "position": {"x": 1169.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3542, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113082, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1915.0}, "se": {"x": 1227.0, "y": 1925.0}, "sw": {"x": 1237.0, "y": 1915.0}, "nw": {"x": 1237.0, "y": 1925.0}}, "position": {"x": 1232.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3942, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113083, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1915.0}, "se": {"x": 1241.0, "y": 1925.0}, "sw": {"x": 1251.0, "y": 1915.0}, "nw": {"x": 1251.0, "y": 1925.0}}, "position": {"x": 1246.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4030, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113084, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1915.0}, "se": {"x": 1255.0, "y": 1925.0}, "sw": {"x": 1265.0, "y": 1915.0}, "nw": {"x": 1265.0, "y": 1925.0}}, "position": {"x": 1260.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4118, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113085, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1915.0}, "se": {"x": 1269.0, "y": 1925.0}, "sw": {"x": 1279.0, "y": 1915.0}, "nw": {"x": 1279.0, "y": 1925.0}}, "position": {"x": 1274.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4206, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113109, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1929.0}, "se": {"x": 1024.0, "y": 1939.0}, "sw": {"x": 1034.0, "y": 1929.0}, "nw": {"x": 1034.0, "y": 1939.0}}, "position": {"x": 1029.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2977, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113110, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1929.0}, "se": {"x": 1038.0, "y": 1939.0}, "sw": {"x": 1048.0, "y": 1929.0}, "nw": {"x": 1048.0, "y": 1939.0}}, "position": {"x": 1043.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3057, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113111, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1929.0}, "se": {"x": 1052.0, "y": 1939.0}, "sw": {"x": 1062.0, "y": 1929.0}, "nw": {"x": 1062.0, "y": 1939.0}}, "position": {"x": 1057.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3137, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113112, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1929.0}, "se": {"x": 1066.0, "y": 1939.0}, "sw": {"x": 1076.0, "y": 1929.0}, "nw": {"x": 1076.0, "y": 1939.0}}, "position": {"x": 1071.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3192, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113113, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1929.0}, "se": {"x": 1080.0, "y": 1939.0}, "sw": {"x": 1090.0, "y": 1929.0}, "nw": {"x": 1090.0, "y": 1939.0}}, "position": {"x": 1085.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3247, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113114, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1929.0}, "se": {"x": 1094.0, "y": 1939.0}, "sw": {"x": 1104.0, "y": 1929.0}, "nw": {"x": 1104.0, "y": 1939.0}}, "position": {"x": 1099.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3296, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113115, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1929.0}, "se": {"x": 1108.0, "y": 1939.0}, "sw": {"x": 1118.0, "y": 1929.0}, "nw": {"x": 1118.0, "y": 1939.0}}, "position": {"x": 1113.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3345, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113116, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1929.0}, "se": {"x": 1122.0, "y": 1939.0}, "sw": {"x": 1132.0, "y": 1929.0}, "nw": {"x": 1132.0, "y": 1939.0}}, "position": {"x": 1127.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3394, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113117, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1929.0}, "se": {"x": 1136.0, "y": 1939.0}, "sw": {"x": 1146.0, "y": 1929.0}, "nw": {"x": 1146.0, "y": 1939.0}}, "position": {"x": 1141.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3443, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113118, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1929.0}, "se": {"x": 1150.0, "y": 1939.0}, "sw": {"x": 1160.0, "y": 1929.0}, "nw": {"x": 1160.0, "y": 1939.0}}, "position": {"x": 1155.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3492, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113119, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1929.0}, "se": {"x": 1164.0, "y": 1939.0}, "sw": {"x": 1174.0, "y": 1929.0}, "nw": {"x": 1174.0, "y": 1939.0}}, "position": {"x": 1169.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3541, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113120, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1929.0}, "se": {"x": 1227.0, "y": 1939.0}, "sw": {"x": 1237.0, "y": 1929.0}, "nw": {"x": 1237.0, "y": 1939.0}}, "position": {"x": 1232.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3941, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113121, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1929.0}, "se": {"x": 1241.0, "y": 1939.0}, "sw": {"x": 1251.0, "y": 1929.0}, "nw": {"x": 1251.0, "y": 1939.0}}, "position": {"x": 1246.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4029, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113122, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1929.0}, "se": {"x": 1255.0, "y": 1939.0}, "sw": {"x": 1265.0, "y": 1929.0}, "nw": {"x": 1265.0, "y": 1939.0}}, "position": {"x": 1260.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4117, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113123, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1929.0}, "se": {"x": 1269.0, "y": 1939.0}, "sw": {"x": 1279.0, "y": 1929.0}, "nw": {"x": 1279.0, "y": 1939.0}}, "position": {"x": 1274.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4205, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "6:5": [{"logicalSeatId": 1537115833, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1287.0}, "se": {"x": 1535.0, "y": 1297.0}, "sw": {"x": 1545.0, "y": 1287.0}, "nw": {"x": 1545.0, "y": 1297.0}}, "position": {"x": 1540.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115834, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1287.0}, "se": {"x": 1549.0, "y": 1297.0}, "sw": {"x": 1559.0, "y": 1287.0}, "nw": {"x": 1559.0, "y": 1297.0}}, "position": {"x": 1554.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115835, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1287.0}, "se": {"x": 1563.0, "y": 1297.0}, "sw": {"x": 1573.0, "y": 1287.0}, "nw": {"x": 1573.0, "y": 1297.0}}, "position": {"x": 1568.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115836, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1287.0}, "se": {"x": 1577.0, "y": 1297.0}, "sw": {"x": 1587.0, "y": 1287.0}, "nw": {"x": 1587.0, "y": 1297.0}}, "position": {"x": 1582.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537115837, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1287.0}, "se": {"x": 1591.0, "y": 1297.0}, "sw": {"x": 1601.0, "y": 1287.0}, "nw": {"x": 1601.0, "y": 1297.0}}, "position": {"x": 1596.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "5:7": [{"logicalSeatId": 1537112841, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1803.0}, "se": {"x": 1325.0, "y": 1813.0}, "sw": {"x": 1335.0, "y": 1803.0}, "nw": {"x": 1335.0, "y": 1813.0}}, "position": {"x": 1330.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4638, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112842, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1803.0}, "se": {"x": 1339.0, "y": 1813.0}, "sw": {"x": 1349.0, "y": 1803.0}, "nw": {"x": 1349.0, "y": 1813.0}}, "position": {"x": 1344.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4756, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112843, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1803.0}, "se": {"x": 1353.0, "y": 1813.0}, "sw": {"x": 1363.0, "y": 1803.0}, "nw": {"x": 1363.0, "y": 1813.0}}, "position": {"x": 1358.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4924, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112844, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1803.0}, "se": {"x": 1367.0, "y": 1813.0}, "sw": {"x": 1377.0, "y": 1803.0}, "nw": {"x": 1377.0, "y": 1813.0}}, "position": {"x": 1372.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5092, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112845, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1803.0}, "se": {"x": 1381.0, "y": 1813.0}, "sw": {"x": 1391.0, "y": 1803.0}, "nw": {"x": 1391.0, "y": 1813.0}}, "position": {"x": 1386.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5260, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112846, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1803.0}, "se": {"x": 1395.0, "y": 1813.0}, "sw": {"x": 1405.0, "y": 1803.0}, "nw": {"x": 1405.0, "y": 1813.0}}, "position": {"x": 1400.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5428, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112847, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1803.0}, "se": {"x": 1409.0, "y": 1813.0}, "sw": {"x": 1419.0, "y": 1803.0}, "nw": {"x": 1419.0, "y": 1813.0}}, "position": {"x": 1414.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5596, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112848, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1803.0}, "se": {"x": 1423.0, "y": 1813.0}, "sw": {"x": 1433.0, "y": 1803.0}, "nw": {"x": 1433.0, "y": 1813.0}}, "position": {"x": 1428.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5786, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112849, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1803.0}, "se": {"x": 1437.0, "y": 1813.0}, "sw": {"x": 1447.0, "y": 1803.0}, "nw": {"x": 1447.0, "y": 1813.0}}, "position": {"x": 1442.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5976, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112850, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1803.0}, "se": {"x": 1451.0, "y": 1813.0}, "sw": {"x": 1461.0, "y": 1803.0}, "nw": {"x": 1461.0, "y": 1813.0}}, "position": {"x": 1456.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6166, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112851, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1803.0}, "se": {"x": 1465.0, "y": 1813.0}, "sw": {"x": 1475.0, "y": 1803.0}, "nw": {"x": 1475.0, "y": 1813.0}}, "position": {"x": 1470.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6356, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112852, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1803.0}, "se": {"x": 1479.0, "y": 1813.0}, "sw": {"x": 1489.0, "y": 1803.0}, "nw": {"x": 1489.0, "y": 1813.0}}, "position": {"x": 1484.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6546, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112865, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1817.0}, "se": {"x": 1325.0, "y": 1827.0}, "sw": {"x": 1335.0, "y": 1817.0}, "nw": {"x": 1335.0, "y": 1827.0}}, "position": {"x": 1330.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4637, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112866, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1817.0}, "se": {"x": 1339.0, "y": 1827.0}, "sw": {"x": 1349.0, "y": 1817.0}, "nw": {"x": 1349.0, "y": 1827.0}}, "position": {"x": 1344.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4755, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112867, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1817.0}, "se": {"x": 1353.0, "y": 1827.0}, "sw": {"x": 1363.0, "y": 1817.0}, "nw": {"x": 1363.0, "y": 1827.0}}, "position": {"x": 1358.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4923, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112868, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1817.0}, "se": {"x": 1367.0, "y": 1827.0}, "sw": {"x": 1377.0, "y": 1817.0}, "nw": {"x": 1377.0, "y": 1827.0}}, "position": {"x": 1372.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5091, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112869, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1817.0}, "se": {"x": 1381.0, "y": 1827.0}, "sw": {"x": 1391.0, "y": 1817.0}, "nw": {"x": 1391.0, "y": 1827.0}}, "position": {"x": 1386.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5259, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112870, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1817.0}, "se": {"x": 1395.0, "y": 1827.0}, "sw": {"x": 1405.0, "y": 1817.0}, "nw": {"x": 1405.0, "y": 1827.0}}, "position": {"x": 1400.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5427, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112871, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1817.0}, "se": {"x": 1409.0, "y": 1827.0}, "sw": {"x": 1419.0, "y": 1817.0}, "nw": {"x": 1419.0, "y": 1827.0}}, "position": {"x": 1414.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5595, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112872, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1817.0}, "se": {"x": 1423.0, "y": 1827.0}, "sw": {"x": 1433.0, "y": 1817.0}, "nw": {"x": 1433.0, "y": 1827.0}}, "position": {"x": 1428.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5785, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112873, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1817.0}, "se": {"x": 1437.0, "y": 1827.0}, "sw": {"x": 1447.0, "y": 1817.0}, "nw": {"x": 1447.0, "y": 1827.0}}, "position": {"x": 1442.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5975, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112874, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1817.0}, "se": {"x": 1451.0, "y": 1827.0}, "sw": {"x": 1461.0, "y": 1817.0}, "nw": {"x": 1461.0, "y": 1827.0}}, "position": {"x": 1456.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6165, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112875, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1817.0}, "se": {"x": 1465.0, "y": 1827.0}, "sw": {"x": 1475.0, "y": 1817.0}, "nw": {"x": 1475.0, "y": 1827.0}}, "position": {"x": 1470.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6355, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112876, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1817.0}, "se": {"x": 1479.0, "y": 1827.0}, "sw": {"x": 1489.0, "y": 1817.0}, "nw": {"x": 1489.0, "y": 1827.0}}, "position": {"x": 1484.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6545, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112889, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1831.0}, "se": {"x": 1325.0, "y": 1841.0}, "sw": {"x": 1335.0, "y": 1831.0}, "nw": {"x": 1335.0, "y": 1841.0}}, "position": {"x": 1330.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4636, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112890, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1831.0}, "se": {"x": 1339.0, "y": 1841.0}, "sw": {"x": 1349.0, "y": 1831.0}, "nw": {"x": 1349.0, "y": 1841.0}}, "position": {"x": 1344.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4754, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112891, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1831.0}, "se": {"x": 1353.0, "y": 1841.0}, "sw": {"x": 1363.0, "y": 1831.0}, "nw": {"x": 1363.0, "y": 1841.0}}, "position": {"x": 1358.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4922, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112892, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1831.0}, "se": {"x": 1367.0, "y": 1841.0}, "sw": {"x": 1377.0, "y": 1831.0}, "nw": {"x": 1377.0, "y": 1841.0}}, "position": {"x": 1372.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5090, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112893, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1831.0}, "se": {"x": 1381.0, "y": 1841.0}, "sw": {"x": 1391.0, "y": 1831.0}, "nw": {"x": 1391.0, "y": 1841.0}}, "position": {"x": 1386.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5258, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112894, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1831.0}, "se": {"x": 1395.0, "y": 1841.0}, "sw": {"x": 1405.0, "y": 1831.0}, "nw": {"x": 1405.0, "y": 1841.0}}, "position": {"x": 1400.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5426, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112895, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1831.0}, "se": {"x": 1409.0, "y": 1841.0}, "sw": {"x": 1419.0, "y": 1831.0}, "nw": {"x": 1419.0, "y": 1841.0}}, "position": {"x": 1414.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5594, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112896, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1831.0}, "se": {"x": 1423.0, "y": 1841.0}, "sw": {"x": 1433.0, "y": 1831.0}, "nw": {"x": 1433.0, "y": 1841.0}}, "position": {"x": 1428.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5784, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112897, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1831.0}, "se": {"x": 1437.0, "y": 1841.0}, "sw": {"x": 1447.0, "y": 1831.0}, "nw": {"x": 1447.0, "y": 1841.0}}, "position": {"x": 1442.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5974, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112898, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1831.0}, "se": {"x": 1451.0, "y": 1841.0}, "sw": {"x": 1461.0, "y": 1831.0}, "nw": {"x": 1461.0, "y": 1841.0}}, "position": {"x": 1456.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6164, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112899, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1831.0}, "se": {"x": 1465.0, "y": 1841.0}, "sw": {"x": 1475.0, "y": 1831.0}, "nw": {"x": 1475.0, "y": 1841.0}}, "position": {"x": 1470.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6354, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112900, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1831.0}, "se": {"x": 1479.0, "y": 1841.0}, "sw": {"x": 1489.0, "y": 1831.0}, "nw": {"x": 1489.0, "y": 1841.0}}, "position": {"x": 1484.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6544, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112913, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1845.0}, "se": {"x": 1325.0, "y": 1855.0}, "sw": {"x": 1335.0, "y": 1845.0}, "nw": {"x": 1335.0, "y": 1855.0}}, "position": {"x": 1330.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4635, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112914, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1845.0}, "se": {"x": 1339.0, "y": 1855.0}, "sw": {"x": 1349.0, "y": 1845.0}, "nw": {"x": 1349.0, "y": 1855.0}}, "position": {"x": 1344.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4753, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112915, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1845.0}, "se": {"x": 1353.0, "y": 1855.0}, "sw": {"x": 1363.0, "y": 1845.0}, "nw": {"x": 1363.0, "y": 1855.0}}, "position": {"x": 1358.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4921, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112916, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1845.0}, "se": {"x": 1367.0, "y": 1855.0}, "sw": {"x": 1377.0, "y": 1845.0}, "nw": {"x": 1377.0, "y": 1855.0}}, "position": {"x": 1372.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5089, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112917, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1845.0}, "se": {"x": 1381.0, "y": 1855.0}, "sw": {"x": 1391.0, "y": 1845.0}, "nw": {"x": 1391.0, "y": 1855.0}}, "position": {"x": 1386.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5257, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112918, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1845.0}, "se": {"x": 1395.0, "y": 1855.0}, "sw": {"x": 1405.0, "y": 1845.0}, "nw": {"x": 1405.0, "y": 1855.0}}, "position": {"x": 1400.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5425, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112919, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1845.0}, "se": {"x": 1409.0, "y": 1855.0}, "sw": {"x": 1419.0, "y": 1845.0}, "nw": {"x": 1419.0, "y": 1855.0}}, "position": {"x": 1414.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5593, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112920, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1845.0}, "se": {"x": 1423.0, "y": 1855.0}, "sw": {"x": 1433.0, "y": 1845.0}, "nw": {"x": 1433.0, "y": 1855.0}}, "position": {"x": 1428.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5783, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112921, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1845.0}, "se": {"x": 1437.0, "y": 1855.0}, "sw": {"x": 1447.0, "y": 1845.0}, "nw": {"x": 1447.0, "y": 1855.0}}, "position": {"x": 1442.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5973, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112922, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1845.0}, "se": {"x": 1451.0, "y": 1855.0}, "sw": {"x": 1461.0, "y": 1845.0}, "nw": {"x": 1461.0, "y": 1855.0}}, "position": {"x": 1456.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6163, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112923, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1845.0}, "se": {"x": 1465.0, "y": 1855.0}, "sw": {"x": 1475.0, "y": 1845.0}, "nw": {"x": 1475.0, "y": 1855.0}}, "position": {"x": 1470.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6353, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112924, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1845.0}, "se": {"x": 1479.0, "y": 1855.0}, "sw": {"x": 1489.0, "y": 1845.0}, "nw": {"x": 1489.0, "y": 1855.0}}, "position": {"x": 1484.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6543, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112937, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1859.0}, "se": {"x": 1325.0, "y": 1869.0}, "sw": {"x": 1335.0, "y": 1859.0}, "nw": {"x": 1335.0, "y": 1869.0}}, "position": {"x": 1330.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4634, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112938, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1859.0}, "se": {"x": 1339.0, "y": 1869.0}, "sw": {"x": 1349.0, "y": 1859.0}, "nw": {"x": 1349.0, "y": 1869.0}}, "position": {"x": 1344.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4752, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112939, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1859.0}, "se": {"x": 1353.0, "y": 1869.0}, "sw": {"x": 1363.0, "y": 1859.0}, "nw": {"x": 1363.0, "y": 1869.0}}, "position": {"x": 1358.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4920, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112940, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1859.0}, "se": {"x": 1367.0, "y": 1869.0}, "sw": {"x": 1377.0, "y": 1859.0}, "nw": {"x": 1377.0, "y": 1869.0}}, "position": {"x": 1372.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5088, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112941, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1859.0}, "se": {"x": 1381.0, "y": 1869.0}, "sw": {"x": 1391.0, "y": 1859.0}, "nw": {"x": 1391.0, "y": 1869.0}}, "position": {"x": 1386.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5256, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112942, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1859.0}, "se": {"x": 1395.0, "y": 1869.0}, "sw": {"x": 1405.0, "y": 1859.0}, "nw": {"x": 1405.0, "y": 1869.0}}, "position": {"x": 1400.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5424, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112943, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1859.0}, "se": {"x": 1409.0, "y": 1869.0}, "sw": {"x": 1419.0, "y": 1859.0}, "nw": {"x": 1419.0, "y": 1869.0}}, "position": {"x": 1414.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5592, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112944, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1859.0}, "se": {"x": 1423.0, "y": 1869.0}, "sw": {"x": 1433.0, "y": 1859.0}, "nw": {"x": 1433.0, "y": 1869.0}}, "position": {"x": 1428.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5782, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112945, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1859.0}, "se": {"x": 1437.0, "y": 1869.0}, "sw": {"x": 1447.0, "y": 1859.0}, "nw": {"x": 1447.0, "y": 1869.0}}, "position": {"x": 1442.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5972, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112946, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1859.0}, "se": {"x": 1451.0, "y": 1869.0}, "sw": {"x": 1461.0, "y": 1859.0}, "nw": {"x": 1461.0, "y": 1869.0}}, "position": {"x": 1456.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6162, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112947, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1859.0}, "se": {"x": 1465.0, "y": 1869.0}, "sw": {"x": 1475.0, "y": 1859.0}, "nw": {"x": 1475.0, "y": 1869.0}}, "position": {"x": 1470.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6352, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112948, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1859.0}, "se": {"x": 1479.0, "y": 1869.0}, "sw": {"x": 1489.0, "y": 1859.0}, "nw": {"x": 1489.0, "y": 1869.0}}, "position": {"x": 1484.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6542, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112972, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1873.0}, "se": {"x": 1283.0, "y": 1883.0}, "sw": {"x": 1293.0, "y": 1873.0}, "nw": {"x": 1293.0, "y": 1883.0}}, "position": {"x": 1288.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4297, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112973, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1873.0}, "se": {"x": 1297.0, "y": 1883.0}, "sw": {"x": 1307.0, "y": 1873.0}, "nw": {"x": 1307.0, "y": 1883.0}}, "position": {"x": 1302.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4409, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112974, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1873.0}, "se": {"x": 1311.0, "y": 1883.0}, "sw": {"x": 1321.0, "y": 1873.0}, "nw": {"x": 1321.0, "y": 1883.0}}, "position": {"x": 1316.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4521, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112975, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1873.0}, "se": {"x": 1325.0, "y": 1883.0}, "sw": {"x": 1335.0, "y": 1873.0}, "nw": {"x": 1335.0, "y": 1883.0}}, "position": {"x": 1330.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4633, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112976, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1873.0}, "se": {"x": 1339.0, "y": 1883.0}, "sw": {"x": 1349.0, "y": 1873.0}, "nw": {"x": 1349.0, "y": 1883.0}}, "position": {"x": 1344.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4751, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112977, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1873.0}, "se": {"x": 1353.0, "y": 1883.0}, "sw": {"x": 1363.0, "y": 1873.0}, "nw": {"x": 1363.0, "y": 1883.0}}, "position": {"x": 1358.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4919, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112978, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1873.0}, "se": {"x": 1367.0, "y": 1883.0}, "sw": {"x": 1377.0, "y": 1873.0}, "nw": {"x": 1377.0, "y": 1883.0}}, "position": {"x": 1372.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5087, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112979, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1873.0}, "se": {"x": 1381.0, "y": 1883.0}, "sw": {"x": 1391.0, "y": 1873.0}, "nw": {"x": 1391.0, "y": 1883.0}}, "position": {"x": 1386.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5255, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112980, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1873.0}, "se": {"x": 1395.0, "y": 1883.0}, "sw": {"x": 1405.0, "y": 1873.0}, "nw": {"x": 1405.0, "y": 1883.0}}, "position": {"x": 1400.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5423, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112981, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1873.0}, "se": {"x": 1409.0, "y": 1883.0}, "sw": {"x": 1419.0, "y": 1873.0}, "nw": {"x": 1419.0, "y": 1883.0}}, "position": {"x": 1414.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5591, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112982, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1873.0}, "se": {"x": 1423.0, "y": 1883.0}, "sw": {"x": 1433.0, "y": 1873.0}, "nw": {"x": 1433.0, "y": 1883.0}}, "position": {"x": 1428.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5781, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112983, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1873.0}, "se": {"x": 1437.0, "y": 1883.0}, "sw": {"x": 1447.0, "y": 1873.0}, "nw": {"x": 1447.0, "y": 1883.0}}, "position": {"x": 1442.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5971, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112984, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1873.0}, "se": {"x": 1451.0, "y": 1883.0}, "sw": {"x": 1461.0, "y": 1873.0}, "nw": {"x": 1461.0, "y": 1883.0}}, "position": {"x": 1456.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6161, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112985, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1873.0}, "se": {"x": 1465.0, "y": 1883.0}, "sw": {"x": 1475.0, "y": 1873.0}, "nw": {"x": 1475.0, "y": 1883.0}}, "position": {"x": 1470.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6351, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112986, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1873.0}, "se": {"x": 1479.0, "y": 1883.0}, "sw": {"x": 1489.0, "y": 1873.0}, "nw": {"x": 1489.0, "y": 1883.0}}, "position": {"x": 1484.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6541, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113010, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1887.0}, "se": {"x": 1283.0, "y": 1897.0}, "sw": {"x": 1293.0, "y": 1887.0}, "nw": {"x": 1293.0, "y": 1897.0}}, "position": {"x": 1288.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4296, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113011, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1887.0}, "se": {"x": 1297.0, "y": 1897.0}, "sw": {"x": 1307.0, "y": 1887.0}, "nw": {"x": 1307.0, "y": 1897.0}}, "position": {"x": 1302.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4408, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113012, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1887.0}, "se": {"x": 1311.0, "y": 1897.0}, "sw": {"x": 1321.0, "y": 1887.0}, "nw": {"x": 1321.0, "y": 1897.0}}, "position": {"x": 1316.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4520, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113013, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1887.0}, "se": {"x": 1325.0, "y": 1897.0}, "sw": {"x": 1335.0, "y": 1887.0}, "nw": {"x": 1335.0, "y": 1897.0}}, "position": {"x": 1330.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4632, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113014, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1887.0}, "se": {"x": 1339.0, "y": 1897.0}, "sw": {"x": 1349.0, "y": 1887.0}, "nw": {"x": 1349.0, "y": 1897.0}}, "position": {"x": 1344.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4750, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113015, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1887.0}, "se": {"x": 1353.0, "y": 1897.0}, "sw": {"x": 1363.0, "y": 1887.0}, "nw": {"x": 1363.0, "y": 1897.0}}, "position": {"x": 1358.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4918, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113016, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1887.0}, "se": {"x": 1367.0, "y": 1897.0}, "sw": {"x": 1377.0, "y": 1887.0}, "nw": {"x": 1377.0, "y": 1897.0}}, "position": {"x": 1372.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5086, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113017, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1887.0}, "se": {"x": 1381.0, "y": 1897.0}, "sw": {"x": 1391.0, "y": 1887.0}, "nw": {"x": 1391.0, "y": 1897.0}}, "position": {"x": 1386.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5254, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113018, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1887.0}, "se": {"x": 1395.0, "y": 1897.0}, "sw": {"x": 1405.0, "y": 1887.0}, "nw": {"x": 1405.0, "y": 1897.0}}, "position": {"x": 1400.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5422, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113019, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1887.0}, "se": {"x": 1409.0, "y": 1897.0}, "sw": {"x": 1419.0, "y": 1887.0}, "nw": {"x": 1419.0, "y": 1897.0}}, "position": {"x": 1414.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5590, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113020, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1887.0}, "se": {"x": 1423.0, "y": 1897.0}, "sw": {"x": 1433.0, "y": 1887.0}, "nw": {"x": 1433.0, "y": 1897.0}}, "position": {"x": 1428.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5780, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113021, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1887.0}, "se": {"x": 1437.0, "y": 1897.0}, "sw": {"x": 1447.0, "y": 1887.0}, "nw": {"x": 1447.0, "y": 1897.0}}, "position": {"x": 1442.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5970, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113022, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1887.0}, "se": {"x": 1451.0, "y": 1897.0}, "sw": {"x": 1461.0, "y": 1887.0}, "nw": {"x": 1461.0, "y": 1897.0}}, "position": {"x": 1456.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6160, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113023, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1887.0}, "se": {"x": 1465.0, "y": 1897.0}, "sw": {"x": 1475.0, "y": 1887.0}, "nw": {"x": 1475.0, "y": 1897.0}}, "position": {"x": 1470.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6350, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113024, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1887.0}, "se": {"x": 1479.0, "y": 1897.0}, "sw": {"x": 1489.0, "y": 1887.0}, "nw": {"x": 1489.0, "y": 1897.0}}, "position": {"x": 1484.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6540, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113048, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1901.0}, "se": {"x": 1283.0, "y": 1911.0}, "sw": {"x": 1293.0, "y": 1901.0}, "nw": {"x": 1293.0, "y": 1911.0}}, "position": {"x": 1288.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4295, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113049, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1901.0}, "se": {"x": 1297.0, "y": 1911.0}, "sw": {"x": 1307.0, "y": 1901.0}, "nw": {"x": 1307.0, "y": 1911.0}}, "position": {"x": 1302.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4407, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113050, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1901.0}, "se": {"x": 1311.0, "y": 1911.0}, "sw": {"x": 1321.0, "y": 1901.0}, "nw": {"x": 1321.0, "y": 1911.0}}, "position": {"x": 1316.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4519, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113051, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1901.0}, "se": {"x": 1325.0, "y": 1911.0}, "sw": {"x": 1335.0, "y": 1901.0}, "nw": {"x": 1335.0, "y": 1911.0}}, "position": {"x": 1330.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4631, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113052, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1901.0}, "se": {"x": 1339.0, "y": 1911.0}, "sw": {"x": 1349.0, "y": 1901.0}, "nw": {"x": 1349.0, "y": 1911.0}}, "position": {"x": 1344.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4749, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113053, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1901.0}, "se": {"x": 1353.0, "y": 1911.0}, "sw": {"x": 1363.0, "y": 1901.0}, "nw": {"x": 1363.0, "y": 1911.0}}, "position": {"x": 1358.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4917, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113054, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1901.0}, "se": {"x": 1367.0, "y": 1911.0}, "sw": {"x": 1377.0, "y": 1901.0}, "nw": {"x": 1377.0, "y": 1911.0}}, "position": {"x": 1372.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5085, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113055, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1901.0}, "se": {"x": 1381.0, "y": 1911.0}, "sw": {"x": 1391.0, "y": 1901.0}, "nw": {"x": 1391.0, "y": 1911.0}}, "position": {"x": 1386.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5253, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113056, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1901.0}, "se": {"x": 1395.0, "y": 1911.0}, "sw": {"x": 1405.0, "y": 1901.0}, "nw": {"x": 1405.0, "y": 1911.0}}, "position": {"x": 1400.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5421, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113057, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1901.0}, "se": {"x": 1409.0, "y": 1911.0}, "sw": {"x": 1419.0, "y": 1901.0}, "nw": {"x": 1419.0, "y": 1911.0}}, "position": {"x": 1414.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5589, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113058, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1901.0}, "se": {"x": 1423.0, "y": 1911.0}, "sw": {"x": 1433.0, "y": 1901.0}, "nw": {"x": 1433.0, "y": 1911.0}}, "position": {"x": 1428.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5779, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113059, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1901.0}, "se": {"x": 1437.0, "y": 1911.0}, "sw": {"x": 1447.0, "y": 1901.0}, "nw": {"x": 1447.0, "y": 1911.0}}, "position": {"x": 1442.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5969, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113060, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1901.0}, "se": {"x": 1451.0, "y": 1911.0}, "sw": {"x": 1461.0, "y": 1901.0}, "nw": {"x": 1461.0, "y": 1911.0}}, "position": {"x": 1456.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6159, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113061, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1901.0}, "se": {"x": 1465.0, "y": 1911.0}, "sw": {"x": 1475.0, "y": 1901.0}, "nw": {"x": 1475.0, "y": 1911.0}}, "position": {"x": 1470.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6349, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113062, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1901.0}, "se": {"x": 1479.0, "y": 1911.0}, "sw": {"x": 1489.0, "y": 1901.0}, "nw": {"x": 1489.0, "y": 1911.0}}, "position": {"x": 1484.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6539, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113086, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1915.0}, "se": {"x": 1283.0, "y": 1925.0}, "sw": {"x": 1293.0, "y": 1915.0}, "nw": {"x": 1293.0, "y": 1925.0}}, "position": {"x": 1288.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4294, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113087, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1915.0}, "se": {"x": 1297.0, "y": 1925.0}, "sw": {"x": 1307.0, "y": 1915.0}, "nw": {"x": 1307.0, "y": 1925.0}}, "position": {"x": 1302.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4406, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113088, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1915.0}, "se": {"x": 1311.0, "y": 1925.0}, "sw": {"x": 1321.0, "y": 1915.0}, "nw": {"x": 1321.0, "y": 1925.0}}, "position": {"x": 1316.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4518, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113089, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1915.0}, "se": {"x": 1325.0, "y": 1925.0}, "sw": {"x": 1335.0, "y": 1915.0}, "nw": {"x": 1335.0, "y": 1925.0}}, "position": {"x": 1330.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4630, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113090, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1915.0}, "se": {"x": 1339.0, "y": 1925.0}, "sw": {"x": 1349.0, "y": 1915.0}, "nw": {"x": 1349.0, "y": 1925.0}}, "position": {"x": 1344.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4748, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113091, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1915.0}, "se": {"x": 1353.0, "y": 1925.0}, "sw": {"x": 1363.0, "y": 1915.0}, "nw": {"x": 1363.0, "y": 1925.0}}, "position": {"x": 1358.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4916, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113092, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1915.0}, "se": {"x": 1367.0, "y": 1925.0}, "sw": {"x": 1377.0, "y": 1915.0}, "nw": {"x": 1377.0, "y": 1925.0}}, "position": {"x": 1372.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5084, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113093, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1915.0}, "se": {"x": 1381.0, "y": 1925.0}, "sw": {"x": 1391.0, "y": 1915.0}, "nw": {"x": 1391.0, "y": 1925.0}}, "position": {"x": 1386.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5252, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113094, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1915.0}, "se": {"x": 1395.0, "y": 1925.0}, "sw": {"x": 1405.0, "y": 1915.0}, "nw": {"x": 1405.0, "y": 1925.0}}, "position": {"x": 1400.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5420, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113095, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1915.0}, "se": {"x": 1409.0, "y": 1925.0}, "sw": {"x": 1419.0, "y": 1915.0}, "nw": {"x": 1419.0, "y": 1925.0}}, "position": {"x": 1414.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5588, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113096, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1915.0}, "se": {"x": 1423.0, "y": 1925.0}, "sw": {"x": 1433.0, "y": 1915.0}, "nw": {"x": 1433.0, "y": 1925.0}}, "position": {"x": 1428.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5778, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113097, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1915.0}, "se": {"x": 1437.0, "y": 1925.0}, "sw": {"x": 1447.0, "y": 1915.0}, "nw": {"x": 1447.0, "y": 1925.0}}, "position": {"x": 1442.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5968, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113098, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1915.0}, "se": {"x": 1451.0, "y": 1925.0}, "sw": {"x": 1461.0, "y": 1915.0}, "nw": {"x": 1461.0, "y": 1925.0}}, "position": {"x": 1456.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6158, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113099, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1915.0}, "se": {"x": 1465.0, "y": 1925.0}, "sw": {"x": 1475.0, "y": 1915.0}, "nw": {"x": 1475.0, "y": 1925.0}}, "position": {"x": 1470.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6348, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113100, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1915.0}, "se": {"x": 1479.0, "y": 1925.0}, "sw": {"x": 1489.0, "y": 1915.0}, "nw": {"x": 1489.0, "y": 1925.0}}, "position": {"x": 1484.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6538, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113124, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1929.0}, "se": {"x": 1283.0, "y": 1939.0}, "sw": {"x": 1293.0, "y": 1929.0}, "nw": {"x": 1293.0, "y": 1939.0}}, "position": {"x": 1288.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4293, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113125, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1929.0}, "se": {"x": 1297.0, "y": 1939.0}, "sw": {"x": 1307.0, "y": 1929.0}, "nw": {"x": 1307.0, "y": 1939.0}}, "position": {"x": 1302.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4405, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113126, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1929.0}, "se": {"x": 1311.0, "y": 1939.0}, "sw": {"x": 1321.0, "y": 1929.0}, "nw": {"x": 1321.0, "y": 1939.0}}, "position": {"x": 1316.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4517, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113127, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1929.0}, "se": {"x": 1325.0, "y": 1939.0}, "sw": {"x": 1335.0, "y": 1929.0}, "nw": {"x": 1335.0, "y": 1939.0}}, "position": {"x": 1330.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4629, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113128, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1929.0}, "se": {"x": 1339.0, "y": 1939.0}, "sw": {"x": 1349.0, "y": 1929.0}, "nw": {"x": 1349.0, "y": 1939.0}}, "position": {"x": 1344.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4747, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113129, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1929.0}, "se": {"x": 1353.0, "y": 1939.0}, "sw": {"x": 1363.0, "y": 1929.0}, "nw": {"x": 1363.0, "y": 1939.0}}, "position": {"x": 1358.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4915, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113130, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1929.0}, "se": {"x": 1367.0, "y": 1939.0}, "sw": {"x": 1377.0, "y": 1929.0}, "nw": {"x": 1377.0, "y": 1939.0}}, "position": {"x": 1372.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5083, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113131, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1929.0}, "se": {"x": 1381.0, "y": 1939.0}, "sw": {"x": 1391.0, "y": 1929.0}, "nw": {"x": 1391.0, "y": 1939.0}}, "position": {"x": 1386.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5251, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113132, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1929.0}, "se": {"x": 1395.0, "y": 1939.0}, "sw": {"x": 1405.0, "y": 1929.0}, "nw": {"x": 1405.0, "y": 1939.0}}, "position": {"x": 1400.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5419, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113133, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1929.0}, "se": {"x": 1409.0, "y": 1939.0}, "sw": {"x": 1419.0, "y": 1929.0}, "nw": {"x": 1419.0, "y": 1939.0}}, "position": {"x": 1414.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5587, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113134, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1929.0}, "se": {"x": 1423.0, "y": 1939.0}, "sw": {"x": 1433.0, "y": 1929.0}, "nw": {"x": 1433.0, "y": 1939.0}}, "position": {"x": 1428.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5777, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113135, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1929.0}, "se": {"x": 1437.0, "y": 1939.0}, "sw": {"x": 1447.0, "y": 1929.0}, "nw": {"x": 1447.0, "y": 1939.0}}, "position": {"x": 1442.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5967, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113136, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1929.0}, "se": {"x": 1451.0, "y": 1939.0}, "sw": {"x": 1461.0, "y": 1929.0}, "nw": {"x": 1461.0, "y": 1939.0}}, "position": {"x": 1456.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6157, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113137, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1929.0}, "se": {"x": 1465.0, "y": 1939.0}, "sw": {"x": 1475.0, "y": 1929.0}, "nw": {"x": 1475.0, "y": 1939.0}}, "position": {"x": 1470.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6347, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537113138, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1929.0}, "se": {"x": 1479.0, "y": 1939.0}, "sw": {"x": 1489.0, "y": 1929.0}, "nw": {"x": 1489.0, "y": 1939.0}}, "position": {"x": 1484.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6537, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "7:5": [{"logicalSeatId": 1537112053, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1533.0}, "se": {"x": 1814.0, "y": 1533.0}, "sw": {"x": 1804.0, "y": 1523.0}, "nw": {"x": 1814.0, "y": 1523.0}}, "position": {"x": 1809.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7636, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112054, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1519.0}, "se": {"x": 1814.0, "y": 1519.0}, "sw": {"x": 1804.0, "y": 1509.0}, "nw": {"x": 1814.0, "y": 1509.0}}, "position": {"x": 1809.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7637, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112055, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1505.0}, "se": {"x": 1814.0, "y": 1505.0}, "sw": {"x": 1804.0, "y": 1495.0}, "nw": {"x": 1814.0, "y": 1495.0}}, "position": {"x": 1809.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7638, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112056, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1491.0}, "se": {"x": 1814.0, "y": 1491.0}, "sw": {"x": 1804.0, "y": 1481.0}, "nw": {"x": 1814.0, "y": 1481.0}}, "position": {"x": 1809.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7639, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112057, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1477.0}, "se": {"x": 1814.0, "y": 1477.0}, "sw": {"x": 1804.0, "y": 1467.0}, "nw": {"x": 1814.0, "y": 1467.0}}, "position": {"x": 1809.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7640, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112070, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1533.0}, "se": {"x": 1828.0, "y": 1533.0}, "sw": {"x": 1818.0, "y": 1523.0}, "nw": {"x": 1828.0, "y": 1523.0}}, "position": {"x": 1823.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7723, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112071, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1519.0}, "se": {"x": 1828.0, "y": 1519.0}, "sw": {"x": 1818.0, "y": 1509.0}, "nw": {"x": 1828.0, "y": 1509.0}}, "position": {"x": 1823.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7724, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112072, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1505.0}, "se": {"x": 1828.0, "y": 1505.0}, "sw": {"x": 1818.0, "y": 1495.0}, "nw": {"x": 1828.0, "y": 1495.0}}, "position": {"x": 1823.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7725, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112073, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1491.0}, "se": {"x": 1828.0, "y": 1491.0}, "sw": {"x": 1818.0, "y": 1481.0}, "nw": {"x": 1828.0, "y": 1481.0}}, "position": {"x": 1823.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7726, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112074, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1477.0}, "se": {"x": 1828.0, "y": 1477.0}, "sw": {"x": 1818.0, "y": 1467.0}, "nw": {"x": 1828.0, "y": 1467.0}}, "position": {"x": 1823.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7727, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112088, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1533.0}, "se": {"x": 1842.0, "y": 1533.0}, "sw": {"x": 1832.0, "y": 1523.0}, "nw": {"x": 1842.0, "y": 1523.0}}, "position": {"x": 1837.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7810, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112089, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1519.0}, "se": {"x": 1842.0, "y": 1519.0}, "sw": {"x": 1832.0, "y": 1509.0}, "nw": {"x": 1842.0, "y": 1509.0}}, "position": {"x": 1837.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7811, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112090, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1505.0}, "se": {"x": 1842.0, "y": 1505.0}, "sw": {"x": 1832.0, "y": 1495.0}, "nw": {"x": 1842.0, "y": 1495.0}}, "position": {"x": 1837.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7812, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112091, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1491.0}, "se": {"x": 1842.0, "y": 1491.0}, "sw": {"x": 1832.0, "y": 1481.0}, "nw": {"x": 1842.0, "y": 1481.0}}, "position": {"x": 1837.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7813, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112092, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1477.0}, "se": {"x": 1842.0, "y": 1477.0}, "sw": {"x": 1832.0, "y": 1467.0}, "nw": {"x": 1842.0, "y": 1467.0}}, "position": {"x": 1837.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7814, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112107, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1533.0}, "se": {"x": 1856.0, "y": 1533.0}, "sw": {"x": 1846.0, "y": 1523.0}, "nw": {"x": 1856.0, "y": 1523.0}}, "position": {"x": 1851.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7897, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112108, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1519.0}, "se": {"x": 1856.0, "y": 1519.0}, "sw": {"x": 1846.0, "y": 1509.0}, "nw": {"x": 1856.0, "y": 1509.0}}, "position": {"x": 1851.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7898, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112109, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1505.0}, "se": {"x": 1856.0, "y": 1505.0}, "sw": {"x": 1846.0, "y": 1495.0}, "nw": {"x": 1856.0, "y": 1495.0}}, "position": {"x": 1851.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7899, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112110, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1491.0}, "se": {"x": 1856.0, "y": 1491.0}, "sw": {"x": 1846.0, "y": 1481.0}, "nw": {"x": 1856.0, "y": 1481.0}}, "position": {"x": 1851.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7900, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112111, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1477.0}, "se": {"x": 1856.0, "y": 1477.0}, "sw": {"x": 1846.0, "y": 1467.0}, "nw": {"x": 1856.0, "y": 1467.0}}, "position": {"x": 1851.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7901, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}], "6:6": [{"logicalSeatId": 1537112336, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1719.0}, "se": {"x": 1547.0, "y": 1729.0}, "sw": {"x": 1557.0, "y": 1719.0}, "nw": {"x": 1557.0, "y": 1729.0}}, "position": {"x": 1552.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7242, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112337, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1719.0}, "se": {"x": 1561.0, "y": 1729.0}, "sw": {"x": 1571.0, "y": 1719.0}, "nw": {"x": 1571.0, "y": 1729.0}}, "position": {"x": 1566.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7421, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112338, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1719.0}, "se": {"x": 1575.0, "y": 1729.0}, "sw": {"x": 1585.0, "y": 1719.0}, "nw": {"x": 1585.0, "y": 1729.0}}, "position": {"x": 1580.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7426, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112339, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1719.0}, "se": {"x": 1589.0, "y": 1729.0}, "sw": {"x": 1599.0, "y": 1719.0}, "nw": {"x": 1599.0, "y": 1729.0}}, "position": {"x": 1594.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7431, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112340, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1719.0}, "se": {"x": 1603.0, "y": 1729.0}, "sw": {"x": 1613.0, "y": 1719.0}, "nw": {"x": 1613.0, "y": 1729.0}}, "position": {"x": 1608.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7436, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112341, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1719.0}, "se": {"x": 1617.0, "y": 1729.0}, "sw": {"x": 1627.0, "y": 1719.0}, "nw": {"x": 1627.0, "y": 1729.0}}, "position": {"x": 1622.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7452, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112342, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1719.0}, "se": {"x": 1631.0, "y": 1729.0}, "sw": {"x": 1641.0, "y": 1719.0}, "nw": {"x": 1641.0, "y": 1729.0}}, "position": {"x": 1636.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7468, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112343, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1719.0}, "se": {"x": 1645.0, "y": 1729.0}, "sw": {"x": 1655.0, "y": 1719.0}, "nw": {"x": 1655.0, "y": 1729.0}}, "position": {"x": 1650.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7484, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112344, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1719.0}, "se": {"x": 1659.0, "y": 1729.0}, "sw": {"x": 1669.0, "y": 1719.0}, "nw": {"x": 1669.0, "y": 1729.0}}, "position": {"x": 1664.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7500, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112345, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1719.0}, "se": {"x": 1673.0, "y": 1729.0}, "sw": {"x": 1683.0, "y": 1719.0}, "nw": {"x": 1683.0, "y": 1729.0}}, "position": {"x": 1678.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7516, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112346, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1733.0}, "se": {"x": 1547.0, "y": 1743.0}, "sw": {"x": 1557.0, "y": 1733.0}, "nw": {"x": 1557.0, "y": 1743.0}}, "position": {"x": 1552.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7241, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112347, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1733.0}, "se": {"x": 1561.0, "y": 1743.0}, "sw": {"x": 1571.0, "y": 1733.0}, "nw": {"x": 1571.0, "y": 1743.0}}, "position": {"x": 1566.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7420, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112348, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1733.0}, "se": {"x": 1575.0, "y": 1743.0}, "sw": {"x": 1585.0, "y": 1733.0}, "nw": {"x": 1585.0, "y": 1743.0}}, "position": {"x": 1580.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7425, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112349, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1733.0}, "se": {"x": 1589.0, "y": 1743.0}, "sw": {"x": 1599.0, "y": 1733.0}, "nw": {"x": 1599.0, "y": 1743.0}}, "position": {"x": 1594.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7430, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112350, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1733.0}, "se": {"x": 1603.0, "y": 1743.0}, "sw": {"x": 1613.0, "y": 1733.0}, "nw": {"x": 1613.0, "y": 1743.0}}, "position": {"x": 1608.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7435, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112351, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1733.0}, "se": {"x": 1617.0, "y": 1743.0}, "sw": {"x": 1627.0, "y": 1733.0}, "nw": {"x": 1627.0, "y": 1743.0}}, "position": {"x": 1622.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7451, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112352, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1733.0}, "se": {"x": 1631.0, "y": 1743.0}, "sw": {"x": 1641.0, "y": 1733.0}, "nw": {"x": 1641.0, "y": 1743.0}}, "position": {"x": 1636.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7467, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112353, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1733.0}, "se": {"x": 1645.0, "y": 1743.0}, "sw": {"x": 1655.0, "y": 1733.0}, "nw": {"x": 1655.0, "y": 1743.0}}, "position": {"x": 1650.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7483, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112354, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1733.0}, "se": {"x": 1659.0, "y": 1743.0}, "sw": {"x": 1669.0, "y": 1733.0}, "nw": {"x": 1669.0, "y": 1743.0}}, "position": {"x": 1664.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7499, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112355, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1733.0}, "se": {"x": 1673.0, "y": 1743.0}, "sw": {"x": 1683.0, "y": 1733.0}, "nw": {"x": 1683.0, "y": 1743.0}}, "position": {"x": 1678.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7515, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112356, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1733.0}, "se": {"x": 1701.0, "y": 1743.0}, "sw": {"x": 1711.0, "y": 1733.0}, "nw": {"x": 1711.0, "y": 1743.0}}, "position": {"x": 1706.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157859, "gate": "", "blockId": null, "orderNum": 7542, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112357, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1747.0}, "se": {"x": 1547.0, "y": 1757.0}, "sw": {"x": 1557.0, "y": 1747.0}, "nw": {"x": 1557.0, "y": 1757.0}}, "position": {"x": 1552.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7240, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112358, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1747.0}, "se": {"x": 1561.0, "y": 1757.0}, "sw": {"x": 1571.0, "y": 1747.0}, "nw": {"x": 1571.0, "y": 1757.0}}, "position": {"x": 1566.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7419, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112359, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1747.0}, "se": {"x": 1575.0, "y": 1757.0}, "sw": {"x": 1585.0, "y": 1747.0}, "nw": {"x": 1585.0, "y": 1757.0}}, "position": {"x": 1580.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7424, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112360, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1747.0}, "se": {"x": 1589.0, "y": 1757.0}, "sw": {"x": 1599.0, "y": 1747.0}, "nw": {"x": 1599.0, "y": 1757.0}}, "position": {"x": 1594.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7429, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112361, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1747.0}, "se": {"x": 1603.0, "y": 1757.0}, "sw": {"x": 1613.0, "y": 1747.0}, "nw": {"x": 1613.0, "y": 1757.0}}, "position": {"x": 1608.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7434, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112362, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1747.0}, "se": {"x": 1617.0, "y": 1757.0}, "sw": {"x": 1627.0, "y": 1747.0}, "nw": {"x": 1627.0, "y": 1757.0}}, "position": {"x": 1622.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7450, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112363, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1747.0}, "se": {"x": 1631.0, "y": 1757.0}, "sw": {"x": 1641.0, "y": 1747.0}, "nw": {"x": 1641.0, "y": 1757.0}}, "position": {"x": 1636.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7466, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112364, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1747.0}, "se": {"x": 1645.0, "y": 1757.0}, "sw": {"x": 1655.0, "y": 1747.0}, "nw": {"x": 1655.0, "y": 1757.0}}, "position": {"x": 1650.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7482, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112365, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1747.0}, "se": {"x": 1659.0, "y": 1757.0}, "sw": {"x": 1669.0, "y": 1747.0}, "nw": {"x": 1669.0, "y": 1757.0}}, "position": {"x": 1664.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7498, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112366, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1747.0}, "se": {"x": 1673.0, "y": 1757.0}, "sw": {"x": 1683.0, "y": 1747.0}, "nw": {"x": 1683.0, "y": 1757.0}}, "position": {"x": 1678.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7514, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112367, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1747.0}, "se": {"x": 1687.0, "y": 1757.0}, "sw": {"x": 1697.0, "y": 1747.0}, "nw": {"x": 1697.0, "y": 1757.0}}, "position": {"x": 1692.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157883, "gate": "", "blockId": null, "orderNum": 7529, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112368, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1747.0}, "se": {"x": 1715.0, "y": 1757.0}, "sw": {"x": 1725.0, "y": 1747.0}, "nw": {"x": 1725.0, "y": 1757.0}}, "position": {"x": 1720.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157871, "gate": "", "blockId": null, "orderNum": 7625, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112369, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1747.0}, "se": {"x": 1729.0, "y": 1757.0}, "sw": {"x": 1739.0, "y": 1747.0}, "nw": {"x": 1739.0, "y": 1757.0}}, "position": {"x": 1734.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157885, "gate": "", "blockId": null, "orderNum": 7710, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112370, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1761.0}, "se": {"x": 1547.0, "y": 1771.0}, "sw": {"x": 1557.0, "y": 1761.0}, "nw": {"x": 1557.0, "y": 1771.0}}, "position": {"x": 1552.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7239, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112371, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1761.0}, "se": {"x": 1561.0, "y": 1771.0}, "sw": {"x": 1571.0, "y": 1761.0}, "nw": {"x": 1571.0, "y": 1771.0}}, "position": {"x": 1566.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7418, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112372, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1761.0}, "se": {"x": 1575.0, "y": 1771.0}, "sw": {"x": 1585.0, "y": 1761.0}, "nw": {"x": 1585.0, "y": 1771.0}}, "position": {"x": 1580.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7423, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112373, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1761.0}, "se": {"x": 1589.0, "y": 1771.0}, "sw": {"x": 1599.0, "y": 1761.0}, "nw": {"x": 1599.0, "y": 1771.0}}, "position": {"x": 1594.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7428, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112374, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1761.0}, "se": {"x": 1603.0, "y": 1771.0}, "sw": {"x": 1613.0, "y": 1761.0}, "nw": {"x": 1613.0, "y": 1771.0}}, "position": {"x": 1608.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7433, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112375, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1761.0}, "se": {"x": 1617.0, "y": 1771.0}, "sw": {"x": 1627.0, "y": 1761.0}, "nw": {"x": 1627.0, "y": 1771.0}}, "position": {"x": 1622.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7449, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112376, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1761.0}, "se": {"x": 1631.0, "y": 1771.0}, "sw": {"x": 1641.0, "y": 1761.0}, "nw": {"x": 1641.0, "y": 1771.0}}, "position": {"x": 1636.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7465, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112377, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1761.0}, "se": {"x": 1645.0, "y": 1771.0}, "sw": {"x": 1655.0, "y": 1761.0}, "nw": {"x": 1655.0, "y": 1771.0}}, "position": {"x": 1650.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7481, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112378, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1761.0}, "se": {"x": 1659.0, "y": 1771.0}, "sw": {"x": 1669.0, "y": 1761.0}, "nw": {"x": 1669.0, "y": 1771.0}}, "position": {"x": 1664.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7497, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112379, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1761.0}, "se": {"x": 1673.0, "y": 1771.0}, "sw": {"x": 1683.0, "y": 1761.0}, "nw": {"x": 1683.0, "y": 1771.0}}, "position": {"x": 1678.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7513, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112380, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1761.0}, "se": {"x": 1687.0, "y": 1771.0}, "sw": {"x": 1697.0, "y": 1761.0}, "nw": {"x": 1697.0, "y": 1771.0}}, "position": {"x": 1692.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157883, "gate": "", "blockId": null, "orderNum": 7528, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112381, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1761.0}, "se": {"x": 1701.0, "y": 1771.0}, "sw": {"x": 1711.0, "y": 1761.0}, "nw": {"x": 1711.0, "y": 1771.0}}, "position": {"x": 1706.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157884, "gate": "", "blockId": null, "orderNum": 7541, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112382, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1761.0}, "se": {"x": 1729.0, "y": 1771.0}, "sw": {"x": 1739.0, "y": 1761.0}, "nw": {"x": 1739.0, "y": 1771.0}}, "position": {"x": 1734.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157885, "gate": "", "blockId": null, "orderNum": 7709, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112383, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1761.0}, "se": {"x": 1743.0, "y": 1771.0}, "sw": {"x": 1753.0, "y": 1761.0}, "nw": {"x": 1753.0, "y": 1771.0}}, "position": {"x": 1748.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157886, "gate": "", "blockId": null, "orderNum": 7796, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "7:6": [{"logicalSeatId": 1537112043, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1673.0}, "se": {"x": 1814.0, "y": 1673.0}, "sw": {"x": 1804.0, "y": 1663.0}, "nw": {"x": 1814.0, "y": 1663.0}}, "position": {"x": 1809.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7626, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112044, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1659.0}, "se": {"x": 1814.0, "y": 1659.0}, "sw": {"x": 1804.0, "y": 1649.0}, "nw": {"x": 1814.0, "y": 1649.0}}, "position": {"x": 1809.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7627, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112045, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1645.0}, "se": {"x": 1814.0, "y": 1645.0}, "sw": {"x": 1804.0, "y": 1635.0}, "nw": {"x": 1814.0, "y": 1635.0}}, "position": {"x": 1809.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7628, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112046, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1631.0}, "se": {"x": 1814.0, "y": 1631.0}, "sw": {"x": 1804.0, "y": 1621.0}, "nw": {"x": 1814.0, "y": 1621.0}}, "position": {"x": 1809.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7629, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112047, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1617.0}, "se": {"x": 1814.0, "y": 1617.0}, "sw": {"x": 1804.0, "y": 1607.0}, "nw": {"x": 1814.0, "y": 1607.0}}, "position": {"x": 1809.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7630, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112048, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1603.0}, "se": {"x": 1814.0, "y": 1603.0}, "sw": {"x": 1804.0, "y": 1593.0}, "nw": {"x": 1814.0, "y": 1593.0}}, "position": {"x": 1809.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7631, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112049, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1589.0}, "se": {"x": 1814.0, "y": 1589.0}, "sw": {"x": 1804.0, "y": 1579.0}, "nw": {"x": 1814.0, "y": 1579.0}}, "position": {"x": 1809.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7632, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112050, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1575.0}, "se": {"x": 1814.0, "y": 1575.0}, "sw": {"x": 1804.0, "y": 1565.0}, "nw": {"x": 1814.0, "y": 1565.0}}, "position": {"x": 1809.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7633, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112051, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1561.0}, "se": {"x": 1814.0, "y": 1561.0}, "sw": {"x": 1804.0, "y": 1551.0}, "nw": {"x": 1814.0, "y": 1551.0}}, "position": {"x": 1809.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7634, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112052, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1547.0}, "se": {"x": 1814.0, "y": 1547.0}, "sw": {"x": 1804.0, "y": 1537.0}, "nw": {"x": 1814.0, "y": 1537.0}}, "position": {"x": 1809.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7635, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112058, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1715.0}, "se": {"x": 1828.0, "y": 1715.0}, "sw": {"x": 1818.0, "y": 1705.0}, "nw": {"x": 1828.0, "y": 1705.0}}, "position": {"x": 1823.0, "y": 1710.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157561, "gate": "", "blockId": null, "orderNum": 7711, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112059, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1687.0}, "se": {"x": 1828.0, "y": 1687.0}, "sw": {"x": 1818.0, "y": 1677.0}, "nw": {"x": 1828.0, "y": 1677.0}}, "position": {"x": 1823.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7712, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112060, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1673.0}, "se": {"x": 1828.0, "y": 1673.0}, "sw": {"x": 1818.0, "y": 1663.0}, "nw": {"x": 1828.0, "y": 1663.0}}, "position": {"x": 1823.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7713, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112061, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1659.0}, "se": {"x": 1828.0, "y": 1659.0}, "sw": {"x": 1818.0, "y": 1649.0}, "nw": {"x": 1828.0, "y": 1649.0}}, "position": {"x": 1823.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7714, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112062, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1645.0}, "se": {"x": 1828.0, "y": 1645.0}, "sw": {"x": 1818.0, "y": 1635.0}, "nw": {"x": 1828.0, "y": 1635.0}}, "position": {"x": 1823.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7715, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112063, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1631.0}, "se": {"x": 1828.0, "y": 1631.0}, "sw": {"x": 1818.0, "y": 1621.0}, "nw": {"x": 1828.0, "y": 1621.0}}, "position": {"x": 1823.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7716, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112064, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1617.0}, "se": {"x": 1828.0, "y": 1617.0}, "sw": {"x": 1818.0, "y": 1607.0}, "nw": {"x": 1828.0, "y": 1607.0}}, "position": {"x": 1823.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7717, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112065, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1603.0}, "se": {"x": 1828.0, "y": 1603.0}, "sw": {"x": 1818.0, "y": 1593.0}, "nw": {"x": 1828.0, "y": 1593.0}}, "position": {"x": 1823.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7718, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112066, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1589.0}, "se": {"x": 1828.0, "y": 1589.0}, "sw": {"x": 1818.0, "y": 1579.0}, "nw": {"x": 1828.0, "y": 1579.0}}, "position": {"x": 1823.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7719, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112067, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1575.0}, "se": {"x": 1828.0, "y": 1575.0}, "sw": {"x": 1818.0, "y": 1565.0}, "nw": {"x": 1828.0, "y": 1565.0}}, "position": {"x": 1823.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7720, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112068, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1561.0}, "se": {"x": 1828.0, "y": 1561.0}, "sw": {"x": 1818.0, "y": 1551.0}, "nw": {"x": 1828.0, "y": 1551.0}}, "position": {"x": 1823.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7721, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112069, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1547.0}, "se": {"x": 1828.0, "y": 1547.0}, "sw": {"x": 1818.0, "y": 1537.0}, "nw": {"x": 1828.0, "y": 1537.0}}, "position": {"x": 1823.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7722, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112075, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1729.0}, "se": {"x": 1842.0, "y": 1729.0}, "sw": {"x": 1832.0, "y": 1719.0}, "nw": {"x": 1842.0, "y": 1719.0}}, "position": {"x": 1837.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157578, "gate": "", "blockId": null, "orderNum": 7797, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112076, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1715.0}, "se": {"x": 1842.0, "y": 1715.0}, "sw": {"x": 1832.0, "y": 1705.0}, "nw": {"x": 1842.0, "y": 1705.0}}, "position": {"x": 1837.0, "y": 1710.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157578, "gate": "", "blockId": null, "orderNum": 7798, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112077, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1687.0}, "se": {"x": 1842.0, "y": 1687.0}, "sw": {"x": 1832.0, "y": 1677.0}, "nw": {"x": 1842.0, "y": 1677.0}}, "position": {"x": 1837.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7799, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112078, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1673.0}, "se": {"x": 1842.0, "y": 1673.0}, "sw": {"x": 1832.0, "y": 1663.0}, "nw": {"x": 1842.0, "y": 1663.0}}, "position": {"x": 1837.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7800, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112079, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1659.0}, "se": {"x": 1842.0, "y": 1659.0}, "sw": {"x": 1832.0, "y": 1649.0}, "nw": {"x": 1842.0, "y": 1649.0}}, "position": {"x": 1837.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7801, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112080, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1645.0}, "se": {"x": 1842.0, "y": 1645.0}, "sw": {"x": 1832.0, "y": 1635.0}, "nw": {"x": 1842.0, "y": 1635.0}}, "position": {"x": 1837.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7802, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112081, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1631.0}, "se": {"x": 1842.0, "y": 1631.0}, "sw": {"x": 1832.0, "y": 1621.0}, "nw": {"x": 1842.0, "y": 1621.0}}, "position": {"x": 1837.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7803, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112082, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1617.0}, "se": {"x": 1842.0, "y": 1617.0}, "sw": {"x": 1832.0, "y": 1607.0}, "nw": {"x": 1842.0, "y": 1607.0}}, "position": {"x": 1837.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7804, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112083, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1603.0}, "se": {"x": 1842.0, "y": 1603.0}, "sw": {"x": 1832.0, "y": 1593.0}, "nw": {"x": 1842.0, "y": 1593.0}}, "position": {"x": 1837.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7805, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112084, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1589.0}, "se": {"x": 1842.0, "y": 1589.0}, "sw": {"x": 1832.0, "y": 1579.0}, "nw": {"x": 1842.0, "y": 1579.0}}, "position": {"x": 1837.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7806, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112085, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1575.0}, "se": {"x": 1842.0, "y": 1575.0}, "sw": {"x": 1832.0, "y": 1565.0}, "nw": {"x": 1842.0, "y": 1565.0}}, "position": {"x": 1837.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7807, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112086, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1561.0}, "se": {"x": 1842.0, "y": 1561.0}, "sw": {"x": 1832.0, "y": 1551.0}, "nw": {"x": 1842.0, "y": 1551.0}}, "position": {"x": 1837.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7808, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112087, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1547.0}, "se": {"x": 1842.0, "y": 1547.0}, "sw": {"x": 1832.0, "y": 1537.0}, "nw": {"x": 1842.0, "y": 1537.0}}, "position": {"x": 1837.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7809, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112093, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1743.0}, "se": {"x": 1856.0, "y": 1743.0}, "sw": {"x": 1846.0, "y": 1733.0}, "nw": {"x": 1856.0, "y": 1733.0}}, "position": {"x": 1851.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157596, "gate": "", "blockId": null, "orderNum": 7883, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112094, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1729.0}, "se": {"x": 1856.0, "y": 1729.0}, "sw": {"x": 1846.0, "y": 1719.0}, "nw": {"x": 1856.0, "y": 1719.0}}, "position": {"x": 1851.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157596, "gate": "", "blockId": null, "orderNum": 7884, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112095, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1701.0}, "se": {"x": 1856.0, "y": 1701.0}, "sw": {"x": 1846.0, "y": 1691.0}, "nw": {"x": 1856.0, "y": 1691.0}}, "position": {"x": 1851.0, "y": 1696.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7885, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112096, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1687.0}, "se": {"x": 1856.0, "y": 1687.0}, "sw": {"x": 1846.0, "y": 1677.0}, "nw": {"x": 1856.0, "y": 1677.0}}, "position": {"x": 1851.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7886, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112097, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1673.0}, "se": {"x": 1856.0, "y": 1673.0}, "sw": {"x": 1846.0, "y": 1663.0}, "nw": {"x": 1856.0, "y": 1663.0}}, "position": {"x": 1851.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7887, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112098, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1659.0}, "se": {"x": 1856.0, "y": 1659.0}, "sw": {"x": 1846.0, "y": 1649.0}, "nw": {"x": 1856.0, "y": 1649.0}}, "position": {"x": 1851.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7888, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112099, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1645.0}, "se": {"x": 1856.0, "y": 1645.0}, "sw": {"x": 1846.0, "y": 1635.0}, "nw": {"x": 1856.0, "y": 1635.0}}, "position": {"x": 1851.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7889, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112100, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1631.0}, "se": {"x": 1856.0, "y": 1631.0}, "sw": {"x": 1846.0, "y": 1621.0}, "nw": {"x": 1856.0, "y": 1621.0}}, "position": {"x": 1851.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7890, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112101, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1617.0}, "se": {"x": 1856.0, "y": 1617.0}, "sw": {"x": 1846.0, "y": 1607.0}, "nw": {"x": 1856.0, "y": 1607.0}}, "position": {"x": 1851.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7891, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112102, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1603.0}, "se": {"x": 1856.0, "y": 1603.0}, "sw": {"x": 1846.0, "y": 1593.0}, "nw": {"x": 1856.0, "y": 1593.0}}, "position": {"x": 1851.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7892, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112103, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1589.0}, "se": {"x": 1856.0, "y": 1589.0}, "sw": {"x": 1846.0, "y": 1579.0}, "nw": {"x": 1856.0, "y": 1579.0}}, "position": {"x": 1851.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7893, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112104, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1575.0}, "se": {"x": 1856.0, "y": 1575.0}, "sw": {"x": 1846.0, "y": 1565.0}, "nw": {"x": 1856.0, "y": 1565.0}}, "position": {"x": 1851.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7894, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112105, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1561.0}, "se": {"x": 1856.0, "y": 1561.0}, "sw": {"x": 1846.0, "y": 1551.0}, "nw": {"x": 1856.0, "y": 1551.0}}, "position": {"x": 1851.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7895, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112106, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1547.0}, "se": {"x": 1856.0, "y": 1547.0}, "sw": {"x": 1846.0, "y": 1537.0}, "nw": {"x": 1856.0, "y": 1537.0}}, "position": {"x": 1851.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7896, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "6:7": [{"logicalSeatId": 1537112397, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1803.0}, "se": {"x": 1547.0, "y": 1813.0}, "sw": {"x": 1557.0, "y": 1803.0}, "nw": {"x": 1557.0, "y": 1813.0}}, "position": {"x": 1552.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7447, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112398, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1803.0}, "se": {"x": 1561.0, "y": 1813.0}, "sw": {"x": 1571.0, "y": 1803.0}, "nw": {"x": 1571.0, "y": 1813.0}}, "position": {"x": 1566.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7463, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112399, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1803.0}, "se": {"x": 1575.0, "y": 1813.0}, "sw": {"x": 1585.0, "y": 1803.0}, "nw": {"x": 1585.0, "y": 1813.0}}, "position": {"x": 1580.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7479, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112400, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1803.0}, "se": {"x": 1589.0, "y": 1813.0}, "sw": {"x": 1599.0, "y": 1803.0}, "nw": {"x": 1599.0, "y": 1813.0}}, "position": {"x": 1594.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7495, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112401, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1803.0}, "se": {"x": 1603.0, "y": 1813.0}, "sw": {"x": 1613.0, "y": 1803.0}, "nw": {"x": 1613.0, "y": 1813.0}}, "position": {"x": 1608.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7511, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112402, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1803.0}, "se": {"x": 1617.0, "y": 1813.0}, "sw": {"x": 1627.0, "y": 1803.0}, "nw": {"x": 1627.0, "y": 1813.0}}, "position": {"x": 1622.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7526, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112403, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1803.0}, "se": {"x": 1631.0, "y": 1813.0}, "sw": {"x": 1641.0, "y": 1803.0}, "nw": {"x": 1641.0, "y": 1813.0}}, "position": {"x": 1636.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7539, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112404, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1803.0}, "se": {"x": 1645.0, "y": 1813.0}, "sw": {"x": 1655.0, "y": 1803.0}, "nw": {"x": 1655.0, "y": 1813.0}}, "position": {"x": 1650.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7623, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112405, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1803.0}, "se": {"x": 1659.0, "y": 1813.0}, "sw": {"x": 1669.0, "y": 1803.0}, "nw": {"x": 1669.0, "y": 1813.0}}, "position": {"x": 1664.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7707, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112406, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1803.0}, "se": {"x": 1673.0, "y": 1813.0}, "sw": {"x": 1683.0, "y": 1803.0}, "nw": {"x": 1683.0, "y": 1813.0}}, "position": {"x": 1678.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7794, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112407, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1803.0}, "se": {"x": 1687.0, "y": 1813.0}, "sw": {"x": 1697.0, "y": 1803.0}, "nw": {"x": 1697.0, "y": 1813.0}}, "position": {"x": 1692.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7881, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112408, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1803.0}, "se": {"x": 1701.0, "y": 1813.0}, "sw": {"x": 1711.0, "y": 1803.0}, "nw": {"x": 1711.0, "y": 1813.0}}, "position": {"x": 1706.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7968, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112409, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1803.0}, "se": {"x": 1715.0, "y": 1813.0}, "sw": {"x": 1725.0, "y": 1803.0}, "nw": {"x": 1725.0, "y": 1813.0}}, "position": {"x": 1720.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7979, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112410, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1803.0}, "se": {"x": 1729.0, "y": 1813.0}, "sw": {"x": 1739.0, "y": 1803.0}, "nw": {"x": 1739.0, "y": 1813.0}}, "position": {"x": 1734.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7990, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112412, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1817.0}, "se": {"x": 1547.0, "y": 1827.0}, "sw": {"x": 1557.0, "y": 1817.0}, "nw": {"x": 1557.0, "y": 1827.0}}, "position": {"x": 1552.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7446, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112413, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1817.0}, "se": {"x": 1561.0, "y": 1827.0}, "sw": {"x": 1571.0, "y": 1817.0}, "nw": {"x": 1571.0, "y": 1827.0}}, "position": {"x": 1566.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7462, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112414, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1817.0}, "se": {"x": 1575.0, "y": 1827.0}, "sw": {"x": 1585.0, "y": 1817.0}, "nw": {"x": 1585.0, "y": 1827.0}}, "position": {"x": 1580.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7478, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112415, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1817.0}, "se": {"x": 1589.0, "y": 1827.0}, "sw": {"x": 1599.0, "y": 1817.0}, "nw": {"x": 1599.0, "y": 1827.0}}, "position": {"x": 1594.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7494, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112416, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1817.0}, "se": {"x": 1603.0, "y": 1827.0}, "sw": {"x": 1613.0, "y": 1817.0}, "nw": {"x": 1613.0, "y": 1827.0}}, "position": {"x": 1608.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7510, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112417, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1817.0}, "se": {"x": 1617.0, "y": 1827.0}, "sw": {"x": 1627.0, "y": 1817.0}, "nw": {"x": 1627.0, "y": 1827.0}}, "position": {"x": 1622.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7525, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112418, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1817.0}, "se": {"x": 1631.0, "y": 1827.0}, "sw": {"x": 1641.0, "y": 1817.0}, "nw": {"x": 1641.0, "y": 1827.0}}, "position": {"x": 1636.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7538, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112419, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1817.0}, "se": {"x": 1645.0, "y": 1827.0}, "sw": {"x": 1655.0, "y": 1817.0}, "nw": {"x": 1655.0, "y": 1827.0}}, "position": {"x": 1650.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7622, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112420, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1817.0}, "se": {"x": 1659.0, "y": 1827.0}, "sw": {"x": 1669.0, "y": 1817.0}, "nw": {"x": 1669.0, "y": 1827.0}}, "position": {"x": 1664.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7706, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112421, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1817.0}, "se": {"x": 1673.0, "y": 1827.0}, "sw": {"x": 1683.0, "y": 1817.0}, "nw": {"x": 1683.0, "y": 1827.0}}, "position": {"x": 1678.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7793, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112422, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1817.0}, "se": {"x": 1687.0, "y": 1827.0}, "sw": {"x": 1697.0, "y": 1817.0}, "nw": {"x": 1697.0, "y": 1827.0}}, "position": {"x": 1692.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7880, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112423, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1817.0}, "se": {"x": 1701.0, "y": 1827.0}, "sw": {"x": 1711.0, "y": 1817.0}, "nw": {"x": 1711.0, "y": 1827.0}}, "position": {"x": 1706.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7967, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112424, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1817.0}, "se": {"x": 1715.0, "y": 1827.0}, "sw": {"x": 1725.0, "y": 1817.0}, "nw": {"x": 1725.0, "y": 1827.0}}, "position": {"x": 1720.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7978, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112425, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1817.0}, "se": {"x": 1729.0, "y": 1827.0}, "sw": {"x": 1739.0, "y": 1817.0}, "nw": {"x": 1739.0, "y": 1827.0}}, "position": {"x": 1734.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7989, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112426, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1817.0}, "se": {"x": 1743.0, "y": 1827.0}, "sw": {"x": 1753.0, "y": 1817.0}, "nw": {"x": 1753.0, "y": 1827.0}}, "position": {"x": 1748.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7999, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112428, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1831.0}, "se": {"x": 1547.0, "y": 1841.0}, "sw": {"x": 1557.0, "y": 1831.0}, "nw": {"x": 1557.0, "y": 1841.0}}, "position": {"x": 1552.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7445, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112429, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1831.0}, "se": {"x": 1561.0, "y": 1841.0}, "sw": {"x": 1571.0, "y": 1831.0}, "nw": {"x": 1571.0, "y": 1841.0}}, "position": {"x": 1566.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7461, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112430, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1831.0}, "se": {"x": 1575.0, "y": 1841.0}, "sw": {"x": 1585.0, "y": 1831.0}, "nw": {"x": 1585.0, "y": 1841.0}}, "position": {"x": 1580.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7477, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112431, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1831.0}, "se": {"x": 1589.0, "y": 1841.0}, "sw": {"x": 1599.0, "y": 1831.0}, "nw": {"x": 1599.0, "y": 1841.0}}, "position": {"x": 1594.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7493, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112432, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1831.0}, "se": {"x": 1603.0, "y": 1841.0}, "sw": {"x": 1613.0, "y": 1831.0}, "nw": {"x": 1613.0, "y": 1841.0}}, "position": {"x": 1608.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7509, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112433, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1831.0}, "se": {"x": 1617.0, "y": 1841.0}, "sw": {"x": 1627.0, "y": 1831.0}, "nw": {"x": 1627.0, "y": 1841.0}}, "position": {"x": 1622.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7524, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112434, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1831.0}, "se": {"x": 1631.0, "y": 1841.0}, "sw": {"x": 1641.0, "y": 1831.0}, "nw": {"x": 1641.0, "y": 1841.0}}, "position": {"x": 1636.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7537, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112435, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1831.0}, "se": {"x": 1645.0, "y": 1841.0}, "sw": {"x": 1655.0, "y": 1831.0}, "nw": {"x": 1655.0, "y": 1841.0}}, "position": {"x": 1650.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7621, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112436, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1831.0}, "se": {"x": 1659.0, "y": 1841.0}, "sw": {"x": 1669.0, "y": 1831.0}, "nw": {"x": 1669.0, "y": 1841.0}}, "position": {"x": 1664.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7705, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112437, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1831.0}, "se": {"x": 1673.0, "y": 1841.0}, "sw": {"x": 1683.0, "y": 1831.0}, "nw": {"x": 1683.0, "y": 1841.0}}, "position": {"x": 1678.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7792, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112438, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1831.0}, "se": {"x": 1687.0, "y": 1841.0}, "sw": {"x": 1697.0, "y": 1831.0}, "nw": {"x": 1697.0, "y": 1841.0}}, "position": {"x": 1692.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7879, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112439, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1831.0}, "se": {"x": 1701.0, "y": 1841.0}, "sw": {"x": 1711.0, "y": 1831.0}, "nw": {"x": 1711.0, "y": 1841.0}}, "position": {"x": 1706.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7966, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112440, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1831.0}, "se": {"x": 1715.0, "y": 1841.0}, "sw": {"x": 1725.0, "y": 1831.0}, "nw": {"x": 1725.0, "y": 1841.0}}, "position": {"x": 1720.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7977, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112441, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1831.0}, "se": {"x": 1729.0, "y": 1841.0}, "sw": {"x": 1739.0, "y": 1831.0}, "nw": {"x": 1739.0, "y": 1841.0}}, "position": {"x": 1734.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7988, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112442, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1831.0}, "se": {"x": 1743.0, "y": 1841.0}, "sw": {"x": 1753.0, "y": 1831.0}, "nw": {"x": 1753.0, "y": 1841.0}}, "position": {"x": 1748.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7998, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112445, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1845.0}, "se": {"x": 1547.0, "y": 1855.0}, "sw": {"x": 1557.0, "y": 1845.0}, "nw": {"x": 1557.0, "y": 1855.0}}, "position": {"x": 1552.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7444, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112446, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1845.0}, "se": {"x": 1561.0, "y": 1855.0}, "sw": {"x": 1571.0, "y": 1845.0}, "nw": {"x": 1571.0, "y": 1855.0}}, "position": {"x": 1566.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7460, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112447, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1845.0}, "se": {"x": 1575.0, "y": 1855.0}, "sw": {"x": 1585.0, "y": 1845.0}, "nw": {"x": 1585.0, "y": 1855.0}}, "position": {"x": 1580.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7476, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112448, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1845.0}, "se": {"x": 1589.0, "y": 1855.0}, "sw": {"x": 1599.0, "y": 1845.0}, "nw": {"x": 1599.0, "y": 1855.0}}, "position": {"x": 1594.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7492, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112449, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1845.0}, "se": {"x": 1603.0, "y": 1855.0}, "sw": {"x": 1613.0, "y": 1845.0}, "nw": {"x": 1613.0, "y": 1855.0}}, "position": {"x": 1608.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7508, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112450, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1845.0}, "se": {"x": 1617.0, "y": 1855.0}, "sw": {"x": 1627.0, "y": 1845.0}, "nw": {"x": 1627.0, "y": 1855.0}}, "position": {"x": 1622.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7523, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112451, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1845.0}, "se": {"x": 1631.0, "y": 1855.0}, "sw": {"x": 1641.0, "y": 1845.0}, "nw": {"x": 1641.0, "y": 1855.0}}, "position": {"x": 1636.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7536, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112452, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1845.0}, "se": {"x": 1645.0, "y": 1855.0}, "sw": {"x": 1655.0, "y": 1845.0}, "nw": {"x": 1655.0, "y": 1855.0}}, "position": {"x": 1650.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7620, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112453, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1845.0}, "se": {"x": 1659.0, "y": 1855.0}, "sw": {"x": 1669.0, "y": 1845.0}, "nw": {"x": 1669.0, "y": 1855.0}}, "position": {"x": 1664.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7704, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112454, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1845.0}, "se": {"x": 1673.0, "y": 1855.0}, "sw": {"x": 1683.0, "y": 1845.0}, "nw": {"x": 1683.0, "y": 1855.0}}, "position": {"x": 1678.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7791, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112455, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1845.0}, "se": {"x": 1687.0, "y": 1855.0}, "sw": {"x": 1697.0, "y": 1845.0}, "nw": {"x": 1697.0, "y": 1855.0}}, "position": {"x": 1692.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7878, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112456, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1845.0}, "se": {"x": 1701.0, "y": 1855.0}, "sw": {"x": 1711.0, "y": 1845.0}, "nw": {"x": 1711.0, "y": 1855.0}}, "position": {"x": 1706.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7965, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112457, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1845.0}, "se": {"x": 1715.0, "y": 1855.0}, "sw": {"x": 1725.0, "y": 1845.0}, "nw": {"x": 1725.0, "y": 1855.0}}, "position": {"x": 1720.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7976, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112458, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1845.0}, "se": {"x": 1729.0, "y": 1855.0}, "sw": {"x": 1739.0, "y": 1845.0}, "nw": {"x": 1739.0, "y": 1855.0}}, "position": {"x": 1734.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7987, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112459, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1845.0}, "se": {"x": 1743.0, "y": 1855.0}, "sw": {"x": 1753.0, "y": 1845.0}, "nw": {"x": 1753.0, "y": 1855.0}}, "position": {"x": 1748.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7997, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112463, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1859.0}, "se": {"x": 1547.0, "y": 1869.0}, "sw": {"x": 1557.0, "y": 1859.0}, "nw": {"x": 1557.0, "y": 1869.0}}, "position": {"x": 1552.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7443, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112464, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1859.0}, "se": {"x": 1561.0, "y": 1869.0}, "sw": {"x": 1571.0, "y": 1859.0}, "nw": {"x": 1571.0, "y": 1869.0}}, "position": {"x": 1566.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7459, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112465, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1859.0}, "se": {"x": 1575.0, "y": 1869.0}, "sw": {"x": 1585.0, "y": 1859.0}, "nw": {"x": 1585.0, "y": 1869.0}}, "position": {"x": 1580.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7475, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112466, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1859.0}, "se": {"x": 1589.0, "y": 1869.0}, "sw": {"x": 1599.0, "y": 1859.0}, "nw": {"x": 1599.0, "y": 1869.0}}, "position": {"x": 1594.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7491, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112467, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1859.0}, "se": {"x": 1603.0, "y": 1869.0}, "sw": {"x": 1613.0, "y": 1859.0}, "nw": {"x": 1613.0, "y": 1869.0}}, "position": {"x": 1608.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7507, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112468, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1859.0}, "se": {"x": 1617.0, "y": 1869.0}, "sw": {"x": 1627.0, "y": 1859.0}, "nw": {"x": 1627.0, "y": 1869.0}}, "position": {"x": 1622.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7522, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112469, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1859.0}, "se": {"x": 1631.0, "y": 1869.0}, "sw": {"x": 1641.0, "y": 1859.0}, "nw": {"x": 1641.0, "y": 1869.0}}, "position": {"x": 1636.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7535, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112470, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1859.0}, "se": {"x": 1645.0, "y": 1869.0}, "sw": {"x": 1655.0, "y": 1859.0}, "nw": {"x": 1655.0, "y": 1869.0}}, "position": {"x": 1650.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7619, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112471, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1859.0}, "se": {"x": 1659.0, "y": 1869.0}, "sw": {"x": 1669.0, "y": 1859.0}, "nw": {"x": 1669.0, "y": 1869.0}}, "position": {"x": 1664.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7703, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112472, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1859.0}, "se": {"x": 1673.0, "y": 1869.0}, "sw": {"x": 1683.0, "y": 1859.0}, "nw": {"x": 1683.0, "y": 1869.0}}, "position": {"x": 1678.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7790, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112473, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1859.0}, "se": {"x": 1687.0, "y": 1869.0}, "sw": {"x": 1697.0, "y": 1859.0}, "nw": {"x": 1697.0, "y": 1869.0}}, "position": {"x": 1692.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7877, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112474, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1859.0}, "se": {"x": 1701.0, "y": 1869.0}, "sw": {"x": 1711.0, "y": 1859.0}, "nw": {"x": 1711.0, "y": 1869.0}}, "position": {"x": 1706.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7964, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112475, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1859.0}, "se": {"x": 1715.0, "y": 1869.0}, "sw": {"x": 1725.0, "y": 1859.0}, "nw": {"x": 1725.0, "y": 1869.0}}, "position": {"x": 1720.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7975, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112476, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1859.0}, "se": {"x": 1729.0, "y": 1869.0}, "sw": {"x": 1739.0, "y": 1859.0}, "nw": {"x": 1739.0, "y": 1869.0}}, "position": {"x": 1734.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7986, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112477, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1859.0}, "se": {"x": 1743.0, "y": 1869.0}, "sw": {"x": 1753.0, "y": 1859.0}, "nw": {"x": 1753.0, "y": 1869.0}}, "position": {"x": 1748.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7996, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112478, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1859.0}, "se": {"x": 1757.0, "y": 1869.0}, "sw": {"x": 1767.0, "y": 1859.0}, "nw": {"x": 1767.0, "y": 1869.0}}, "position": {"x": 1762.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8005, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112482, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1873.0}, "se": {"x": 1547.0, "y": 1883.0}, "sw": {"x": 1557.0, "y": 1873.0}, "nw": {"x": 1557.0, "y": 1883.0}}, "position": {"x": 1552.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7442, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112483, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1873.0}, "se": {"x": 1561.0, "y": 1883.0}, "sw": {"x": 1571.0, "y": 1873.0}, "nw": {"x": 1571.0, "y": 1883.0}}, "position": {"x": 1566.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7458, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112484, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1873.0}, "se": {"x": 1575.0, "y": 1883.0}, "sw": {"x": 1585.0, "y": 1873.0}, "nw": {"x": 1585.0, "y": 1883.0}}, "position": {"x": 1580.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7474, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112485, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1873.0}, "se": {"x": 1589.0, "y": 1883.0}, "sw": {"x": 1599.0, "y": 1873.0}, "nw": {"x": 1599.0, "y": 1883.0}}, "position": {"x": 1594.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7490, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112486, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1873.0}, "se": {"x": 1603.0, "y": 1883.0}, "sw": {"x": 1613.0, "y": 1873.0}, "nw": {"x": 1613.0, "y": 1883.0}}, "position": {"x": 1608.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7506, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112487, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1873.0}, "se": {"x": 1617.0, "y": 1883.0}, "sw": {"x": 1627.0, "y": 1873.0}, "nw": {"x": 1627.0, "y": 1883.0}}, "position": {"x": 1622.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7521, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112488, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1873.0}, "se": {"x": 1631.0, "y": 1883.0}, "sw": {"x": 1641.0, "y": 1873.0}, "nw": {"x": 1641.0, "y": 1883.0}}, "position": {"x": 1636.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7534, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112489, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1873.0}, "se": {"x": 1645.0, "y": 1883.0}, "sw": {"x": 1655.0, "y": 1873.0}, "nw": {"x": 1655.0, "y": 1883.0}}, "position": {"x": 1650.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7618, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112490, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1873.0}, "se": {"x": 1659.0, "y": 1883.0}, "sw": {"x": 1669.0, "y": 1873.0}, "nw": {"x": 1669.0, "y": 1883.0}}, "position": {"x": 1664.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7702, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112491, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1873.0}, "se": {"x": 1673.0, "y": 1883.0}, "sw": {"x": 1683.0, "y": 1873.0}, "nw": {"x": 1683.0, "y": 1883.0}}, "position": {"x": 1678.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7789, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112492, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1873.0}, "se": {"x": 1687.0, "y": 1883.0}, "sw": {"x": 1697.0, "y": 1873.0}, "nw": {"x": 1697.0, "y": 1883.0}}, "position": {"x": 1692.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7876, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112493, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1873.0}, "se": {"x": 1701.0, "y": 1883.0}, "sw": {"x": 1711.0, "y": 1873.0}, "nw": {"x": 1711.0, "y": 1883.0}}, "position": {"x": 1706.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7963, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112494, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1873.0}, "se": {"x": 1715.0, "y": 1883.0}, "sw": {"x": 1725.0, "y": 1873.0}, "nw": {"x": 1725.0, "y": 1883.0}}, "position": {"x": 1720.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7974, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112495, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1873.0}, "se": {"x": 1729.0, "y": 1883.0}, "sw": {"x": 1739.0, "y": 1873.0}, "nw": {"x": 1739.0, "y": 1883.0}}, "position": {"x": 1734.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7985, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112496, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1873.0}, "se": {"x": 1743.0, "y": 1883.0}, "sw": {"x": 1753.0, "y": 1873.0}, "nw": {"x": 1753.0, "y": 1883.0}}, "position": {"x": 1748.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7995, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112497, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1873.0}, "se": {"x": 1757.0, "y": 1883.0}, "sw": {"x": 1767.0, "y": 1873.0}, "nw": {"x": 1767.0, "y": 1883.0}}, "position": {"x": 1762.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8004, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112498, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1873.0}, "se": {"x": 1785.0, "y": 1883.0}, "sw": {"x": 1795.0, "y": 1873.0}, "nw": {"x": 1795.0, "y": 1883.0}}, "position": {"x": 1790.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8011, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112507, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1887.0}, "se": {"x": 1547.0, "y": 1897.0}, "sw": {"x": 1557.0, "y": 1887.0}, "nw": {"x": 1557.0, "y": 1897.0}}, "position": {"x": 1552.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7441, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112508, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1887.0}, "se": {"x": 1561.0, "y": 1897.0}, "sw": {"x": 1571.0, "y": 1887.0}, "nw": {"x": 1571.0, "y": 1897.0}}, "position": {"x": 1566.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7457, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112509, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1887.0}, "se": {"x": 1575.0, "y": 1897.0}, "sw": {"x": 1585.0, "y": 1887.0}, "nw": {"x": 1585.0, "y": 1897.0}}, "position": {"x": 1580.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7473, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112510, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1887.0}, "se": {"x": 1589.0, "y": 1897.0}, "sw": {"x": 1599.0, "y": 1887.0}, "nw": {"x": 1599.0, "y": 1897.0}}, "position": {"x": 1594.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7489, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112511, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1887.0}, "se": {"x": 1603.0, "y": 1897.0}, "sw": {"x": 1613.0, "y": 1887.0}, "nw": {"x": 1613.0, "y": 1897.0}}, "position": {"x": 1608.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7505, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112512, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1887.0}, "se": {"x": 1617.0, "y": 1897.0}, "sw": {"x": 1627.0, "y": 1887.0}, "nw": {"x": 1627.0, "y": 1897.0}}, "position": {"x": 1622.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7520, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112513, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1887.0}, "se": {"x": 1631.0, "y": 1897.0}, "sw": {"x": 1641.0, "y": 1887.0}, "nw": {"x": 1641.0, "y": 1897.0}}, "position": {"x": 1636.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7533, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112514, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1887.0}, "se": {"x": 1645.0, "y": 1897.0}, "sw": {"x": 1655.0, "y": 1887.0}, "nw": {"x": 1655.0, "y": 1897.0}}, "position": {"x": 1650.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7617, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112515, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1887.0}, "se": {"x": 1659.0, "y": 1897.0}, "sw": {"x": 1669.0, "y": 1887.0}, "nw": {"x": 1669.0, "y": 1897.0}}, "position": {"x": 1664.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7701, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112516, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1887.0}, "se": {"x": 1673.0, "y": 1897.0}, "sw": {"x": 1683.0, "y": 1887.0}, "nw": {"x": 1683.0, "y": 1897.0}}, "position": {"x": 1678.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7788, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112517, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1887.0}, "se": {"x": 1687.0, "y": 1897.0}, "sw": {"x": 1697.0, "y": 1887.0}, "nw": {"x": 1697.0, "y": 1897.0}}, "position": {"x": 1692.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7875, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112518, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1887.0}, "se": {"x": 1701.0, "y": 1897.0}, "sw": {"x": 1711.0, "y": 1887.0}, "nw": {"x": 1711.0, "y": 1897.0}}, "position": {"x": 1706.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7962, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112519, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1887.0}, "se": {"x": 1715.0, "y": 1897.0}, "sw": {"x": 1725.0, "y": 1887.0}, "nw": {"x": 1725.0, "y": 1897.0}}, "position": {"x": 1720.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7973, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112520, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1887.0}, "se": {"x": 1729.0, "y": 1897.0}, "sw": {"x": 1739.0, "y": 1887.0}, "nw": {"x": 1739.0, "y": 1897.0}}, "position": {"x": 1734.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7984, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112521, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1887.0}, "se": {"x": 1743.0, "y": 1897.0}, "sw": {"x": 1753.0, "y": 1887.0}, "nw": {"x": 1753.0, "y": 1897.0}}, "position": {"x": 1748.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7994, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112522, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1887.0}, "se": {"x": 1757.0, "y": 1897.0}, "sw": {"x": 1767.0, "y": 1887.0}, "nw": {"x": 1767.0, "y": 1897.0}}, "position": {"x": 1762.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8003, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112523, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1887.0}, "se": {"x": 1785.0, "y": 1897.0}, "sw": {"x": 1795.0, "y": 1887.0}, "nw": {"x": 1795.0, "y": 1897.0}}, "position": {"x": 1790.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8010, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112533, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1901.0}, "se": {"x": 1547.0, "y": 1911.0}, "sw": {"x": 1557.0, "y": 1901.0}, "nw": {"x": 1557.0, "y": 1911.0}}, "position": {"x": 1552.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7440, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112534, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1901.0}, "se": {"x": 1561.0, "y": 1911.0}, "sw": {"x": 1571.0, "y": 1901.0}, "nw": {"x": 1571.0, "y": 1911.0}}, "position": {"x": 1566.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7456, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112535, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1901.0}, "se": {"x": 1575.0, "y": 1911.0}, "sw": {"x": 1585.0, "y": 1901.0}, "nw": {"x": 1585.0, "y": 1911.0}}, "position": {"x": 1580.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7472, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112536, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1901.0}, "se": {"x": 1589.0, "y": 1911.0}, "sw": {"x": 1599.0, "y": 1901.0}, "nw": {"x": 1599.0, "y": 1911.0}}, "position": {"x": 1594.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7488, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112537, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1901.0}, "se": {"x": 1603.0, "y": 1911.0}, "sw": {"x": 1613.0, "y": 1901.0}, "nw": {"x": 1613.0, "y": 1911.0}}, "position": {"x": 1608.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7504, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112538, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1901.0}, "se": {"x": 1617.0, "y": 1911.0}, "sw": {"x": 1627.0, "y": 1901.0}, "nw": {"x": 1627.0, "y": 1911.0}}, "position": {"x": 1622.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7519, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112539, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1901.0}, "se": {"x": 1631.0, "y": 1911.0}, "sw": {"x": 1641.0, "y": 1901.0}, "nw": {"x": 1641.0, "y": 1911.0}}, "position": {"x": 1636.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7532, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112540, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1901.0}, "se": {"x": 1645.0, "y": 1911.0}, "sw": {"x": 1655.0, "y": 1901.0}, "nw": {"x": 1655.0, "y": 1911.0}}, "position": {"x": 1650.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7616, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112541, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1901.0}, "se": {"x": 1659.0, "y": 1911.0}, "sw": {"x": 1669.0, "y": 1901.0}, "nw": {"x": 1669.0, "y": 1911.0}}, "position": {"x": 1664.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7700, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112542, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1901.0}, "se": {"x": 1673.0, "y": 1911.0}, "sw": {"x": 1683.0, "y": 1901.0}, "nw": {"x": 1683.0, "y": 1911.0}}, "position": {"x": 1678.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7787, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112543, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1901.0}, "se": {"x": 1687.0, "y": 1911.0}, "sw": {"x": 1697.0, "y": 1901.0}, "nw": {"x": 1697.0, "y": 1911.0}}, "position": {"x": 1692.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7874, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112544, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1901.0}, "se": {"x": 1701.0, "y": 1911.0}, "sw": {"x": 1711.0, "y": 1901.0}, "nw": {"x": 1711.0, "y": 1911.0}}, "position": {"x": 1706.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7961, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112545, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1901.0}, "se": {"x": 1715.0, "y": 1911.0}, "sw": {"x": 1725.0, "y": 1901.0}, "nw": {"x": 1725.0, "y": 1911.0}}, "position": {"x": 1720.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7972, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112546, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1901.0}, "se": {"x": 1729.0, "y": 1911.0}, "sw": {"x": 1739.0, "y": 1901.0}, "nw": {"x": 1739.0, "y": 1911.0}}, "position": {"x": 1734.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7983, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112547, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1901.0}, "se": {"x": 1743.0, "y": 1911.0}, "sw": {"x": 1753.0, "y": 1901.0}, "nw": {"x": 1753.0, "y": 1911.0}}, "position": {"x": 1748.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7993, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112548, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1901.0}, "se": {"x": 1757.0, "y": 1911.0}, "sw": {"x": 1767.0, "y": 1901.0}, "nw": {"x": 1767.0, "y": 1911.0}}, "position": {"x": 1762.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8002, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112549, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1901.0}, "se": {"x": 1785.0, "y": 1911.0}, "sw": {"x": 1795.0, "y": 1901.0}, "nw": {"x": 1795.0, "y": 1911.0}}, "position": {"x": 1790.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8009, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112560, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1915.0}, "se": {"x": 1547.0, "y": 1925.0}, "sw": {"x": 1557.0, "y": 1915.0}, "nw": {"x": 1557.0, "y": 1925.0}}, "position": {"x": 1552.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7439, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112561, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1915.0}, "se": {"x": 1561.0, "y": 1925.0}, "sw": {"x": 1571.0, "y": 1915.0}, "nw": {"x": 1571.0, "y": 1925.0}}, "position": {"x": 1566.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7455, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112562, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1915.0}, "se": {"x": 1575.0, "y": 1925.0}, "sw": {"x": 1585.0, "y": 1915.0}, "nw": {"x": 1585.0, "y": 1925.0}}, "position": {"x": 1580.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7471, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112563, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1915.0}, "se": {"x": 1589.0, "y": 1925.0}, "sw": {"x": 1599.0, "y": 1915.0}, "nw": {"x": 1599.0, "y": 1925.0}}, "position": {"x": 1594.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7487, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112564, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1915.0}, "se": {"x": 1603.0, "y": 1925.0}, "sw": {"x": 1613.0, "y": 1915.0}, "nw": {"x": 1613.0, "y": 1925.0}}, "position": {"x": 1608.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7503, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112565, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1915.0}, "se": {"x": 1617.0, "y": 1925.0}, "sw": {"x": 1627.0, "y": 1915.0}, "nw": {"x": 1627.0, "y": 1925.0}}, "position": {"x": 1622.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7518, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112566, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1915.0}, "se": {"x": 1631.0, "y": 1925.0}, "sw": {"x": 1641.0, "y": 1915.0}, "nw": {"x": 1641.0, "y": 1925.0}}, "position": {"x": 1636.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7531, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112567, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1915.0}, "se": {"x": 1645.0, "y": 1925.0}, "sw": {"x": 1655.0, "y": 1915.0}, "nw": {"x": 1655.0, "y": 1925.0}}, "position": {"x": 1650.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7615, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112568, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1915.0}, "se": {"x": 1659.0, "y": 1925.0}, "sw": {"x": 1669.0, "y": 1915.0}, "nw": {"x": 1669.0, "y": 1925.0}}, "position": {"x": 1664.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7699, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112569, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1915.0}, "se": {"x": 1673.0, "y": 1925.0}, "sw": {"x": 1683.0, "y": 1915.0}, "nw": {"x": 1683.0, "y": 1925.0}}, "position": {"x": 1678.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7786, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112570, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1915.0}, "se": {"x": 1687.0, "y": 1925.0}, "sw": {"x": 1697.0, "y": 1915.0}, "nw": {"x": 1697.0, "y": 1925.0}}, "position": {"x": 1692.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7873, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112571, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1915.0}, "se": {"x": 1701.0, "y": 1925.0}, "sw": {"x": 1711.0, "y": 1915.0}, "nw": {"x": 1711.0, "y": 1925.0}}, "position": {"x": 1706.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7960, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112572, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1915.0}, "se": {"x": 1715.0, "y": 1925.0}, "sw": {"x": 1725.0, "y": 1915.0}, "nw": {"x": 1725.0, "y": 1925.0}}, "position": {"x": 1720.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7971, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112573, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1915.0}, "se": {"x": 1729.0, "y": 1925.0}, "sw": {"x": 1739.0, "y": 1915.0}, "nw": {"x": 1739.0, "y": 1925.0}}, "position": {"x": 1734.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7982, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112574, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1915.0}, "se": {"x": 1743.0, "y": 1925.0}, "sw": {"x": 1753.0, "y": 1915.0}, "nw": {"x": 1753.0, "y": 1925.0}}, "position": {"x": 1748.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7992, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112575, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1915.0}, "se": {"x": 1757.0, "y": 1925.0}, "sw": {"x": 1767.0, "y": 1915.0}, "nw": {"x": 1767.0, "y": 1925.0}}, "position": {"x": 1762.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8001, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112576, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1915.0}, "se": {"x": 1785.0, "y": 1925.0}, "sw": {"x": 1795.0, "y": 1915.0}, "nw": {"x": 1795.0, "y": 1925.0}}, "position": {"x": 1790.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8008, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112589, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1929.0}, "se": {"x": 1547.0, "y": 1939.0}, "sw": {"x": 1557.0, "y": 1929.0}, "nw": {"x": 1557.0, "y": 1939.0}}, "position": {"x": 1552.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7438, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112590, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1929.0}, "se": {"x": 1561.0, "y": 1939.0}, "sw": {"x": 1571.0, "y": 1929.0}, "nw": {"x": 1571.0, "y": 1939.0}}, "position": {"x": 1566.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7454, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112591, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1929.0}, "se": {"x": 1575.0, "y": 1939.0}, "sw": {"x": 1585.0, "y": 1929.0}, "nw": {"x": 1585.0, "y": 1939.0}}, "position": {"x": 1580.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7470, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112592, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1929.0}, "se": {"x": 1589.0, "y": 1939.0}, "sw": {"x": 1599.0, "y": 1929.0}, "nw": {"x": 1599.0, "y": 1939.0}}, "position": {"x": 1594.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7486, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112593, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1929.0}, "se": {"x": 1603.0, "y": 1939.0}, "sw": {"x": 1613.0, "y": 1929.0}, "nw": {"x": 1613.0, "y": 1939.0}}, "position": {"x": 1608.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7502, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112594, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1929.0}, "se": {"x": 1617.0, "y": 1939.0}, "sw": {"x": 1627.0, "y": 1929.0}, "nw": {"x": 1627.0, "y": 1939.0}}, "position": {"x": 1622.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7517, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112595, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1929.0}, "se": {"x": 1631.0, "y": 1939.0}, "sw": {"x": 1641.0, "y": 1929.0}, "nw": {"x": 1641.0, "y": 1939.0}}, "position": {"x": 1636.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7530, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112596, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1929.0}, "se": {"x": 1645.0, "y": 1939.0}, "sw": {"x": 1655.0, "y": 1929.0}, "nw": {"x": 1655.0, "y": 1939.0}}, "position": {"x": 1650.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7614, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112597, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1929.0}, "se": {"x": 1659.0, "y": 1939.0}, "sw": {"x": 1669.0, "y": 1929.0}, "nw": {"x": 1669.0, "y": 1939.0}}, "position": {"x": 1664.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7698, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112598, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1929.0}, "se": {"x": 1673.0, "y": 1939.0}, "sw": {"x": 1683.0, "y": 1929.0}, "nw": {"x": 1683.0, "y": 1939.0}}, "position": {"x": 1678.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7785, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112599, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1929.0}, "se": {"x": 1687.0, "y": 1939.0}, "sw": {"x": 1697.0, "y": 1929.0}, "nw": {"x": 1697.0, "y": 1939.0}}, "position": {"x": 1692.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7872, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112600, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1929.0}, "se": {"x": 1701.0, "y": 1939.0}, "sw": {"x": 1711.0, "y": 1929.0}, "nw": {"x": 1711.0, "y": 1939.0}}, "position": {"x": 1706.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7959, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112601, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1929.0}, "se": {"x": 1715.0, "y": 1939.0}, "sw": {"x": 1725.0, "y": 1929.0}, "nw": {"x": 1725.0, "y": 1939.0}}, "position": {"x": 1720.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7970, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112602, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1929.0}, "se": {"x": 1729.0, "y": 1939.0}, "sw": {"x": 1739.0, "y": 1929.0}, "nw": {"x": 1739.0, "y": 1939.0}}, "position": {"x": 1734.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7981, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112603, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1929.0}, "se": {"x": 1743.0, "y": 1939.0}, "sw": {"x": 1753.0, "y": 1929.0}, "nw": {"x": 1753.0, "y": 1939.0}}, "position": {"x": 1748.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7991, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112604, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1929.0}, "se": {"x": 1757.0, "y": 1939.0}, "sw": {"x": 1767.0, "y": 1929.0}, "nw": {"x": 1767.0, "y": 1939.0}}, "position": {"x": 1762.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8000, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112605, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1929.0}, "se": {"x": 1785.0, "y": 1939.0}, "sw": {"x": 1795.0, "y": 1929.0}, "nw": {"x": 1795.0, "y": 1939.0}}, "position": {"x": 1790.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8007, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "7:7": [{"logicalSeatId": 1537112524, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1887.0}, "se": {"x": 1799.0, "y": 1897.0}, "sw": {"x": 1809.0, "y": 1887.0}, "nw": {"x": 1809.0, "y": 1897.0}}, "position": {"x": 1804.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8018, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112550, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1901.0}, "se": {"x": 1799.0, "y": 1911.0}, "sw": {"x": 1809.0, "y": 1901.0}, "nw": {"x": 1809.0, "y": 1911.0}}, "position": {"x": 1804.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8017, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112577, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1915.0}, "se": {"x": 1799.0, "y": 1925.0}, "sw": {"x": 1809.0, "y": 1915.0}, "nw": {"x": 1809.0, "y": 1925.0}}, "position": {"x": 1804.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8016, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112578, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1813.0, "y": 1915.0}, "se": {"x": 1813.0, "y": 1925.0}, "sw": {"x": 1823.0, "y": 1915.0}, "nw": {"x": 1823.0, "y": 1925.0}}, "position": {"x": 1818.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158110, "gate": "", "blockId": null, "orderNum": 8023, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112606, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1929.0}, "se": {"x": 1799.0, "y": 1939.0}, "sw": {"x": 1809.0, "y": 1929.0}, "nw": {"x": 1809.0, "y": 1939.0}}, "position": {"x": 1804.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8015, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112607, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1813.0, "y": 1929.0}, "se": {"x": 1813.0, "y": 1939.0}, "sw": {"x": 1823.0, "y": 1929.0}, "nw": {"x": 1823.0, "y": 1939.0}}, "position": {"x": 1818.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158110, "gate": "", "blockId": null, "orderNum": 8022, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537112608, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1827.0, "y": 1929.0}, "se": {"x": 1827.0, "y": 1939.0}, "sw": {"x": 1837.0, "y": 1929.0}, "nw": {"x": 1837.0, "y": 1939.0}}, "position": {"x": 1832.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158111, "gate": "", "blockId": null, "orderNum": 8027, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}]} \ No newline at end of file diff --git a/data/able_d2.json b/data/able_d2.json new file mode 100644 index 0000000..f4fa5c6 --- /dev/null +++ b/data/able_d2.json @@ -0,0 +1 @@ +{"3:2": [{"logicalSeatId": 1537122973, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 734.0}, "se": {"x": 896.0, "y": 744.0}, "sw": {"x": 906.0, "y": 734.0}, "nw": {"x": 906.0, "y": 744.0}}, "position": {"x": 901.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122974, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 734.0}, "se": {"x": 910.0, "y": 744.0}, "sw": {"x": 920.0, "y": 734.0}, "nw": {"x": 920.0, "y": 744.0}}, "position": {"x": 915.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122975, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 734.0}, "se": {"x": 924.0, "y": 744.0}, "sw": {"x": 934.0, "y": 734.0}, "nw": {"x": 934.0, "y": 744.0}}, "position": {"x": 929.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122976, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 734.0}, "se": {"x": 938.0, "y": 744.0}, "sw": {"x": 948.0, "y": 734.0}, "nw": {"x": 948.0, "y": 744.0}}, "position": {"x": 943.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122977, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 748.0}, "se": {"x": 868.0, "y": 758.0}, "sw": {"x": 878.0, "y": 748.0}, "nw": {"x": 878.0, "y": 758.0}}, "position": {"x": 873.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122978, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 748.0}, "se": {"x": 882.0, "y": 758.0}, "sw": {"x": 892.0, "y": 748.0}, "nw": {"x": 892.0, "y": 758.0}}, "position": {"x": 887.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122979, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 748.0}, "se": {"x": 896.0, "y": 758.0}, "sw": {"x": 906.0, "y": 748.0}, "nw": {"x": 906.0, "y": 758.0}}, "position": {"x": 901.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122980, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 748.0}, "se": {"x": 910.0, "y": 758.0}, "sw": {"x": 920.0, "y": 748.0}, "nw": {"x": 920.0, "y": 758.0}}, "position": {"x": 915.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122981, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 748.0}, "se": {"x": 924.0, "y": 758.0}, "sw": {"x": 934.0, "y": 748.0}, "nw": {"x": 934.0, "y": 758.0}}, "position": {"x": 929.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122982, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 748.0}, "se": {"x": 938.0, "y": 758.0}, "sw": {"x": 948.0, "y": 748.0}, "nw": {"x": 948.0, "y": 758.0}}, "position": {"x": 943.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122983, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 762.0}, "se": {"x": 840.0, "y": 772.0}, "sw": {"x": 850.0, "y": 762.0}, "nw": {"x": 850.0, "y": 772.0}}, "position": {"x": 845.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122984, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 762.0}, "se": {"x": 854.0, "y": 772.0}, "sw": {"x": 864.0, "y": 762.0}, "nw": {"x": 864.0, "y": 772.0}}, "position": {"x": 859.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122985, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 762.0}, "se": {"x": 868.0, "y": 772.0}, "sw": {"x": 878.0, "y": 762.0}, "nw": {"x": 878.0, "y": 772.0}}, "position": {"x": 873.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122986, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 762.0}, "se": {"x": 882.0, "y": 772.0}, "sw": {"x": 892.0, "y": 762.0}, "nw": {"x": 892.0, "y": 772.0}}, "position": {"x": 887.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122987, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 762.0}, "se": {"x": 896.0, "y": 772.0}, "sw": {"x": 906.0, "y": 762.0}, "nw": {"x": 906.0, "y": 772.0}}, "position": {"x": 901.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122988, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 762.0}, "se": {"x": 910.0, "y": 772.0}, "sw": {"x": 920.0, "y": 762.0}, "nw": {"x": 920.0, "y": 772.0}}, "position": {"x": 915.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122989, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 762.0}, "se": {"x": 924.0, "y": 772.0}, "sw": {"x": 934.0, "y": 762.0}, "nw": {"x": 934.0, "y": 772.0}}, "position": {"x": 929.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122990, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 762.0}, "se": {"x": 938.0, "y": 772.0}, "sw": {"x": 948.0, "y": 762.0}, "nw": {"x": 948.0, "y": 772.0}}, "position": {"x": 943.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "2:3": [{"logicalSeatId": 1537122310, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 813.0}, "se": {"x": 604.0, "y": 813.0}, "sw": {"x": 614.0, "y": 823.0}, "nw": {"x": 604.0, "y": 823.0}}, "position": {"x": 609.0, "y": 818.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1435, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122311, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 827.0}, "se": {"x": 604.0, "y": 827.0}, "sw": {"x": 614.0, "y": 837.0}, "nw": {"x": 604.0, "y": 837.0}}, "position": {"x": 609.0, "y": 832.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1434, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122312, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 841.0}, "se": {"x": 604.0, "y": 841.0}, "sw": {"x": 614.0, "y": 851.0}, "nw": {"x": 604.0, "y": 851.0}}, "position": {"x": 609.0, "y": 846.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1433, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122313, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 855.0}, "se": {"x": 604.0, "y": 855.0}, "sw": {"x": 614.0, "y": 865.0}, "nw": {"x": 604.0, "y": 865.0}}, "position": {"x": 609.0, "y": 860.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1432, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122314, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 869.0}, "se": {"x": 604.0, "y": 869.0}, "sw": {"x": 614.0, "y": 879.0}, "nw": {"x": 604.0, "y": 879.0}}, "position": {"x": 609.0, "y": 874.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1431, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122315, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 883.0}, "se": {"x": 604.0, "y": 883.0}, "sw": {"x": 614.0, "y": 893.0}, "nw": {"x": 604.0, "y": 893.0}}, "position": {"x": 609.0, "y": 888.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1430, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122316, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 897.0}, "se": {"x": 604.0, "y": 897.0}, "sw": {"x": 614.0, "y": 907.0}, "nw": {"x": 604.0, "y": 907.0}}, "position": {"x": 609.0, "y": 902.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1429, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122317, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 911.0}, "se": {"x": 604.0, "y": 911.0}, "sw": {"x": 614.0, "y": 921.0}, "nw": {"x": 604.0, "y": 921.0}}, "position": {"x": 609.0, "y": 916.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1428, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122318, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 925.0}, "se": {"x": 604.0, "y": 925.0}, "sw": {"x": 614.0, "y": 935.0}, "nw": {"x": 604.0, "y": 935.0}}, "position": {"x": 609.0, "y": 930.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1427, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122319, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 939.0}, "se": {"x": 604.0, "y": 939.0}, "sw": {"x": 614.0, "y": 949.0}, "nw": {"x": 604.0, "y": 949.0}}, "position": {"x": 609.0, "y": 944.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1426, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122320, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 953.0}, "se": {"x": 604.0, "y": 953.0}, "sw": {"x": 614.0, "y": 963.0}, "nw": {"x": 604.0, "y": 963.0}}, "position": {"x": 609.0, "y": 958.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1425, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122321, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 967.0}, "se": {"x": 604.0, "y": 967.0}, "sw": {"x": 614.0, "y": 977.0}, "nw": {"x": 604.0, "y": 977.0}}, "position": {"x": 609.0, "y": 972.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1424, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122322, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 981.0}, "se": {"x": 604.0, "y": 981.0}, "sw": {"x": 614.0, "y": 991.0}, "nw": {"x": 604.0, "y": 991.0}}, "position": {"x": 609.0, "y": 986.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1423, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122323, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 995.0}, "se": {"x": 604.0, "y": 995.0}, "sw": {"x": 614.0, "y": 1005.0}, "nw": {"x": 604.0, "y": 1005.0}}, "position": {"x": 609.0, "y": 1000.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1422, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122324, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1009.0}, "se": {"x": 604.0, "y": 1009.0}, "sw": {"x": 614.0, "y": 1019.0}, "nw": {"x": 604.0, "y": 1019.0}}, "position": {"x": 609.0, "y": 1014.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1421, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122332, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 813.0}, "se": {"x": 590.0, "y": 813.0}, "sw": {"x": 600.0, "y": 823.0}, "nw": {"x": 590.0, "y": 823.0}}, "position": {"x": 595.0, "y": 818.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1328, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122333, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 827.0}, "se": {"x": 590.0, "y": 827.0}, "sw": {"x": 600.0, "y": 837.0}, "nw": {"x": 590.0, "y": 837.0}}, "position": {"x": 595.0, "y": 832.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1327, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122334, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 841.0}, "se": {"x": 590.0, "y": 841.0}, "sw": {"x": 600.0, "y": 851.0}, "nw": {"x": 590.0, "y": 851.0}}, "position": {"x": 595.0, "y": 846.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1326, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122335, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 855.0}, "se": {"x": 590.0, "y": 855.0}, "sw": {"x": 600.0, "y": 865.0}, "nw": {"x": 590.0, "y": 865.0}}, "position": {"x": 595.0, "y": 860.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1325, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122336, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 869.0}, "se": {"x": 590.0, "y": 869.0}, "sw": {"x": 600.0, "y": 879.0}, "nw": {"x": 590.0, "y": 879.0}}, "position": {"x": 595.0, "y": 874.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1324, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122337, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 883.0}, "se": {"x": 590.0, "y": 883.0}, "sw": {"x": 600.0, "y": 893.0}, "nw": {"x": 590.0, "y": 893.0}}, "position": {"x": 595.0, "y": 888.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1323, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122338, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 897.0}, "se": {"x": 590.0, "y": 897.0}, "sw": {"x": 600.0, "y": 907.0}, "nw": {"x": 590.0, "y": 907.0}}, "position": {"x": 595.0, "y": 902.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1322, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122339, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 911.0}, "se": {"x": 590.0, "y": 911.0}, "sw": {"x": 600.0, "y": 921.0}, "nw": {"x": 590.0, "y": 921.0}}, "position": {"x": 595.0, "y": 916.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1321, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122340, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 925.0}, "se": {"x": 590.0, "y": 925.0}, "sw": {"x": 600.0, "y": 935.0}, "nw": {"x": 590.0, "y": 935.0}}, "position": {"x": 595.0, "y": 930.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1320, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122341, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 939.0}, "se": {"x": 590.0, "y": 939.0}, "sw": {"x": 600.0, "y": 949.0}, "nw": {"x": 590.0, "y": 949.0}}, "position": {"x": 595.0, "y": 944.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1319, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122342, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 953.0}, "se": {"x": 590.0, "y": 953.0}, "sw": {"x": 600.0, "y": 963.0}, "nw": {"x": 590.0, "y": 963.0}}, "position": {"x": 595.0, "y": 958.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1318, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122343, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 967.0}, "se": {"x": 590.0, "y": 967.0}, "sw": {"x": 600.0, "y": 977.0}, "nw": {"x": 590.0, "y": 977.0}}, "position": {"x": 595.0, "y": 972.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1317, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122344, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 981.0}, "se": {"x": 590.0, "y": 981.0}, "sw": {"x": 600.0, "y": 991.0}, "nw": {"x": 590.0, "y": 991.0}}, "position": {"x": 595.0, "y": 986.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1316, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122345, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 995.0}, "se": {"x": 590.0, "y": 995.0}, "sw": {"x": 600.0, "y": 1005.0}, "nw": {"x": 590.0, "y": 1005.0}}, "position": {"x": 595.0, "y": 1000.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1315, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122346, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1009.0}, "se": {"x": 590.0, "y": 1009.0}, "sw": {"x": 600.0, "y": 1019.0}, "nw": {"x": 590.0, "y": 1019.0}}, "position": {"x": 595.0, "y": 1014.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1314, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}], "3:3": [{"logicalSeatId": 1537122991, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 776.0}, "se": {"x": 812.0, "y": 786.0}, "sw": {"x": 822.0, "y": 776.0}, "nw": {"x": 822.0, "y": 786.0}}, "position": {"x": 817.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122992, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 776.0}, "se": {"x": 826.0, "y": 786.0}, "sw": {"x": 836.0, "y": 776.0}, "nw": {"x": 836.0, "y": 786.0}}, "position": {"x": 831.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122993, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 776.0}, "se": {"x": 840.0, "y": 786.0}, "sw": {"x": 850.0, "y": 776.0}, "nw": {"x": 850.0, "y": 786.0}}, "position": {"x": 845.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122994, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 776.0}, "se": {"x": 854.0, "y": 786.0}, "sw": {"x": 864.0, "y": 776.0}, "nw": {"x": 864.0, "y": 786.0}}, "position": {"x": 859.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122995, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 776.0}, "se": {"x": 868.0, "y": 786.0}, "sw": {"x": 878.0, "y": 776.0}, "nw": {"x": 878.0, "y": 786.0}}, "position": {"x": 873.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122996, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 776.0}, "se": {"x": 882.0, "y": 786.0}, "sw": {"x": 892.0, "y": 776.0}, "nw": {"x": 892.0, "y": 786.0}}, "position": {"x": 887.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122997, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 776.0}, "se": {"x": 896.0, "y": 786.0}, "sw": {"x": 906.0, "y": 776.0}, "nw": {"x": 906.0, "y": 786.0}}, "position": {"x": 901.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122998, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 776.0}, "se": {"x": 910.0, "y": 786.0}, "sw": {"x": 920.0, "y": 776.0}, "nw": {"x": 920.0, "y": 786.0}}, "position": {"x": 915.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537122999, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 776.0}, "se": {"x": 924.0, "y": 786.0}, "sw": {"x": 934.0, "y": 776.0}, "nw": {"x": 934.0, "y": 786.0}}, "position": {"x": 929.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123000, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 776.0}, "se": {"x": 938.0, "y": 786.0}, "sw": {"x": 948.0, "y": 776.0}, "nw": {"x": 948.0, "y": 786.0}}, "position": {"x": 943.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123001, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 790.0}, "se": {"x": 812.0, "y": 800.0}, "sw": {"x": 822.0, "y": 790.0}, "nw": {"x": 822.0, "y": 800.0}}, "position": {"x": 817.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123002, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 790.0}, "se": {"x": 826.0, "y": 800.0}, "sw": {"x": 836.0, "y": 790.0}, "nw": {"x": 836.0, "y": 800.0}}, "position": {"x": 831.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123003, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 790.0}, "se": {"x": 840.0, "y": 800.0}, "sw": {"x": 850.0, "y": 790.0}, "nw": {"x": 850.0, "y": 800.0}}, "position": {"x": 845.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123004, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 790.0}, "se": {"x": 854.0, "y": 800.0}, "sw": {"x": 864.0, "y": 790.0}, "nw": {"x": 864.0, "y": 800.0}}, "position": {"x": 859.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123005, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 790.0}, "se": {"x": 868.0, "y": 800.0}, "sw": {"x": 878.0, "y": 790.0}, "nw": {"x": 878.0, "y": 800.0}}, "position": {"x": 873.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123006, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 790.0}, "se": {"x": 882.0, "y": 800.0}, "sw": {"x": 892.0, "y": 790.0}, "nw": {"x": 892.0, "y": 800.0}}, "position": {"x": 887.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123007, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 790.0}, "se": {"x": 896.0, "y": 800.0}, "sw": {"x": 906.0, "y": 790.0}, "nw": {"x": 906.0, "y": 800.0}}, "position": {"x": 901.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123008, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 790.0}, "se": {"x": 910.0, "y": 800.0}, "sw": {"x": 920.0, "y": 790.0}, "nw": {"x": 920.0, "y": 800.0}}, "position": {"x": 915.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123009, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 790.0}, "se": {"x": 924.0, "y": 800.0}, "sw": {"x": 934.0, "y": 790.0}, "nw": {"x": 934.0, "y": 800.0}}, "position": {"x": 929.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123010, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 790.0}, "se": {"x": 938.0, "y": 800.0}, "sw": {"x": 948.0, "y": 790.0}, "nw": {"x": 948.0, "y": 800.0}}, "position": {"x": 943.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123011, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 804.0}, "se": {"x": 812.0, "y": 814.0}, "sw": {"x": 822.0, "y": 804.0}, "nw": {"x": 822.0, "y": 814.0}}, "position": {"x": 817.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123012, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 804.0}, "se": {"x": 826.0, "y": 814.0}, "sw": {"x": 836.0, "y": 804.0}, "nw": {"x": 836.0, "y": 814.0}}, "position": {"x": 831.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123013, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 804.0}, "se": {"x": 840.0, "y": 814.0}, "sw": {"x": 850.0, "y": 804.0}, "nw": {"x": 850.0, "y": 814.0}}, "position": {"x": 845.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123014, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 804.0}, "se": {"x": 854.0, "y": 814.0}, "sw": {"x": 864.0, "y": 804.0}, "nw": {"x": 864.0, "y": 814.0}}, "position": {"x": 859.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123015, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 804.0}, "se": {"x": 868.0, "y": 814.0}, "sw": {"x": 878.0, "y": 804.0}, "nw": {"x": 878.0, "y": 814.0}}, "position": {"x": 873.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123016, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 804.0}, "se": {"x": 882.0, "y": 814.0}, "sw": {"x": 892.0, "y": 804.0}, "nw": {"x": 892.0, "y": 814.0}}, "position": {"x": 887.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123017, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 804.0}, "se": {"x": 896.0, "y": 814.0}, "sw": {"x": 906.0, "y": 804.0}, "nw": {"x": 906.0, "y": 814.0}}, "position": {"x": 901.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123018, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 804.0}, "se": {"x": 910.0, "y": 814.0}, "sw": {"x": 920.0, "y": 804.0}, "nw": {"x": 920.0, "y": 814.0}}, "position": {"x": 915.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123019, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 804.0}, "se": {"x": 924.0, "y": 814.0}, "sw": {"x": 934.0, "y": 804.0}, "nw": {"x": 934.0, "y": 814.0}}, "position": {"x": 929.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123020, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 804.0}, "se": {"x": 938.0, "y": 814.0}, "sw": {"x": 948.0, "y": 804.0}, "nw": {"x": 948.0, "y": 814.0}}, "position": {"x": 943.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123021, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 818.0}, "se": {"x": 812.0, "y": 828.0}, "sw": {"x": 822.0, "y": 818.0}, "nw": {"x": 822.0, "y": 828.0}}, "position": {"x": 817.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123022, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 818.0}, "se": {"x": 826.0, "y": 828.0}, "sw": {"x": 836.0, "y": 818.0}, "nw": {"x": 836.0, "y": 828.0}}, "position": {"x": 831.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123023, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 818.0}, "se": {"x": 840.0, "y": 828.0}, "sw": {"x": 850.0, "y": 818.0}, "nw": {"x": 850.0, "y": 828.0}}, "position": {"x": 845.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123024, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 818.0}, "se": {"x": 854.0, "y": 828.0}, "sw": {"x": 864.0, "y": 818.0}, "nw": {"x": 864.0, "y": 828.0}}, "position": {"x": 859.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123025, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 818.0}, "se": {"x": 868.0, "y": 828.0}, "sw": {"x": 878.0, "y": 818.0}, "nw": {"x": 878.0, "y": 828.0}}, "position": {"x": 873.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123026, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 818.0}, "se": {"x": 882.0, "y": 828.0}, "sw": {"x": 892.0, "y": 818.0}, "nw": {"x": 892.0, "y": 828.0}}, "position": {"x": 887.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123027, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 818.0}, "se": {"x": 896.0, "y": 828.0}, "sw": {"x": 906.0, "y": 818.0}, "nw": {"x": 906.0, "y": 828.0}}, "position": {"x": 901.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123028, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 818.0}, "se": {"x": 910.0, "y": 828.0}, "sw": {"x": 920.0, "y": 818.0}, "nw": {"x": 920.0, "y": 828.0}}, "position": {"x": 915.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123029, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 818.0}, "se": {"x": 924.0, "y": 828.0}, "sw": {"x": 934.0, "y": 818.0}, "nw": {"x": 934.0, "y": 828.0}}, "position": {"x": 929.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123030, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 818.0}, "se": {"x": 938.0, "y": 828.0}, "sw": {"x": 948.0, "y": 818.0}, "nw": {"x": 948.0, "y": 828.0}}, "position": {"x": 943.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123031, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 832.0}, "se": {"x": 812.0, "y": 842.0}, "sw": {"x": 822.0, "y": 832.0}, "nw": {"x": 822.0, "y": 842.0}}, "position": {"x": 817.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123032, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 832.0}, "se": {"x": 826.0, "y": 842.0}, "sw": {"x": 836.0, "y": 832.0}, "nw": {"x": 836.0, "y": 842.0}}, "position": {"x": 831.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123033, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 832.0}, "se": {"x": 840.0, "y": 842.0}, "sw": {"x": 850.0, "y": 832.0}, "nw": {"x": 850.0, "y": 842.0}}, "position": {"x": 845.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123034, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 832.0}, "se": {"x": 854.0, "y": 842.0}, "sw": {"x": 864.0, "y": 832.0}, "nw": {"x": 864.0, "y": 842.0}}, "position": {"x": 859.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123035, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 832.0}, "se": {"x": 868.0, "y": 842.0}, "sw": {"x": 878.0, "y": 832.0}, "nw": {"x": 878.0, "y": 842.0}}, "position": {"x": 873.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123036, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 832.0}, "se": {"x": 882.0, "y": 842.0}, "sw": {"x": 892.0, "y": 832.0}, "nw": {"x": 892.0, "y": 842.0}}, "position": {"x": 887.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123037, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 832.0}, "se": {"x": 896.0, "y": 842.0}, "sw": {"x": 906.0, "y": 832.0}, "nw": {"x": 906.0, "y": 842.0}}, "position": {"x": 901.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123038, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 832.0}, "se": {"x": 910.0, "y": 842.0}, "sw": {"x": 920.0, "y": 832.0}, "nw": {"x": 920.0, "y": 842.0}}, "position": {"x": 915.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123039, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 832.0}, "se": {"x": 924.0, "y": 842.0}, "sw": {"x": 934.0, "y": 832.0}, "nw": {"x": 934.0, "y": 842.0}}, "position": {"x": 929.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123040, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 832.0}, "se": {"x": 938.0, "y": 842.0}, "sw": {"x": 948.0, "y": 832.0}, "nw": {"x": 948.0, "y": 842.0}}, "position": {"x": 943.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123041, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 873.0}, "se": {"x": 812.0, "y": 883.0}, "sw": {"x": 822.0, "y": 873.0}, "nw": {"x": 822.0, "y": 883.0}}, "position": {"x": 817.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123042, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 873.0}, "se": {"x": 826.0, "y": 883.0}, "sw": {"x": 836.0, "y": 873.0}, "nw": {"x": 836.0, "y": 883.0}}, "position": {"x": 831.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123043, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 873.0}, "se": {"x": 840.0, "y": 883.0}, "sw": {"x": 850.0, "y": 873.0}, "nw": {"x": 850.0, "y": 883.0}}, "position": {"x": 845.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123044, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 873.0}, "se": {"x": 854.0, "y": 883.0}, "sw": {"x": 864.0, "y": 873.0}, "nw": {"x": 864.0, "y": 883.0}}, "position": {"x": 859.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123045, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 873.0}, "se": {"x": 868.0, "y": 883.0}, "sw": {"x": 878.0, "y": 873.0}, "nw": {"x": 878.0, "y": 883.0}}, "position": {"x": 873.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123046, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 873.0}, "se": {"x": 882.0, "y": 883.0}, "sw": {"x": 892.0, "y": 873.0}, "nw": {"x": 892.0, "y": 883.0}}, "position": {"x": 887.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123047, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 873.0}, "se": {"x": 896.0, "y": 883.0}, "sw": {"x": 906.0, "y": 873.0}, "nw": {"x": 906.0, "y": 883.0}}, "position": {"x": 901.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123048, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 873.0}, "se": {"x": 910.0, "y": 883.0}, "sw": {"x": 920.0, "y": 873.0}, "nw": {"x": 920.0, "y": 883.0}}, "position": {"x": 915.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123049, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 873.0}, "se": {"x": 924.0, "y": 883.0}, "sw": {"x": 934.0, "y": 873.0}, "nw": {"x": 934.0, "y": 883.0}}, "position": {"x": 929.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123050, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 873.0}, "se": {"x": 938.0, "y": 883.0}, "sw": {"x": 948.0, "y": 873.0}, "nw": {"x": 948.0, "y": 883.0}}, "position": {"x": 943.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123051, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 887.0}, "se": {"x": 812.0, "y": 897.0}, "sw": {"x": 822.0, "y": 887.0}, "nw": {"x": 822.0, "y": 897.0}}, "position": {"x": 817.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123052, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 887.0}, "se": {"x": 826.0, "y": 897.0}, "sw": {"x": 836.0, "y": 887.0}, "nw": {"x": 836.0, "y": 897.0}}, "position": {"x": 831.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123053, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 887.0}, "se": {"x": 840.0, "y": 897.0}, "sw": {"x": 850.0, "y": 887.0}, "nw": {"x": 850.0, "y": 897.0}}, "position": {"x": 845.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123054, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 887.0}, "se": {"x": 854.0, "y": 897.0}, "sw": {"x": 864.0, "y": 887.0}, "nw": {"x": 864.0, "y": 897.0}}, "position": {"x": 859.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123055, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 887.0}, "se": {"x": 868.0, "y": 897.0}, "sw": {"x": 878.0, "y": 887.0}, "nw": {"x": 878.0, "y": 897.0}}, "position": {"x": 873.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123056, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 887.0}, "se": {"x": 882.0, "y": 897.0}, "sw": {"x": 892.0, "y": 887.0}, "nw": {"x": 892.0, "y": 897.0}}, "position": {"x": 887.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123057, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 887.0}, "se": {"x": 896.0, "y": 897.0}, "sw": {"x": 906.0, "y": 887.0}, "nw": {"x": 906.0, "y": 897.0}}, "position": {"x": 901.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123058, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 887.0}, "se": {"x": 910.0, "y": 897.0}, "sw": {"x": 920.0, "y": 887.0}, "nw": {"x": 920.0, "y": 897.0}}, "position": {"x": 915.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123059, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 887.0}, "se": {"x": 924.0, "y": 897.0}, "sw": {"x": 934.0, "y": 887.0}, "nw": {"x": 934.0, "y": 897.0}}, "position": {"x": 929.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123060, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 887.0}, "se": {"x": 938.0, "y": 897.0}, "sw": {"x": 948.0, "y": 887.0}, "nw": {"x": 948.0, "y": 897.0}}, "position": {"x": 943.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123061, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 901.0}, "se": {"x": 812.0, "y": 911.0}, "sw": {"x": 822.0, "y": 901.0}, "nw": {"x": 822.0, "y": 911.0}}, "position": {"x": 817.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123062, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 901.0}, "se": {"x": 826.0, "y": 911.0}, "sw": {"x": 836.0, "y": 901.0}, "nw": {"x": 836.0, "y": 911.0}}, "position": {"x": 831.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123063, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 901.0}, "se": {"x": 840.0, "y": 911.0}, "sw": {"x": 850.0, "y": 901.0}, "nw": {"x": 850.0, "y": 911.0}}, "position": {"x": 845.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123064, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 901.0}, "se": {"x": 854.0, "y": 911.0}, "sw": {"x": 864.0, "y": 901.0}, "nw": {"x": 864.0, "y": 911.0}}, "position": {"x": 859.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123065, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 901.0}, "se": {"x": 868.0, "y": 911.0}, "sw": {"x": 878.0, "y": 901.0}, "nw": {"x": 878.0, "y": 911.0}}, "position": {"x": 873.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123066, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 901.0}, "se": {"x": 882.0, "y": 911.0}, "sw": {"x": 892.0, "y": 901.0}, "nw": {"x": 892.0, "y": 911.0}}, "position": {"x": 887.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123067, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 901.0}, "se": {"x": 896.0, "y": 911.0}, "sw": {"x": 906.0, "y": 901.0}, "nw": {"x": 906.0, "y": 911.0}}, "position": {"x": 901.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123068, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 901.0}, "se": {"x": 910.0, "y": 911.0}, "sw": {"x": 920.0, "y": 901.0}, "nw": {"x": 920.0, "y": 911.0}}, "position": {"x": 915.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123069, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 901.0}, "se": {"x": 924.0, "y": 911.0}, "sw": {"x": 934.0, "y": 901.0}, "nw": {"x": 934.0, "y": 911.0}}, "position": {"x": 929.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123070, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 901.0}, "se": {"x": 938.0, "y": 911.0}, "sw": {"x": 948.0, "y": 901.0}, "nw": {"x": 948.0, "y": 911.0}}, "position": {"x": 943.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123071, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 915.0}, "se": {"x": 812.0, "y": 925.0}, "sw": {"x": 822.0, "y": 915.0}, "nw": {"x": 822.0, "y": 925.0}}, "position": {"x": 817.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123072, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 915.0}, "se": {"x": 826.0, "y": 925.0}, "sw": {"x": 836.0, "y": 915.0}, "nw": {"x": 836.0, "y": 925.0}}, "position": {"x": 831.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123073, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 915.0}, "se": {"x": 840.0, "y": 925.0}, "sw": {"x": 850.0, "y": 915.0}, "nw": {"x": 850.0, "y": 925.0}}, "position": {"x": 845.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123074, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 915.0}, "se": {"x": 854.0, "y": 925.0}, "sw": {"x": 864.0, "y": 915.0}, "nw": {"x": 864.0, "y": 925.0}}, "position": {"x": 859.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123075, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 915.0}, "se": {"x": 868.0, "y": 925.0}, "sw": {"x": 878.0, "y": 915.0}, "nw": {"x": 878.0, "y": 925.0}}, "position": {"x": 873.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123076, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 915.0}, "se": {"x": 882.0, "y": 925.0}, "sw": {"x": 892.0, "y": 915.0}, "nw": {"x": 892.0, "y": 925.0}}, "position": {"x": 887.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123077, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 915.0}, "se": {"x": 896.0, "y": 925.0}, "sw": {"x": 906.0, "y": 915.0}, "nw": {"x": 906.0, "y": 925.0}}, "position": {"x": 901.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123078, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 915.0}, "se": {"x": 910.0, "y": 925.0}, "sw": {"x": 920.0, "y": 915.0}, "nw": {"x": 920.0, "y": 925.0}}, "position": {"x": 915.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123079, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 915.0}, "se": {"x": 924.0, "y": 925.0}, "sw": {"x": 934.0, "y": 915.0}, "nw": {"x": 934.0, "y": 925.0}}, "position": {"x": 929.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123080, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 915.0}, "se": {"x": 938.0, "y": 925.0}, "sw": {"x": 948.0, "y": 915.0}, "nw": {"x": 948.0, "y": 925.0}}, "position": {"x": 943.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123081, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 929.0}, "se": {"x": 812.0, "y": 939.0}, "sw": {"x": 822.0, "y": 929.0}, "nw": {"x": 822.0, "y": 939.0}}, "position": {"x": 817.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123082, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 929.0}, "se": {"x": 826.0, "y": 939.0}, "sw": {"x": 836.0, "y": 929.0}, "nw": {"x": 836.0, "y": 939.0}}, "position": {"x": 831.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123083, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 929.0}, "se": {"x": 840.0, "y": 939.0}, "sw": {"x": 850.0, "y": 929.0}, "nw": {"x": 850.0, "y": 939.0}}, "position": {"x": 845.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123084, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 929.0}, "se": {"x": 854.0, "y": 939.0}, "sw": {"x": 864.0, "y": 929.0}, "nw": {"x": 864.0, "y": 939.0}}, "position": {"x": 859.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123085, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 929.0}, "se": {"x": 868.0, "y": 939.0}, "sw": {"x": 878.0, "y": 929.0}, "nw": {"x": 878.0, "y": 939.0}}, "position": {"x": 873.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123086, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 929.0}, "se": {"x": 882.0, "y": 939.0}, "sw": {"x": 892.0, "y": 929.0}, "nw": {"x": 892.0, "y": 939.0}}, "position": {"x": 887.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123087, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 929.0}, "se": {"x": 896.0, "y": 939.0}, "sw": {"x": 906.0, "y": 929.0}, "nw": {"x": 906.0, "y": 939.0}}, "position": {"x": 901.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123088, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 929.0}, "se": {"x": 910.0, "y": 939.0}, "sw": {"x": 920.0, "y": 929.0}, "nw": {"x": 920.0, "y": 939.0}}, "position": {"x": 915.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123089, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 929.0}, "se": {"x": 924.0, "y": 939.0}, "sw": {"x": 934.0, "y": 929.0}, "nw": {"x": 934.0, "y": 939.0}}, "position": {"x": 929.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123090, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 929.0}, "se": {"x": 938.0, "y": 939.0}, "sw": {"x": 948.0, "y": 929.0}, "nw": {"x": 948.0, "y": 939.0}}, "position": {"x": 943.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123091, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 943.0}, "se": {"x": 812.0, "y": 953.0}, "sw": {"x": 822.0, "y": 943.0}, "nw": {"x": 822.0, "y": 953.0}}, "position": {"x": 817.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123092, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 943.0}, "se": {"x": 826.0, "y": 953.0}, "sw": {"x": 836.0, "y": 943.0}, "nw": {"x": 836.0, "y": 953.0}}, "position": {"x": 831.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123093, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 943.0}, "se": {"x": 840.0, "y": 953.0}, "sw": {"x": 850.0, "y": 943.0}, "nw": {"x": 850.0, "y": 953.0}}, "position": {"x": 845.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123094, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 943.0}, "se": {"x": 854.0, "y": 953.0}, "sw": {"x": 864.0, "y": 943.0}, "nw": {"x": 864.0, "y": 953.0}}, "position": {"x": 859.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123095, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 943.0}, "se": {"x": 868.0, "y": 953.0}, "sw": {"x": 878.0, "y": 943.0}, "nw": {"x": 878.0, "y": 953.0}}, "position": {"x": 873.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123096, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 943.0}, "se": {"x": 882.0, "y": 953.0}, "sw": {"x": 892.0, "y": 943.0}, "nw": {"x": 892.0, "y": 953.0}}, "position": {"x": 887.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123097, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 943.0}, "se": {"x": 896.0, "y": 953.0}, "sw": {"x": 906.0, "y": 943.0}, "nw": {"x": 906.0, "y": 953.0}}, "position": {"x": 901.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123098, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 943.0}, "se": {"x": 910.0, "y": 953.0}, "sw": {"x": 920.0, "y": 943.0}, "nw": {"x": 920.0, "y": 953.0}}, "position": {"x": 915.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123099, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 943.0}, "se": {"x": 924.0, "y": 953.0}, "sw": {"x": 934.0, "y": 943.0}, "nw": {"x": 934.0, "y": 953.0}}, "position": {"x": 929.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123100, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 943.0}, "se": {"x": 938.0, "y": 953.0}, "sw": {"x": 948.0, "y": 943.0}, "nw": {"x": 948.0, "y": 953.0}}, "position": {"x": 943.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123101, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 957.0}, "se": {"x": 812.0, "y": 967.0}, "sw": {"x": 822.0, "y": 957.0}, "nw": {"x": 822.0, "y": 967.0}}, "position": {"x": 817.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123102, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 957.0}, "se": {"x": 826.0, "y": 967.0}, "sw": {"x": 836.0, "y": 957.0}, "nw": {"x": 836.0, "y": 967.0}}, "position": {"x": 831.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123103, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 957.0}, "se": {"x": 840.0, "y": 967.0}, "sw": {"x": 850.0, "y": 957.0}, "nw": {"x": 850.0, "y": 967.0}}, "position": {"x": 845.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123104, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 957.0}, "se": {"x": 854.0, "y": 967.0}, "sw": {"x": 864.0, "y": 957.0}, "nw": {"x": 864.0, "y": 967.0}}, "position": {"x": 859.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123105, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 957.0}, "se": {"x": 868.0, "y": 967.0}, "sw": {"x": 878.0, "y": 957.0}, "nw": {"x": 878.0, "y": 967.0}}, "position": {"x": 873.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123106, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 957.0}, "se": {"x": 882.0, "y": 967.0}, "sw": {"x": 892.0, "y": 957.0}, "nw": {"x": 892.0, "y": 967.0}}, "position": {"x": 887.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123107, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 957.0}, "se": {"x": 896.0, "y": 967.0}, "sw": {"x": 906.0, "y": 957.0}, "nw": {"x": 906.0, "y": 967.0}}, "position": {"x": 901.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123108, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 957.0}, "se": {"x": 910.0, "y": 967.0}, "sw": {"x": 920.0, "y": 957.0}, "nw": {"x": 920.0, "y": 967.0}}, "position": {"x": 915.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123109, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 957.0}, "se": {"x": 924.0, "y": 967.0}, "sw": {"x": 934.0, "y": 957.0}, "nw": {"x": 934.0, "y": 967.0}}, "position": {"x": 929.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123110, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 957.0}, "se": {"x": 938.0, "y": 967.0}, "sw": {"x": 948.0, "y": 957.0}, "nw": {"x": 948.0, "y": 967.0}}, "position": {"x": 943.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123111, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 971.0}, "se": {"x": 812.0, "y": 981.0}, "sw": {"x": 822.0, "y": 971.0}, "nw": {"x": 822.0, "y": 981.0}}, "position": {"x": 817.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123112, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 971.0}, "se": {"x": 826.0, "y": 981.0}, "sw": {"x": 836.0, "y": 971.0}, "nw": {"x": 836.0, "y": 981.0}}, "position": {"x": 831.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123113, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 971.0}, "se": {"x": 840.0, "y": 981.0}, "sw": {"x": 850.0, "y": 971.0}, "nw": {"x": 850.0, "y": 981.0}}, "position": {"x": 845.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123114, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 971.0}, "se": {"x": 854.0, "y": 981.0}, "sw": {"x": 864.0, "y": 971.0}, "nw": {"x": 864.0, "y": 981.0}}, "position": {"x": 859.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123115, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 971.0}, "se": {"x": 868.0, "y": 981.0}, "sw": {"x": 878.0, "y": 971.0}, "nw": {"x": 878.0, "y": 981.0}}, "position": {"x": 873.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123116, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 971.0}, "se": {"x": 882.0, "y": 981.0}, "sw": {"x": 892.0, "y": 971.0}, "nw": {"x": 892.0, "y": 981.0}}, "position": {"x": 887.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123117, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 971.0}, "se": {"x": 896.0, "y": 981.0}, "sw": {"x": 906.0, "y": 971.0}, "nw": {"x": 906.0, "y": 981.0}}, "position": {"x": 901.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123118, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 971.0}, "se": {"x": 910.0, "y": 981.0}, "sw": {"x": 920.0, "y": 971.0}, "nw": {"x": 920.0, "y": 981.0}}, "position": {"x": 915.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123119, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 971.0}, "se": {"x": 924.0, "y": 981.0}, "sw": {"x": 934.0, "y": 971.0}, "nw": {"x": 934.0, "y": 981.0}}, "position": {"x": 929.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123120, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 971.0}, "se": {"x": 938.0, "y": 981.0}, "sw": {"x": 948.0, "y": 971.0}, "nw": {"x": 948.0, "y": 981.0}}, "position": {"x": 943.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 1\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 1\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00001\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "2:4": [{"logicalSeatId": 1537121935, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1150.0}, "se": {"x": 604.0, "y": 1150.0}, "sw": {"x": 614.0, "y": 1160.0}, "nw": {"x": 604.0, "y": 1160.0}}, "position": {"x": 609.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1413, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121936, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1164.0}, "se": {"x": 604.0, "y": 1164.0}, "sw": {"x": 614.0, "y": 1174.0}, "nw": {"x": 604.0, "y": 1174.0}}, "position": {"x": 609.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1412, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121937, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1178.0}, "se": {"x": 604.0, "y": 1178.0}, "sw": {"x": 614.0, "y": 1188.0}, "nw": {"x": 604.0, "y": 1188.0}}, "position": {"x": 609.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1411, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121938, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1192.0}, "se": {"x": 604.0, "y": 1192.0}, "sw": {"x": 614.0, "y": 1202.0}, "nw": {"x": 604.0, "y": 1202.0}}, "position": {"x": 609.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1410, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121939, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1206.0}, "se": {"x": 604.0, "y": 1206.0}, "sw": {"x": 614.0, "y": 1216.0}, "nw": {"x": 604.0, "y": 1216.0}}, "position": {"x": 609.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1409, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121940, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1220.0}, "se": {"x": 604.0, "y": 1220.0}, "sw": {"x": 614.0, "y": 1230.0}, "nw": {"x": 604.0, "y": 1230.0}}, "position": {"x": 609.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1408, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121941, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1234.0}, "se": {"x": 604.0, "y": 1234.0}, "sw": {"x": 614.0, "y": 1244.0}, "nw": {"x": 604.0, "y": 1244.0}}, "position": {"x": 609.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1407, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121942, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1248.0}, "se": {"x": 604.0, "y": 1248.0}, "sw": {"x": 614.0, "y": 1258.0}, "nw": {"x": 604.0, "y": 1258.0}}, "position": {"x": 609.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1406, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121943, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1262.0}, "se": {"x": 604.0, "y": 1262.0}, "sw": {"x": 614.0, "y": 1272.0}, "nw": {"x": 604.0, "y": 1272.0}}, "position": {"x": 609.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1405, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121956, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1150.0}, "se": {"x": 590.0, "y": 1150.0}, "sw": {"x": 600.0, "y": 1160.0}, "nw": {"x": 590.0, "y": 1160.0}}, "position": {"x": 595.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1306, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121957, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1164.0}, "se": {"x": 590.0, "y": 1164.0}, "sw": {"x": 600.0, "y": 1174.0}, "nw": {"x": 590.0, "y": 1174.0}}, "position": {"x": 595.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1305, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121958, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1178.0}, "se": {"x": 590.0, "y": 1178.0}, "sw": {"x": 600.0, "y": 1188.0}, "nw": {"x": 590.0, "y": 1188.0}}, "position": {"x": 595.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1304, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121959, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1192.0}, "se": {"x": 590.0, "y": 1192.0}, "sw": {"x": 600.0, "y": 1202.0}, "nw": {"x": 590.0, "y": 1202.0}}, "position": {"x": 595.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1303, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121960, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1206.0}, "se": {"x": 590.0, "y": 1206.0}, "sw": {"x": 600.0, "y": 1216.0}, "nw": {"x": 590.0, "y": 1216.0}}, "position": {"x": 595.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1302, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121961, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1220.0}, "se": {"x": 590.0, "y": 1220.0}, "sw": {"x": 600.0, "y": 1230.0}, "nw": {"x": 590.0, "y": 1230.0}}, "position": {"x": 595.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1301, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121962, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1234.0}, "se": {"x": 590.0, "y": 1234.0}, "sw": {"x": 600.0, "y": 1244.0}, "nw": {"x": 590.0, "y": 1244.0}}, "position": {"x": 595.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1300, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121963, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1248.0}, "se": {"x": 590.0, "y": 1248.0}, "sw": {"x": 600.0, "y": 1258.0}, "nw": {"x": 590.0, "y": 1258.0}}, "position": {"x": 595.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1299, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121964, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1262.0}, "se": {"x": 590.0, "y": 1262.0}, "sw": {"x": 600.0, "y": 1272.0}, "nw": {"x": 590.0, "y": 1272.0}}, "position": {"x": 595.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1298, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121977, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1150.0}, "se": {"x": 576.0, "y": 1150.0}, "sw": {"x": 586.0, "y": 1160.0}, "nw": {"x": 576.0, "y": 1160.0}}, "position": {"x": 581.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1219, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121978, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1164.0}, "se": {"x": 576.0, "y": 1164.0}, "sw": {"x": 586.0, "y": 1174.0}, "nw": {"x": 576.0, "y": 1174.0}}, "position": {"x": 581.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1218, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121979, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1178.0}, "se": {"x": 576.0, "y": 1178.0}, "sw": {"x": 586.0, "y": 1188.0}, "nw": {"x": 576.0, "y": 1188.0}}, "position": {"x": 581.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1217, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121980, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1192.0}, "se": {"x": 576.0, "y": 1192.0}, "sw": {"x": 586.0, "y": 1202.0}, "nw": {"x": 576.0, "y": 1202.0}}, "position": {"x": 581.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1216, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121981, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1206.0}, "se": {"x": 576.0, "y": 1206.0}, "sw": {"x": 586.0, "y": 1216.0}, "nw": {"x": 576.0, "y": 1216.0}}, "position": {"x": 581.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1215, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121982, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1220.0}, "se": {"x": 576.0, "y": 1220.0}, "sw": {"x": 586.0, "y": 1230.0}, "nw": {"x": 576.0, "y": 1230.0}}, "position": {"x": 581.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1214, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121983, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1234.0}, "se": {"x": 576.0, "y": 1234.0}, "sw": {"x": 586.0, "y": 1244.0}, "nw": {"x": 576.0, "y": 1244.0}}, "position": {"x": 581.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1213, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121984, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1248.0}, "se": {"x": 576.0, "y": 1248.0}, "sw": {"x": 586.0, "y": 1258.0}, "nw": {"x": 576.0, "y": 1258.0}}, "position": {"x": 581.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1212, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121985, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1262.0}, "se": {"x": 576.0, "y": 1262.0}, "sw": {"x": 586.0, "y": 1272.0}, "nw": {"x": 576.0, "y": 1272.0}}, "position": {"x": 581.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1211, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121998, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1150.0}, "se": {"x": 562.0, "y": 1150.0}, "sw": {"x": 572.0, "y": 1160.0}, "nw": {"x": 562.0, "y": 1160.0}}, "position": {"x": 567.0, "y": 1155.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121999, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1164.0}, "se": {"x": 562.0, "y": 1164.0}, "sw": {"x": 572.0, "y": 1174.0}, "nw": {"x": 562.0, "y": 1174.0}}, "position": {"x": 567.0, "y": 1169.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122000, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1178.0}, "se": {"x": 562.0, "y": 1178.0}, "sw": {"x": 572.0, "y": 1188.0}, "nw": {"x": 562.0, "y": 1188.0}}, "position": {"x": 567.0, "y": 1183.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122001, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1192.0}, "se": {"x": 562.0, "y": 1192.0}, "sw": {"x": 572.0, "y": 1202.0}, "nw": {"x": 562.0, "y": 1202.0}}, "position": {"x": 567.0, "y": 1197.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122002, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1206.0}, "se": {"x": 562.0, "y": 1206.0}, "sw": {"x": 572.0, "y": 1216.0}, "nw": {"x": 562.0, "y": 1216.0}}, "position": {"x": 567.0, "y": 1211.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122003, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1220.0}, "se": {"x": 562.0, "y": 1220.0}, "sw": {"x": 572.0, "y": 1230.0}, "nw": {"x": 562.0, "y": 1230.0}}, "position": {"x": 567.0, "y": 1225.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122004, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1234.0}, "se": {"x": 562.0, "y": 1234.0}, "sw": {"x": 572.0, "y": 1244.0}, "nw": {"x": 562.0, "y": 1244.0}}, "position": {"x": 567.0, "y": 1239.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122005, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1248.0}, "se": {"x": 562.0, "y": 1248.0}, "sw": {"x": 572.0, "y": 1258.0}, "nw": {"x": 562.0, "y": 1258.0}}, "position": {"x": 567.0, "y": 1253.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122006, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1262.0}, "se": {"x": 562.0, "y": 1262.0}, "sw": {"x": 572.0, "y": 1272.0}, "nw": {"x": 562.0, "y": 1272.0}}, "position": {"x": 567.0, "y": 1267.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122325, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1023.0}, "se": {"x": 604.0, "y": 1023.0}, "sw": {"x": 614.0, "y": 1033.0}, "nw": {"x": 604.0, "y": 1033.0}}, "position": {"x": 609.0, "y": 1028.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1420, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122326, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1037.0}, "se": {"x": 604.0, "y": 1037.0}, "sw": {"x": 614.0, "y": 1047.0}, "nw": {"x": 604.0, "y": 1047.0}}, "position": {"x": 609.0, "y": 1042.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1419, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122327, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1051.0}, "se": {"x": 604.0, "y": 1051.0}, "sw": {"x": 614.0, "y": 1061.0}, "nw": {"x": 604.0, "y": 1061.0}}, "position": {"x": 609.0, "y": 1056.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1418, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122328, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1065.0}, "se": {"x": 604.0, "y": 1065.0}, "sw": {"x": 614.0, "y": 1075.0}, "nw": {"x": 604.0, "y": 1075.0}}, "position": {"x": 609.0, "y": 1070.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1417, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122329, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1079.0}, "se": {"x": 604.0, "y": 1079.0}, "sw": {"x": 614.0, "y": 1089.0}, "nw": {"x": 604.0, "y": 1089.0}}, "position": {"x": 609.0, "y": 1084.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1416, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122330, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1093.0}, "se": {"x": 604.0, "y": 1093.0}, "sw": {"x": 614.0, "y": 1103.0}, "nw": {"x": 604.0, "y": 1103.0}}, "position": {"x": 609.0, "y": 1098.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1415, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122331, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1107.0}, "se": {"x": 604.0, "y": 1107.0}, "sw": {"x": 614.0, "y": 1117.0}, "nw": {"x": 604.0, "y": 1117.0}}, "position": {"x": 609.0, "y": 1112.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 2\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159643, "gate": "", "blockId": null, "orderNum": 1414, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "2\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00002\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122347, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1023.0}, "se": {"x": 590.0, "y": 1023.0}, "sw": {"x": 600.0, "y": 1033.0}, "nw": {"x": 590.0, "y": 1033.0}}, "position": {"x": 595.0, "y": 1028.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1313, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122348, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1037.0}, "se": {"x": 590.0, "y": 1037.0}, "sw": {"x": 600.0, "y": 1047.0}, "nw": {"x": 590.0, "y": 1047.0}}, "position": {"x": 595.0, "y": 1042.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1312, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122349, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1051.0}, "se": {"x": 590.0, "y": 1051.0}, "sw": {"x": 600.0, "y": 1061.0}, "nw": {"x": 590.0, "y": 1061.0}}, "position": {"x": 595.0, "y": 1056.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1311, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122350, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1065.0}, "se": {"x": 590.0, "y": 1065.0}, "sw": {"x": 600.0, "y": 1075.0}, "nw": {"x": 590.0, "y": 1075.0}}, "position": {"x": 595.0, "y": 1070.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1310, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122351, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1079.0}, "se": {"x": 590.0, "y": 1079.0}, "sw": {"x": 600.0, "y": 1089.0}, "nw": {"x": 590.0, "y": 1089.0}}, "position": {"x": 595.0, "y": 1084.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1309, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122352, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1093.0}, "se": {"x": 590.0, "y": 1093.0}, "sw": {"x": 600.0, "y": 1103.0}, "nw": {"x": 590.0, "y": 1103.0}}, "position": {"x": 595.0, "y": 1098.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1308, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122353, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1107.0}, "se": {"x": 590.0, "y": 1107.0}, "sw": {"x": 600.0, "y": 1117.0}, "nw": {"x": 590.0, "y": 1117.0}}, "position": {"x": 595.0, "y": 1112.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 J\uad6c\uc5ed 3\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159665, "gate": "", "blockId": null, "orderNum": 1307, "attributes": ["", "", "2\uce35", "J\uad6c\uc5ed", "3\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35J\uad6c\uc5ed00003\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}], "4:2": [{"logicalSeatId": 1537123121, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 734.0}, "se": {"x": 1031.0, "y": 744.0}, "sw": {"x": 1041.0, "y": 734.0}, "nw": {"x": 1041.0, "y": 744.0}}, "position": {"x": 1036.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123122, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 734.0}, "se": {"x": 1045.0, "y": 744.0}, "sw": {"x": 1055.0, "y": 734.0}, "nw": {"x": 1055.0, "y": 744.0}}, "position": {"x": 1050.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123123, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 734.0}, "se": {"x": 1059.0, "y": 744.0}, "sw": {"x": 1069.0, "y": 734.0}, "nw": {"x": 1069.0, "y": 744.0}}, "position": {"x": 1064.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123124, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 734.0}, "se": {"x": 1073.0, "y": 744.0}, "sw": {"x": 1083.0, "y": 734.0}, "nw": {"x": 1083.0, "y": 744.0}}, "position": {"x": 1078.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123125, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 734.0}, "se": {"x": 1087.0, "y": 744.0}, "sw": {"x": 1097.0, "y": 734.0}, "nw": {"x": 1097.0, "y": 744.0}}, "position": {"x": 1092.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123126, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 734.0}, "se": {"x": 1101.0, "y": 744.0}, "sw": {"x": 1111.0, "y": 734.0}, "nw": {"x": 1111.0, "y": 744.0}}, "position": {"x": 1106.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123127, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 734.0}, "se": {"x": 1115.0, "y": 744.0}, "sw": {"x": 1125.0, "y": 734.0}, "nw": {"x": 1125.0, "y": 744.0}}, "position": {"x": 1120.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123128, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 734.0}, "se": {"x": 1129.0, "y": 744.0}, "sw": {"x": 1139.0, "y": 734.0}, "nw": {"x": 1139.0, "y": 744.0}}, "position": {"x": 1134.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123129, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 734.0}, "se": {"x": 1143.0, "y": 744.0}, "sw": {"x": 1153.0, "y": 734.0}, "nw": {"x": 1153.0, "y": 744.0}}, "position": {"x": 1148.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123130, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 734.0}, "se": {"x": 1157.0, "y": 744.0}, "sw": {"x": 1167.0, "y": 734.0}, "nw": {"x": 1167.0, "y": 744.0}}, "position": {"x": 1162.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123131, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 748.0}, "se": {"x": 1031.0, "y": 758.0}, "sw": {"x": 1041.0, "y": 748.0}, "nw": {"x": 1041.0, "y": 758.0}}, "position": {"x": 1036.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123132, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 748.0}, "se": {"x": 1045.0, "y": 758.0}, "sw": {"x": 1055.0, "y": 748.0}, "nw": {"x": 1055.0, "y": 758.0}}, "position": {"x": 1050.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123133, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 748.0}, "se": {"x": 1059.0, "y": 758.0}, "sw": {"x": 1069.0, "y": 748.0}, "nw": {"x": 1069.0, "y": 758.0}}, "position": {"x": 1064.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123134, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 748.0}, "se": {"x": 1073.0, "y": 758.0}, "sw": {"x": 1083.0, "y": 748.0}, "nw": {"x": 1083.0, "y": 758.0}}, "position": {"x": 1078.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123135, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 748.0}, "se": {"x": 1087.0, "y": 758.0}, "sw": {"x": 1097.0, "y": 748.0}, "nw": {"x": 1097.0, "y": 758.0}}, "position": {"x": 1092.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123136, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 748.0}, "se": {"x": 1101.0, "y": 758.0}, "sw": {"x": 1111.0, "y": 748.0}, "nw": {"x": 1111.0, "y": 758.0}}, "position": {"x": 1106.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123137, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 748.0}, "se": {"x": 1115.0, "y": 758.0}, "sw": {"x": 1125.0, "y": 748.0}, "nw": {"x": 1125.0, "y": 758.0}}, "position": {"x": 1120.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123138, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 748.0}, "se": {"x": 1129.0, "y": 758.0}, "sw": {"x": 1139.0, "y": 748.0}, "nw": {"x": 1139.0, "y": 758.0}}, "position": {"x": 1134.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123139, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 748.0}, "se": {"x": 1143.0, "y": 758.0}, "sw": {"x": 1153.0, "y": 748.0}, "nw": {"x": 1153.0, "y": 758.0}}, "position": {"x": 1148.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123140, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 748.0}, "se": {"x": 1157.0, "y": 758.0}, "sw": {"x": 1167.0, "y": 748.0}, "nw": {"x": 1167.0, "y": 758.0}}, "position": {"x": 1162.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123141, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 762.0}, "se": {"x": 1031.0, "y": 772.0}, "sw": {"x": 1041.0, "y": 762.0}, "nw": {"x": 1041.0, "y": 772.0}}, "position": {"x": 1036.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123142, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 762.0}, "se": {"x": 1045.0, "y": 772.0}, "sw": {"x": 1055.0, "y": 762.0}, "nw": {"x": 1055.0, "y": 772.0}}, "position": {"x": 1050.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123143, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 762.0}, "se": {"x": 1059.0, "y": 772.0}, "sw": {"x": 1069.0, "y": 762.0}, "nw": {"x": 1069.0, "y": 772.0}}, "position": {"x": 1064.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123144, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 762.0}, "se": {"x": 1073.0, "y": 772.0}, "sw": {"x": 1083.0, "y": 762.0}, "nw": {"x": 1083.0, "y": 772.0}}, "position": {"x": 1078.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123145, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 762.0}, "se": {"x": 1087.0, "y": 772.0}, "sw": {"x": 1097.0, "y": 762.0}, "nw": {"x": 1097.0, "y": 772.0}}, "position": {"x": 1092.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123146, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 762.0}, "se": {"x": 1101.0, "y": 772.0}, "sw": {"x": 1111.0, "y": 762.0}, "nw": {"x": 1111.0, "y": 772.0}}, "position": {"x": 1106.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123147, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 762.0}, "se": {"x": 1115.0, "y": 772.0}, "sw": {"x": 1125.0, "y": 762.0}, "nw": {"x": 1125.0, "y": 772.0}}, "position": {"x": 1120.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123148, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 762.0}, "se": {"x": 1129.0, "y": 772.0}, "sw": {"x": 1139.0, "y": 762.0}, "nw": {"x": 1139.0, "y": 772.0}}, "position": {"x": 1134.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123149, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 762.0}, "se": {"x": 1143.0, "y": 772.0}, "sw": {"x": 1153.0, "y": 762.0}, "nw": {"x": 1153.0, "y": 772.0}}, "position": {"x": 1148.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123150, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 762.0}, "se": {"x": 1157.0, "y": 772.0}, "sw": {"x": 1167.0, "y": 762.0}, "nw": {"x": 1167.0, "y": 772.0}}, "position": {"x": 1162.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123281, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 734.0}, "se": {"x": 1253.0, "y": 744.0}, "sw": {"x": 1263.0, "y": 734.0}, "nw": {"x": 1263.0, "y": 744.0}}, "position": {"x": 1258.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123282, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 734.0}, "se": {"x": 1267.0, "y": 744.0}, "sw": {"x": 1277.0, "y": 734.0}, "nw": {"x": 1277.0, "y": 744.0}}, "position": {"x": 1272.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123291, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 748.0}, "se": {"x": 1253.0, "y": 758.0}, "sw": {"x": 1263.0, "y": 748.0}, "nw": {"x": 1263.0, "y": 758.0}}, "position": {"x": 1258.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123292, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 748.0}, "se": {"x": 1267.0, "y": 758.0}, "sw": {"x": 1277.0, "y": 748.0}, "nw": {"x": 1277.0, "y": 758.0}}, "position": {"x": 1272.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123301, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 762.0}, "se": {"x": 1253.0, "y": 772.0}, "sw": {"x": 1263.0, "y": 762.0}, "nw": {"x": 1263.0, "y": 772.0}}, "position": {"x": 1258.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123302, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 762.0}, "se": {"x": 1267.0, "y": 772.0}, "sw": {"x": 1277.0, "y": 762.0}, "nw": {"x": 1277.0, "y": 772.0}}, "position": {"x": 1272.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "3:4": [{"logicalSeatId": 1537123589, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1188.0}, "se": {"x": 812.0, "y": 1198.0}, "sw": {"x": 822.0, "y": 1188.0}, "nw": {"x": 822.0, "y": 1198.0}}, "position": {"x": 817.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123590, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1188.0}, "se": {"x": 826.0, "y": 1198.0}, "sw": {"x": 836.0, "y": 1188.0}, "nw": {"x": 836.0, "y": 1198.0}}, "position": {"x": 831.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123591, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1188.0}, "se": {"x": 840.0, "y": 1198.0}, "sw": {"x": 850.0, "y": 1188.0}, "nw": {"x": 850.0, "y": 1198.0}}, "position": {"x": 845.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123592, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1188.0}, "se": {"x": 854.0, "y": 1198.0}, "sw": {"x": 864.0, "y": 1188.0}, "nw": {"x": 864.0, "y": 1198.0}}, "position": {"x": 859.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123593, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1188.0}, "se": {"x": 868.0, "y": 1198.0}, "sw": {"x": 878.0, "y": 1188.0}, "nw": {"x": 878.0, "y": 1198.0}}, "position": {"x": 873.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123594, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1188.0}, "se": {"x": 882.0, "y": 1198.0}, "sw": {"x": 892.0, "y": 1188.0}, "nw": {"x": 892.0, "y": 1198.0}}, "position": {"x": 887.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123595, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1188.0}, "se": {"x": 896.0, "y": 1198.0}, "sw": {"x": 906.0, "y": 1188.0}, "nw": {"x": 906.0, "y": 1198.0}}, "position": {"x": 901.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123596, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1188.0}, "se": {"x": 910.0, "y": 1198.0}, "sw": {"x": 920.0, "y": 1188.0}, "nw": {"x": 920.0, "y": 1198.0}}, "position": {"x": 915.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123597, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1188.0}, "se": {"x": 924.0, "y": 1198.0}, "sw": {"x": 934.0, "y": 1188.0}, "nw": {"x": 934.0, "y": 1198.0}}, "position": {"x": 929.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123598, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1188.0}, "se": {"x": 938.0, "y": 1198.0}, "sw": {"x": 948.0, "y": 1188.0}, "nw": {"x": 948.0, "y": 1198.0}}, "position": {"x": 943.0, "y": 1193.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123599, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1202.0}, "se": {"x": 812.0, "y": 1212.0}, "sw": {"x": 822.0, "y": 1202.0}, "nw": {"x": 822.0, "y": 1212.0}}, "position": {"x": 817.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123600, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1202.0}, "se": {"x": 826.0, "y": 1212.0}, "sw": {"x": 836.0, "y": 1202.0}, "nw": {"x": 836.0, "y": 1212.0}}, "position": {"x": 831.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123601, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1202.0}, "se": {"x": 840.0, "y": 1212.0}, "sw": {"x": 850.0, "y": 1202.0}, "nw": {"x": 850.0, "y": 1212.0}}, "position": {"x": 845.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123602, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1202.0}, "se": {"x": 854.0, "y": 1212.0}, "sw": {"x": 864.0, "y": 1202.0}, "nw": {"x": 864.0, "y": 1212.0}}, "position": {"x": 859.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123603, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1202.0}, "se": {"x": 868.0, "y": 1212.0}, "sw": {"x": 878.0, "y": 1202.0}, "nw": {"x": 878.0, "y": 1212.0}}, "position": {"x": 873.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123604, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1202.0}, "se": {"x": 882.0, "y": 1212.0}, "sw": {"x": 892.0, "y": 1202.0}, "nw": {"x": 892.0, "y": 1212.0}}, "position": {"x": 887.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123605, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1202.0}, "se": {"x": 896.0, "y": 1212.0}, "sw": {"x": 906.0, "y": 1202.0}, "nw": {"x": 906.0, "y": 1212.0}}, "position": {"x": 901.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123606, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1202.0}, "se": {"x": 910.0, "y": 1212.0}, "sw": {"x": 920.0, "y": 1202.0}, "nw": {"x": 920.0, "y": 1212.0}}, "position": {"x": 915.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123607, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1202.0}, "se": {"x": 924.0, "y": 1212.0}, "sw": {"x": 934.0, "y": 1202.0}, "nw": {"x": 934.0, "y": 1212.0}}, "position": {"x": 929.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123608, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1202.0}, "se": {"x": 938.0, "y": 1212.0}, "sw": {"x": 948.0, "y": 1202.0}, "nw": {"x": 948.0, "y": 1212.0}}, "position": {"x": 943.0, "y": 1207.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123609, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1216.0}, "se": {"x": 812.0, "y": 1226.0}, "sw": {"x": 822.0, "y": 1216.0}, "nw": {"x": 822.0, "y": 1226.0}}, "position": {"x": 817.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123610, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1216.0}, "se": {"x": 826.0, "y": 1226.0}, "sw": {"x": 836.0, "y": 1216.0}, "nw": {"x": 836.0, "y": 1226.0}}, "position": {"x": 831.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123611, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1216.0}, "se": {"x": 840.0, "y": 1226.0}, "sw": {"x": 850.0, "y": 1216.0}, "nw": {"x": 850.0, "y": 1226.0}}, "position": {"x": 845.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123612, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1216.0}, "se": {"x": 854.0, "y": 1226.0}, "sw": {"x": 864.0, "y": 1216.0}, "nw": {"x": 864.0, "y": 1226.0}}, "position": {"x": 859.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123613, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1216.0}, "se": {"x": 868.0, "y": 1226.0}, "sw": {"x": 878.0, "y": 1216.0}, "nw": {"x": 878.0, "y": 1226.0}}, "position": {"x": 873.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123614, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1216.0}, "se": {"x": 882.0, "y": 1226.0}, "sw": {"x": 892.0, "y": 1216.0}, "nw": {"x": 892.0, "y": 1226.0}}, "position": {"x": 887.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123615, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1216.0}, "se": {"x": 896.0, "y": 1226.0}, "sw": {"x": 906.0, "y": 1216.0}, "nw": {"x": 906.0, "y": 1226.0}}, "position": {"x": 901.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123616, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1216.0}, "se": {"x": 910.0, "y": 1226.0}, "sw": {"x": 920.0, "y": 1216.0}, "nw": {"x": 920.0, "y": 1226.0}}, "position": {"x": 915.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123617, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1216.0}, "se": {"x": 924.0, "y": 1226.0}, "sw": {"x": 934.0, "y": 1216.0}, "nw": {"x": 934.0, "y": 1226.0}}, "position": {"x": 929.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123618, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1216.0}, "se": {"x": 938.0, "y": 1226.0}, "sw": {"x": 948.0, "y": 1216.0}, "nw": {"x": 948.0, "y": 1226.0}}, "position": {"x": 943.0, "y": 1221.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123619, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1230.0}, "se": {"x": 812.0, "y": 1240.0}, "sw": {"x": 822.0, "y": 1230.0}, "nw": {"x": 822.0, "y": 1240.0}}, "position": {"x": 817.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123620, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1230.0}, "se": {"x": 826.0, "y": 1240.0}, "sw": {"x": 836.0, "y": 1230.0}, "nw": {"x": 836.0, "y": 1240.0}}, "position": {"x": 831.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123621, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1230.0}, "se": {"x": 840.0, "y": 1240.0}, "sw": {"x": 850.0, "y": 1230.0}, "nw": {"x": 850.0, "y": 1240.0}}, "position": {"x": 845.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123622, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1230.0}, "se": {"x": 854.0, "y": 1240.0}, "sw": {"x": 864.0, "y": 1230.0}, "nw": {"x": 864.0, "y": 1240.0}}, "position": {"x": 859.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123623, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1230.0}, "se": {"x": 868.0, "y": 1240.0}, "sw": {"x": 878.0, "y": 1230.0}, "nw": {"x": 878.0, "y": 1240.0}}, "position": {"x": 873.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123624, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1230.0}, "se": {"x": 882.0, "y": 1240.0}, "sw": {"x": 892.0, "y": 1230.0}, "nw": {"x": 892.0, "y": 1240.0}}, "position": {"x": 887.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123625, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1230.0}, "se": {"x": 896.0, "y": 1240.0}, "sw": {"x": 906.0, "y": 1230.0}, "nw": {"x": 906.0, "y": 1240.0}}, "position": {"x": 901.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123626, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1230.0}, "se": {"x": 910.0, "y": 1240.0}, "sw": {"x": 920.0, "y": 1230.0}, "nw": {"x": 920.0, "y": 1240.0}}, "position": {"x": 915.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123627, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1230.0}, "se": {"x": 924.0, "y": 1240.0}, "sw": {"x": 934.0, "y": 1230.0}, "nw": {"x": 934.0, "y": 1240.0}}, "position": {"x": 929.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123628, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1230.0}, "se": {"x": 938.0, "y": 1240.0}, "sw": {"x": 948.0, "y": 1230.0}, "nw": {"x": 948.0, "y": 1240.0}}, "position": {"x": 943.0, "y": 1235.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123629, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1244.0}, "se": {"x": 812.0, "y": 1254.0}, "sw": {"x": 822.0, "y": 1244.0}, "nw": {"x": 822.0, "y": 1254.0}}, "position": {"x": 817.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123630, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1244.0}, "se": {"x": 826.0, "y": 1254.0}, "sw": {"x": 836.0, "y": 1244.0}, "nw": {"x": 836.0, "y": 1254.0}}, "position": {"x": 831.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123631, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1244.0}, "se": {"x": 840.0, "y": 1254.0}, "sw": {"x": 850.0, "y": 1244.0}, "nw": {"x": 850.0, "y": 1254.0}}, "position": {"x": 845.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123632, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1244.0}, "se": {"x": 854.0, "y": 1254.0}, "sw": {"x": 864.0, "y": 1244.0}, "nw": {"x": 864.0, "y": 1254.0}}, "position": {"x": 859.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123633, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1244.0}, "se": {"x": 868.0, "y": 1254.0}, "sw": {"x": 878.0, "y": 1244.0}, "nw": {"x": 878.0, "y": 1254.0}}, "position": {"x": 873.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123634, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1244.0}, "se": {"x": 882.0, "y": 1254.0}, "sw": {"x": 892.0, "y": 1244.0}, "nw": {"x": 892.0, "y": 1254.0}}, "position": {"x": 887.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123635, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1244.0}, "se": {"x": 896.0, "y": 1254.0}, "sw": {"x": 906.0, "y": 1244.0}, "nw": {"x": 906.0, "y": 1254.0}}, "position": {"x": 901.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123636, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1244.0}, "se": {"x": 910.0, "y": 1254.0}, "sw": {"x": 920.0, "y": 1244.0}, "nw": {"x": 920.0, "y": 1254.0}}, "position": {"x": 915.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123637, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1244.0}, "se": {"x": 924.0, "y": 1254.0}, "sw": {"x": 934.0, "y": 1244.0}, "nw": {"x": 934.0, "y": 1254.0}}, "position": {"x": 929.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123638, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1244.0}, "se": {"x": 938.0, "y": 1254.0}, "sw": {"x": 948.0, "y": 1244.0}, "nw": {"x": 948.0, "y": 1254.0}}, "position": {"x": 943.0, "y": 1249.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123639, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1258.0}, "se": {"x": 812.0, "y": 1268.0}, "sw": {"x": 822.0, "y": 1258.0}, "nw": {"x": 822.0, "y": 1268.0}}, "position": {"x": 817.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123640, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1258.0}, "se": {"x": 826.0, "y": 1268.0}, "sw": {"x": 836.0, "y": 1258.0}, "nw": {"x": 836.0, "y": 1268.0}}, "position": {"x": 831.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123642, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1258.0}, "se": {"x": 854.0, "y": 1268.0}, "sw": {"x": 864.0, "y": 1258.0}, "nw": {"x": 864.0, "y": 1268.0}}, "position": {"x": 859.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123643, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1258.0}, "se": {"x": 868.0, "y": 1268.0}, "sw": {"x": 878.0, "y": 1258.0}, "nw": {"x": 878.0, "y": 1268.0}}, "position": {"x": 873.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123644, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1258.0}, "se": {"x": 882.0, "y": 1268.0}, "sw": {"x": 892.0, "y": 1258.0}, "nw": {"x": 892.0, "y": 1268.0}}, "position": {"x": 887.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123645, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1258.0}, "se": {"x": 896.0, "y": 1268.0}, "sw": {"x": 906.0, "y": 1258.0}, "nw": {"x": 906.0, "y": 1268.0}}, "position": {"x": 901.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123646, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1258.0}, "se": {"x": 910.0, "y": 1268.0}, "sw": {"x": 920.0, "y": 1258.0}, "nw": {"x": 920.0, "y": 1268.0}}, "position": {"x": 915.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123647, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1258.0}, "se": {"x": 924.0, "y": 1268.0}, "sw": {"x": 934.0, "y": 1258.0}, "nw": {"x": 934.0, "y": 1268.0}}, "position": {"x": 929.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123648, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1258.0}, "se": {"x": 938.0, "y": 1268.0}, "sw": {"x": 948.0, "y": 1258.0}, "nw": {"x": 948.0, "y": 1268.0}}, "position": {"x": 943.0, "y": 1263.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123649, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1272.0}, "se": {"x": 812.0, "y": 1282.0}, "sw": {"x": 822.0, "y": 1272.0}, "nw": {"x": 822.0, "y": 1282.0}}, "position": {"x": 817.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123650, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1272.0}, "se": {"x": 826.0, "y": 1282.0}, "sw": {"x": 836.0, "y": 1272.0}, "nw": {"x": 836.0, "y": 1282.0}}, "position": {"x": 831.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123651, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1272.0}, "se": {"x": 840.0, "y": 1282.0}, "sw": {"x": 850.0, "y": 1272.0}, "nw": {"x": 850.0, "y": 1282.0}}, "position": {"x": 845.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123652, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1272.0}, "se": {"x": 854.0, "y": 1282.0}, "sw": {"x": 864.0, "y": 1272.0}, "nw": {"x": 864.0, "y": 1282.0}}, "position": {"x": 859.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123653, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1272.0}, "se": {"x": 868.0, "y": 1282.0}, "sw": {"x": 878.0, "y": 1272.0}, "nw": {"x": 878.0, "y": 1282.0}}, "position": {"x": 873.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123654, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1272.0}, "se": {"x": 882.0, "y": 1282.0}, "sw": {"x": 892.0, "y": 1272.0}, "nw": {"x": 892.0, "y": 1282.0}}, "position": {"x": 887.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123655, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1272.0}, "se": {"x": 896.0, "y": 1282.0}, "sw": {"x": 906.0, "y": 1272.0}, "nw": {"x": 906.0, "y": 1282.0}}, "position": {"x": 901.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123656, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1272.0}, "se": {"x": 910.0, "y": 1282.0}, "sw": {"x": 920.0, "y": 1272.0}, "nw": {"x": 920.0, "y": 1282.0}}, "position": {"x": 915.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123657, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1272.0}, "se": {"x": 924.0, "y": 1282.0}, "sw": {"x": 934.0, "y": 1272.0}, "nw": {"x": 934.0, "y": 1282.0}}, "position": {"x": 929.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123658, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1272.0}, "se": {"x": 938.0, "y": 1282.0}, "sw": {"x": 948.0, "y": 1272.0}, "nw": {"x": 948.0, "y": 1282.0}}, "position": {"x": 943.0, "y": 1277.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "5:2": [{"logicalSeatId": 1537123283, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 734.0}, "se": {"x": 1281.0, "y": 744.0}, "sw": {"x": 1291.0, "y": 734.0}, "nw": {"x": 1291.0, "y": 744.0}}, "position": {"x": 1286.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123284, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 734.0}, "se": {"x": 1295.0, "y": 744.0}, "sw": {"x": 1305.0, "y": 734.0}, "nw": {"x": 1305.0, "y": 744.0}}, "position": {"x": 1300.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123285, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 734.0}, "se": {"x": 1309.0, "y": 744.0}, "sw": {"x": 1319.0, "y": 734.0}, "nw": {"x": 1319.0, "y": 744.0}}, "position": {"x": 1314.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123286, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 734.0}, "se": {"x": 1323.0, "y": 744.0}, "sw": {"x": 1333.0, "y": 734.0}, "nw": {"x": 1333.0, "y": 744.0}}, "position": {"x": 1328.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123287, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 734.0}, "se": {"x": 1337.0, "y": 744.0}, "sw": {"x": 1347.0, "y": 734.0}, "nw": {"x": 1347.0, "y": 744.0}}, "position": {"x": 1342.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123288, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 734.0}, "se": {"x": 1351.0, "y": 744.0}, "sw": {"x": 1361.0, "y": 734.0}, "nw": {"x": 1361.0, "y": 744.0}}, "position": {"x": 1356.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123289, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 734.0}, "se": {"x": 1365.0, "y": 744.0}, "sw": {"x": 1375.0, "y": 734.0}, "nw": {"x": 1375.0, "y": 744.0}}, "position": {"x": 1370.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123290, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 734.0}, "se": {"x": 1379.0, "y": 744.0}, "sw": {"x": 1389.0, "y": 734.0}, "nw": {"x": 1389.0, "y": 744.0}}, "position": {"x": 1384.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123293, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 748.0}, "se": {"x": 1281.0, "y": 758.0}, "sw": {"x": 1291.0, "y": 748.0}, "nw": {"x": 1291.0, "y": 758.0}}, "position": {"x": 1286.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123294, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 748.0}, "se": {"x": 1295.0, "y": 758.0}, "sw": {"x": 1305.0, "y": 748.0}, "nw": {"x": 1305.0, "y": 758.0}}, "position": {"x": 1300.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123295, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 748.0}, "se": {"x": 1309.0, "y": 758.0}, "sw": {"x": 1319.0, "y": 748.0}, "nw": {"x": 1319.0, "y": 758.0}}, "position": {"x": 1314.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123296, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 748.0}, "se": {"x": 1323.0, "y": 758.0}, "sw": {"x": 1333.0, "y": 748.0}, "nw": {"x": 1333.0, "y": 758.0}}, "position": {"x": 1328.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123297, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 748.0}, "se": {"x": 1337.0, "y": 758.0}, "sw": {"x": 1347.0, "y": 748.0}, "nw": {"x": 1347.0, "y": 758.0}}, "position": {"x": 1342.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123298, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 748.0}, "se": {"x": 1351.0, "y": 758.0}, "sw": {"x": 1361.0, "y": 748.0}, "nw": {"x": 1361.0, "y": 758.0}}, "position": {"x": 1356.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123299, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 748.0}, "se": {"x": 1365.0, "y": 758.0}, "sw": {"x": 1375.0, "y": 748.0}, "nw": {"x": 1375.0, "y": 758.0}}, "position": {"x": 1370.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123300, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 748.0}, "se": {"x": 1379.0, "y": 758.0}, "sw": {"x": 1389.0, "y": 748.0}, "nw": {"x": 1389.0, "y": 758.0}}, "position": {"x": 1384.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123303, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 762.0}, "se": {"x": 1281.0, "y": 772.0}, "sw": {"x": 1291.0, "y": 762.0}, "nw": {"x": 1291.0, "y": 772.0}}, "position": {"x": 1286.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123304, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 762.0}, "se": {"x": 1295.0, "y": 772.0}, "sw": {"x": 1305.0, "y": 762.0}, "nw": {"x": 1305.0, "y": 772.0}}, "position": {"x": 1300.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123305, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 762.0}, "se": {"x": 1309.0, "y": 772.0}, "sw": {"x": 1319.0, "y": 762.0}, "nw": {"x": 1319.0, "y": 772.0}}, "position": {"x": 1314.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123306, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 762.0}, "se": {"x": 1323.0, "y": 772.0}, "sw": {"x": 1333.0, "y": 762.0}, "nw": {"x": 1333.0, "y": 772.0}}, "position": {"x": 1328.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123307, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 762.0}, "se": {"x": 1337.0, "y": 772.0}, "sw": {"x": 1347.0, "y": 762.0}, "nw": {"x": 1347.0, "y": 772.0}}, "position": {"x": 1342.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123308, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 762.0}, "se": {"x": 1351.0, "y": 772.0}, "sw": {"x": 1361.0, "y": 762.0}, "nw": {"x": 1361.0, "y": 772.0}}, "position": {"x": 1356.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123309, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 762.0}, "se": {"x": 1365.0, "y": 772.0}, "sw": {"x": 1375.0, "y": 762.0}, "nw": {"x": 1375.0, "y": 772.0}}, "position": {"x": 1370.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123310, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 762.0}, "se": {"x": 1379.0, "y": 772.0}, "sw": {"x": 1389.0, "y": 762.0}, "nw": {"x": 1389.0, "y": 772.0}}, "position": {"x": 1384.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123441, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 734.0}, "se": {"x": 1465.0, "y": 744.0}, "sw": {"x": 1475.0, "y": 734.0}, "nw": {"x": 1475.0, "y": 744.0}}, "position": {"x": 1470.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123442, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 734.0}, "se": {"x": 1479.0, "y": 744.0}, "sw": {"x": 1489.0, "y": 734.0}, "nw": {"x": 1489.0, "y": 744.0}}, "position": {"x": 1484.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123443, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 734.0}, "se": {"x": 1493.0, "y": 744.0}, "sw": {"x": 1503.0, "y": 734.0}, "nw": {"x": 1503.0, "y": 744.0}}, "position": {"x": 1498.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123444, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 734.0}, "se": {"x": 1507.0, "y": 744.0}, "sw": {"x": 1517.0, "y": 734.0}, "nw": {"x": 1517.0, "y": 744.0}}, "position": {"x": 1512.0, "y": 739.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123445, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 748.0}, "se": {"x": 1465.0, "y": 758.0}, "sw": {"x": 1475.0, "y": 748.0}, "nw": {"x": 1475.0, "y": 758.0}}, "position": {"x": 1470.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123446, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 748.0}, "se": {"x": 1479.0, "y": 758.0}, "sw": {"x": 1489.0, "y": 748.0}, "nw": {"x": 1489.0, "y": 758.0}}, "position": {"x": 1484.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123447, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 748.0}, "se": {"x": 1493.0, "y": 758.0}, "sw": {"x": 1503.0, "y": 748.0}, "nw": {"x": 1503.0, "y": 758.0}}, "position": {"x": 1498.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123448, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 748.0}, "se": {"x": 1507.0, "y": 758.0}, "sw": {"x": 1517.0, "y": 748.0}, "nw": {"x": 1517.0, "y": 758.0}}, "position": {"x": 1512.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123449, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 748.0}, "se": {"x": 1521.0, "y": 758.0}, "sw": {"x": 1531.0, "y": 748.0}, "nw": {"x": 1531.0, "y": 758.0}}, "position": {"x": 1526.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123451, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 762.0}, "se": {"x": 1465.0, "y": 772.0}, "sw": {"x": 1475.0, "y": 762.0}, "nw": {"x": 1475.0, "y": 772.0}}, "position": {"x": 1470.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123452, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 762.0}, "se": {"x": 1479.0, "y": 772.0}, "sw": {"x": 1489.0, "y": 762.0}, "nw": {"x": 1489.0, "y": 772.0}}, "position": {"x": 1484.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123453, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 762.0}, "se": {"x": 1493.0, "y": 772.0}, "sw": {"x": 1503.0, "y": 762.0}, "nw": {"x": 1503.0, "y": 772.0}}, "position": {"x": 1498.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123454, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 762.0}, "se": {"x": 1507.0, "y": 772.0}, "sw": {"x": 1517.0, "y": 762.0}, "nw": {"x": 1517.0, "y": 772.0}}, "position": {"x": 1512.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123455, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 762.0}, "se": {"x": 1521.0, "y": 772.0}, "sw": {"x": 1531.0, "y": 762.0}, "nw": {"x": 1531.0, "y": 772.0}}, "position": {"x": 1526.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "2:5": [{"logicalSeatId": 1537121634, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1470.0}, "se": {"x": 604.0, "y": 1470.0}, "sw": {"x": 614.0, "y": 1480.0}, "nw": {"x": 604.0, "y": 1480.0}}, "position": {"x": 609.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1392, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121635, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1484.0}, "se": {"x": 604.0, "y": 1484.0}, "sw": {"x": 614.0, "y": 1494.0}, "nw": {"x": 604.0, "y": 1494.0}}, "position": {"x": 609.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1391, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121636, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1498.0}, "se": {"x": 604.0, "y": 1498.0}, "sw": {"x": 614.0, "y": 1508.0}, "nw": {"x": 604.0, "y": 1508.0}}, "position": {"x": 609.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1390, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121637, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1512.0}, "se": {"x": 604.0, "y": 1512.0}, "sw": {"x": 614.0, "y": 1522.0}, "nw": {"x": 604.0, "y": 1522.0}}, "position": {"x": 609.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1389, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121638, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1526.0}, "se": {"x": 604.0, "y": 1526.0}, "sw": {"x": 614.0, "y": 1536.0}, "nw": {"x": 604.0, "y": 1536.0}}, "position": {"x": 609.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1388, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121649, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1470.0}, "se": {"x": 590.0, "y": 1470.0}, "sw": {"x": 600.0, "y": 1480.0}, "nw": {"x": 590.0, "y": 1480.0}}, "position": {"x": 595.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1285, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121650, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1484.0}, "se": {"x": 590.0, "y": 1484.0}, "sw": {"x": 600.0, "y": 1494.0}, "nw": {"x": 590.0, "y": 1494.0}}, "position": {"x": 595.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1284, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121651, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1498.0}, "se": {"x": 590.0, "y": 1498.0}, "sw": {"x": 600.0, "y": 1508.0}, "nw": {"x": 590.0, "y": 1508.0}}, "position": {"x": 595.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1283, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121652, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1512.0}, "se": {"x": 590.0, "y": 1512.0}, "sw": {"x": 600.0, "y": 1522.0}, "nw": {"x": 590.0, "y": 1522.0}}, "position": {"x": 595.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1282, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121653, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1526.0}, "se": {"x": 590.0, "y": 1526.0}, "sw": {"x": 600.0, "y": 1536.0}, "nw": {"x": 590.0, "y": 1536.0}}, "position": {"x": 595.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1281, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121665, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1470.0}, "se": {"x": 576.0, "y": 1470.0}, "sw": {"x": 586.0, "y": 1480.0}, "nw": {"x": 576.0, "y": 1480.0}}, "position": {"x": 581.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1198, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121666, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1484.0}, "se": {"x": 576.0, "y": 1484.0}, "sw": {"x": 586.0, "y": 1494.0}, "nw": {"x": 576.0, "y": 1494.0}}, "position": {"x": 581.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1197, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121667, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1498.0}, "se": {"x": 576.0, "y": 1498.0}, "sw": {"x": 586.0, "y": 1508.0}, "nw": {"x": 576.0, "y": 1508.0}}, "position": {"x": 581.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1196, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121668, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1512.0}, "se": {"x": 576.0, "y": 1512.0}, "sw": {"x": 586.0, "y": 1522.0}, "nw": {"x": 576.0, "y": 1522.0}}, "position": {"x": 581.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1195, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121669, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1526.0}, "se": {"x": 576.0, "y": 1526.0}, "sw": {"x": 586.0, "y": 1536.0}, "nw": {"x": 576.0, "y": 1536.0}}, "position": {"x": 581.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1194, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121683, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1470.0}, "se": {"x": 562.0, "y": 1470.0}, "sw": {"x": 572.0, "y": 1480.0}, "nw": {"x": 562.0, "y": 1480.0}}, "position": {"x": 567.0, "y": 1475.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121684, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1484.0}, "se": {"x": 562.0, "y": 1484.0}, "sw": {"x": 572.0, "y": 1494.0}, "nw": {"x": 562.0, "y": 1494.0}}, "position": {"x": 567.0, "y": 1489.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121685, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1498.0}, "se": {"x": 562.0, "y": 1498.0}, "sw": {"x": 572.0, "y": 1508.0}, "nw": {"x": 562.0, "y": 1508.0}}, "position": {"x": 567.0, "y": 1503.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121686, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1512.0}, "se": {"x": 562.0, "y": 1512.0}, "sw": {"x": 572.0, "y": 1522.0}, "nw": {"x": 562.0, "y": 1522.0}}, "position": {"x": 567.0, "y": 1517.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121687, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1526.0}, "se": {"x": 562.0, "y": 1526.0}, "sw": {"x": 572.0, "y": 1536.0}, "nw": {"x": 562.0, "y": 1536.0}}, "position": {"x": 567.0, "y": 1531.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121944, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1276.0}, "se": {"x": 604.0, "y": 1276.0}, "sw": {"x": 614.0, "y": 1286.0}, "nw": {"x": 604.0, "y": 1286.0}}, "position": {"x": 609.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1404, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121945, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1290.0}, "se": {"x": 604.0, "y": 1290.0}, "sw": {"x": 614.0, "y": 1300.0}, "nw": {"x": 604.0, "y": 1300.0}}, "position": {"x": 609.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1403, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121946, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1304.0}, "se": {"x": 604.0, "y": 1304.0}, "sw": {"x": 614.0, "y": 1314.0}, "nw": {"x": 604.0, "y": 1314.0}}, "position": {"x": 609.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1402, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121947, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1318.0}, "se": {"x": 604.0, "y": 1318.0}, "sw": {"x": 614.0, "y": 1328.0}, "nw": {"x": 604.0, "y": 1328.0}}, "position": {"x": 609.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1401, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121948, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1332.0}, "se": {"x": 604.0, "y": 1332.0}, "sw": {"x": 614.0, "y": 1342.0}, "nw": {"x": 604.0, "y": 1342.0}}, "position": {"x": 609.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1400, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121949, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1346.0}, "se": {"x": 604.0, "y": 1346.0}, "sw": {"x": 614.0, "y": 1356.0}, "nw": {"x": 604.0, "y": 1356.0}}, "position": {"x": 609.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1399, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121950, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1360.0}, "se": {"x": 604.0, "y": 1360.0}, "sw": {"x": 614.0, "y": 1370.0}, "nw": {"x": 604.0, "y": 1370.0}}, "position": {"x": 609.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1398, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121951, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1374.0}, "se": {"x": 604.0, "y": 1374.0}, "sw": {"x": 614.0, "y": 1384.0}, "nw": {"x": 604.0, "y": 1384.0}}, "position": {"x": 609.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1397, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121952, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1388.0}, "se": {"x": 604.0, "y": 1388.0}, "sw": {"x": 614.0, "y": 1398.0}, "nw": {"x": 604.0, "y": 1398.0}}, "position": {"x": 609.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1396, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121953, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1402.0}, "se": {"x": 604.0, "y": 1402.0}, "sw": {"x": 614.0, "y": 1412.0}, "nw": {"x": 604.0, "y": 1412.0}}, "position": {"x": 609.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1395, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121954, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1416.0}, "se": {"x": 604.0, "y": 1416.0}, "sw": {"x": 614.0, "y": 1426.0}, "nw": {"x": 604.0, "y": 1426.0}}, "position": {"x": 609.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1394, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121955, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1430.0}, "se": {"x": 604.0, "y": 1430.0}, "sw": {"x": 614.0, "y": 1440.0}, "nw": {"x": 604.0, "y": 1440.0}}, "position": {"x": 609.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 2\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159267, "gate": "", "blockId": null, "orderNum": 1393, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "2\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00002\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121965, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1276.0}, "se": {"x": 590.0, "y": 1276.0}, "sw": {"x": 600.0, "y": 1286.0}, "nw": {"x": 590.0, "y": 1286.0}}, "position": {"x": 595.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1297, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121966, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1290.0}, "se": {"x": 590.0, "y": 1290.0}, "sw": {"x": 600.0, "y": 1300.0}, "nw": {"x": 590.0, "y": 1300.0}}, "position": {"x": 595.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1296, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121967, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1304.0}, "se": {"x": 590.0, "y": 1304.0}, "sw": {"x": 600.0, "y": 1314.0}, "nw": {"x": 590.0, "y": 1314.0}}, "position": {"x": 595.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1295, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121968, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1318.0}, "se": {"x": 590.0, "y": 1318.0}, "sw": {"x": 600.0, "y": 1328.0}, "nw": {"x": 590.0, "y": 1328.0}}, "position": {"x": 595.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1294, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121969, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1332.0}, "se": {"x": 590.0, "y": 1332.0}, "sw": {"x": 600.0, "y": 1342.0}, "nw": {"x": 590.0, "y": 1342.0}}, "position": {"x": 595.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1293, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121970, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1346.0}, "se": {"x": 590.0, "y": 1346.0}, "sw": {"x": 600.0, "y": 1356.0}, "nw": {"x": 590.0, "y": 1356.0}}, "position": {"x": 595.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1292, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121971, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1360.0}, "se": {"x": 590.0, "y": 1360.0}, "sw": {"x": 600.0, "y": 1370.0}, "nw": {"x": 590.0, "y": 1370.0}}, "position": {"x": 595.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1291, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121972, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1374.0}, "se": {"x": 590.0, "y": 1374.0}, "sw": {"x": 600.0, "y": 1384.0}, "nw": {"x": 590.0, "y": 1384.0}}, "position": {"x": 595.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1290, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121973, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1388.0}, "se": {"x": 590.0, "y": 1388.0}, "sw": {"x": 600.0, "y": 1398.0}, "nw": {"x": 590.0, "y": 1398.0}}, "position": {"x": 595.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1289, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121974, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1402.0}, "se": {"x": 590.0, "y": 1402.0}, "sw": {"x": 600.0, "y": 1412.0}, "nw": {"x": 590.0, "y": 1412.0}}, "position": {"x": 595.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1288, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121975, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1416.0}, "se": {"x": 590.0, "y": 1416.0}, "sw": {"x": 600.0, "y": 1426.0}, "nw": {"x": 590.0, "y": 1426.0}}, "position": {"x": 595.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1287, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121976, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1430.0}, "se": {"x": 590.0, "y": 1430.0}, "sw": {"x": 600.0, "y": 1440.0}, "nw": {"x": 590.0, "y": 1440.0}}, "position": {"x": 595.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 3\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159288, "gate": "", "blockId": null, "orderNum": 1286, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "3\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00003\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121986, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1276.0}, "se": {"x": 576.0, "y": 1276.0}, "sw": {"x": 586.0, "y": 1286.0}, "nw": {"x": 576.0, "y": 1286.0}}, "position": {"x": 581.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1210, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121987, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1290.0}, "se": {"x": 576.0, "y": 1290.0}, "sw": {"x": 586.0, "y": 1300.0}, "nw": {"x": 576.0, "y": 1300.0}}, "position": {"x": 581.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1209, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121988, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1304.0}, "se": {"x": 576.0, "y": 1304.0}, "sw": {"x": 586.0, "y": 1314.0}, "nw": {"x": 576.0, "y": 1314.0}}, "position": {"x": 581.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1208, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121989, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1318.0}, "se": {"x": 576.0, "y": 1318.0}, "sw": {"x": 586.0, "y": 1328.0}, "nw": {"x": 576.0, "y": 1328.0}}, "position": {"x": 581.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1207, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121990, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1332.0}, "se": {"x": 576.0, "y": 1332.0}, "sw": {"x": 586.0, "y": 1342.0}, "nw": {"x": 576.0, "y": 1342.0}}, "position": {"x": 581.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1206, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121991, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1346.0}, "se": {"x": 576.0, "y": 1346.0}, "sw": {"x": 586.0, "y": 1356.0}, "nw": {"x": 576.0, "y": 1356.0}}, "position": {"x": 581.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1205, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121992, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1360.0}, "se": {"x": 576.0, "y": 1360.0}, "sw": {"x": 586.0, "y": 1370.0}, "nw": {"x": 576.0, "y": 1370.0}}, "position": {"x": 581.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1204, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121993, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1374.0}, "se": {"x": 576.0, "y": 1374.0}, "sw": {"x": 586.0, "y": 1384.0}, "nw": {"x": 576.0, "y": 1384.0}}, "position": {"x": 581.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1203, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121994, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1388.0}, "se": {"x": 576.0, "y": 1388.0}, "sw": {"x": 586.0, "y": 1398.0}, "nw": {"x": 576.0, "y": 1398.0}}, "position": {"x": 581.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1202, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121995, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1402.0}, "se": {"x": 576.0, "y": 1402.0}, "sw": {"x": 586.0, "y": 1412.0}, "nw": {"x": 576.0, "y": 1412.0}}, "position": {"x": 581.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1201, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121996, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1416.0}, "se": {"x": 576.0, "y": 1416.0}, "sw": {"x": 586.0, "y": 1426.0}, "nw": {"x": 576.0, "y": 1426.0}}, "position": {"x": 581.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1200, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121997, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1430.0}, "se": {"x": 576.0, "y": 1430.0}, "sw": {"x": 586.0, "y": 1440.0}, "nw": {"x": 576.0, "y": 1440.0}}, "position": {"x": 581.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 4\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49159309, "gate": "", "blockId": null, "orderNum": 1199, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "4\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00004\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122007, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1276.0}, "se": {"x": 562.0, "y": 1276.0}, "sw": {"x": 572.0, "y": 1286.0}, "nw": {"x": 562.0, "y": 1286.0}}, "position": {"x": 567.0, "y": 1281.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122008, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1290.0}, "se": {"x": 562.0, "y": 1290.0}, "sw": {"x": 572.0, "y": 1300.0}, "nw": {"x": 562.0, "y": 1300.0}}, "position": {"x": 567.0, "y": 1295.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122009, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1304.0}, "se": {"x": 562.0, "y": 1304.0}, "sw": {"x": 572.0, "y": 1314.0}, "nw": {"x": 562.0, "y": 1314.0}}, "position": {"x": 567.0, "y": 1309.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122010, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1318.0}, "se": {"x": 562.0, "y": 1318.0}, "sw": {"x": 572.0, "y": 1328.0}, "nw": {"x": 562.0, "y": 1328.0}}, "position": {"x": 567.0, "y": 1323.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122011, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1332.0}, "se": {"x": 562.0, "y": 1332.0}, "sw": {"x": 572.0, "y": 1342.0}, "nw": {"x": 562.0, "y": 1342.0}}, "position": {"x": 567.0, "y": 1337.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122012, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1346.0}, "se": {"x": 562.0, "y": 1346.0}, "sw": {"x": 572.0, "y": 1356.0}, "nw": {"x": 562.0, "y": 1356.0}}, "position": {"x": 567.0, "y": 1351.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122013, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1360.0}, "se": {"x": 562.0, "y": 1360.0}, "sw": {"x": 572.0, "y": 1370.0}, "nw": {"x": 562.0, "y": 1370.0}}, "position": {"x": 567.0, "y": 1365.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122014, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1374.0}, "se": {"x": 562.0, "y": 1374.0}, "sw": {"x": 572.0, "y": 1384.0}, "nw": {"x": 562.0, "y": 1384.0}}, "position": {"x": 567.0, "y": 1379.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122015, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1388.0}, "se": {"x": 562.0, "y": 1388.0}, "sw": {"x": 572.0, "y": 1398.0}, "nw": {"x": 562.0, "y": 1398.0}}, "position": {"x": 567.0, "y": 1393.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122016, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1402.0}, "se": {"x": 562.0, "y": 1402.0}, "sw": {"x": 572.0, "y": 1412.0}, "nw": {"x": 562.0, "y": 1412.0}}, "position": {"x": 567.0, "y": 1407.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122017, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1416.0}, "se": {"x": 562.0, "y": 1416.0}, "sw": {"x": 572.0, "y": 1426.0}, "nw": {"x": 562.0, "y": 1426.0}}, "position": {"x": 567.0, "y": 1421.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537122018, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1430.0}, "se": {"x": 562.0, "y": 1430.0}, "sw": {"x": 572.0, "y": 1440.0}, "nw": {"x": 562.0, "y": 1440.0}}, "position": {"x": 567.0, "y": 1435.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 K\uad6c\uc5ed 5\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "K\uad6c\uc5ed", "5\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35K\uad6c\uc5ed00005\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}], "4:3": [{"logicalSeatId": 1537123151, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 776.0}, "se": {"x": 1031.0, "y": 786.0}, "sw": {"x": 1041.0, "y": 776.0}, "nw": {"x": 1041.0, "y": 786.0}}, "position": {"x": 1036.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123152, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 776.0}, "se": {"x": 1045.0, "y": 786.0}, "sw": {"x": 1055.0, "y": 776.0}, "nw": {"x": 1055.0, "y": 786.0}}, "position": {"x": 1050.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123153, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 776.0}, "se": {"x": 1059.0, "y": 786.0}, "sw": {"x": 1069.0, "y": 776.0}, "nw": {"x": 1069.0, "y": 786.0}}, "position": {"x": 1064.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123154, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 776.0}, "se": {"x": 1073.0, "y": 786.0}, "sw": {"x": 1083.0, "y": 776.0}, "nw": {"x": 1083.0, "y": 786.0}}, "position": {"x": 1078.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123155, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 776.0}, "se": {"x": 1087.0, "y": 786.0}, "sw": {"x": 1097.0, "y": 776.0}, "nw": {"x": 1097.0, "y": 786.0}}, "position": {"x": 1092.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123156, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 776.0}, "se": {"x": 1101.0, "y": 786.0}, "sw": {"x": 1111.0, "y": 776.0}, "nw": {"x": 1111.0, "y": 786.0}}, "position": {"x": 1106.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123157, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 776.0}, "se": {"x": 1115.0, "y": 786.0}, "sw": {"x": 1125.0, "y": 776.0}, "nw": {"x": 1125.0, "y": 786.0}}, "position": {"x": 1120.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123158, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 776.0}, "se": {"x": 1129.0, "y": 786.0}, "sw": {"x": 1139.0, "y": 776.0}, "nw": {"x": 1139.0, "y": 786.0}}, "position": {"x": 1134.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123159, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 776.0}, "se": {"x": 1143.0, "y": 786.0}, "sw": {"x": 1153.0, "y": 776.0}, "nw": {"x": 1153.0, "y": 786.0}}, "position": {"x": 1148.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123160, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 776.0}, "se": {"x": 1157.0, "y": 786.0}, "sw": {"x": 1167.0, "y": 776.0}, "nw": {"x": 1167.0, "y": 786.0}}, "position": {"x": 1162.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123161, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 790.0}, "se": {"x": 1031.0, "y": 800.0}, "sw": {"x": 1041.0, "y": 790.0}, "nw": {"x": 1041.0, "y": 800.0}}, "position": {"x": 1036.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123162, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 790.0}, "se": {"x": 1045.0, "y": 800.0}, "sw": {"x": 1055.0, "y": 790.0}, "nw": {"x": 1055.0, "y": 800.0}}, "position": {"x": 1050.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123163, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 790.0}, "se": {"x": 1059.0, "y": 800.0}, "sw": {"x": 1069.0, "y": 790.0}, "nw": {"x": 1069.0, "y": 800.0}}, "position": {"x": 1064.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123164, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 790.0}, "se": {"x": 1073.0, "y": 800.0}, "sw": {"x": 1083.0, "y": 790.0}, "nw": {"x": 1083.0, "y": 800.0}}, "position": {"x": 1078.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123165, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 790.0}, "se": {"x": 1087.0, "y": 800.0}, "sw": {"x": 1097.0, "y": 790.0}, "nw": {"x": 1097.0, "y": 800.0}}, "position": {"x": 1092.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123166, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 790.0}, "se": {"x": 1101.0, "y": 800.0}, "sw": {"x": 1111.0, "y": 790.0}, "nw": {"x": 1111.0, "y": 800.0}}, "position": {"x": 1106.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123167, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 790.0}, "se": {"x": 1115.0, "y": 800.0}, "sw": {"x": 1125.0, "y": 790.0}, "nw": {"x": 1125.0, "y": 800.0}}, "position": {"x": 1120.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123168, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 790.0}, "se": {"x": 1129.0, "y": 800.0}, "sw": {"x": 1139.0, "y": 790.0}, "nw": {"x": 1139.0, "y": 800.0}}, "position": {"x": 1134.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123169, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 790.0}, "se": {"x": 1143.0, "y": 800.0}, "sw": {"x": 1153.0, "y": 790.0}, "nw": {"x": 1153.0, "y": 800.0}}, "position": {"x": 1148.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123170, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 790.0}, "se": {"x": 1157.0, "y": 800.0}, "sw": {"x": 1167.0, "y": 790.0}, "nw": {"x": 1167.0, "y": 800.0}}, "position": {"x": 1162.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123171, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 804.0}, "se": {"x": 1031.0, "y": 814.0}, "sw": {"x": 1041.0, "y": 804.0}, "nw": {"x": 1041.0, "y": 814.0}}, "position": {"x": 1036.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123172, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 804.0}, "se": {"x": 1045.0, "y": 814.0}, "sw": {"x": 1055.0, "y": 804.0}, "nw": {"x": 1055.0, "y": 814.0}}, "position": {"x": 1050.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123173, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 804.0}, "se": {"x": 1059.0, "y": 814.0}, "sw": {"x": 1069.0, "y": 804.0}, "nw": {"x": 1069.0, "y": 814.0}}, "position": {"x": 1064.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123174, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 804.0}, "se": {"x": 1073.0, "y": 814.0}, "sw": {"x": 1083.0, "y": 804.0}, "nw": {"x": 1083.0, "y": 814.0}}, "position": {"x": 1078.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123175, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 804.0}, "se": {"x": 1087.0, "y": 814.0}, "sw": {"x": 1097.0, "y": 804.0}, "nw": {"x": 1097.0, "y": 814.0}}, "position": {"x": 1092.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123176, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 804.0}, "se": {"x": 1101.0, "y": 814.0}, "sw": {"x": 1111.0, "y": 804.0}, "nw": {"x": 1111.0, "y": 814.0}}, "position": {"x": 1106.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123177, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 804.0}, "se": {"x": 1115.0, "y": 814.0}, "sw": {"x": 1125.0, "y": 804.0}, "nw": {"x": 1125.0, "y": 814.0}}, "position": {"x": 1120.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123178, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 804.0}, "se": {"x": 1129.0, "y": 814.0}, "sw": {"x": 1139.0, "y": 804.0}, "nw": {"x": 1139.0, "y": 814.0}}, "position": {"x": 1134.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123179, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 804.0}, "se": {"x": 1143.0, "y": 814.0}, "sw": {"x": 1153.0, "y": 804.0}, "nw": {"x": 1153.0, "y": 814.0}}, "position": {"x": 1148.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123180, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 804.0}, "se": {"x": 1157.0, "y": 814.0}, "sw": {"x": 1167.0, "y": 804.0}, "nw": {"x": 1167.0, "y": 814.0}}, "position": {"x": 1162.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123181, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 818.0}, "se": {"x": 1031.0, "y": 828.0}, "sw": {"x": 1041.0, "y": 818.0}, "nw": {"x": 1041.0, "y": 828.0}}, "position": {"x": 1036.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123182, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 818.0}, "se": {"x": 1045.0, "y": 828.0}, "sw": {"x": 1055.0, "y": 818.0}, "nw": {"x": 1055.0, "y": 828.0}}, "position": {"x": 1050.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123183, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 818.0}, "se": {"x": 1059.0, "y": 828.0}, "sw": {"x": 1069.0, "y": 818.0}, "nw": {"x": 1069.0, "y": 828.0}}, "position": {"x": 1064.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123184, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 818.0}, "se": {"x": 1073.0, "y": 828.0}, "sw": {"x": 1083.0, "y": 818.0}, "nw": {"x": 1083.0, "y": 828.0}}, "position": {"x": 1078.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123185, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 818.0}, "se": {"x": 1087.0, "y": 828.0}, "sw": {"x": 1097.0, "y": 818.0}, "nw": {"x": 1097.0, "y": 828.0}}, "position": {"x": 1092.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123186, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 818.0}, "se": {"x": 1101.0, "y": 828.0}, "sw": {"x": 1111.0, "y": 818.0}, "nw": {"x": 1111.0, "y": 828.0}}, "position": {"x": 1106.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123187, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 818.0}, "se": {"x": 1115.0, "y": 828.0}, "sw": {"x": 1125.0, "y": 818.0}, "nw": {"x": 1125.0, "y": 828.0}}, "position": {"x": 1120.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123188, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 818.0}, "se": {"x": 1129.0, "y": 828.0}, "sw": {"x": 1139.0, "y": 818.0}, "nw": {"x": 1139.0, "y": 828.0}}, "position": {"x": 1134.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123189, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 818.0}, "se": {"x": 1143.0, "y": 828.0}, "sw": {"x": 1153.0, "y": 818.0}, "nw": {"x": 1153.0, "y": 828.0}}, "position": {"x": 1148.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123190, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 818.0}, "se": {"x": 1157.0, "y": 828.0}, "sw": {"x": 1167.0, "y": 818.0}, "nw": {"x": 1167.0, "y": 828.0}}, "position": {"x": 1162.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123191, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 832.0}, "se": {"x": 1031.0, "y": 842.0}, "sw": {"x": 1041.0, "y": 832.0}, "nw": {"x": 1041.0, "y": 842.0}}, "position": {"x": 1036.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123192, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 832.0}, "se": {"x": 1045.0, "y": 842.0}, "sw": {"x": 1055.0, "y": 832.0}, "nw": {"x": 1055.0, "y": 842.0}}, "position": {"x": 1050.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123193, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 832.0}, "se": {"x": 1059.0, "y": 842.0}, "sw": {"x": 1069.0, "y": 832.0}, "nw": {"x": 1069.0, "y": 842.0}}, "position": {"x": 1064.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123194, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 832.0}, "se": {"x": 1073.0, "y": 842.0}, "sw": {"x": 1083.0, "y": 832.0}, "nw": {"x": 1083.0, "y": 842.0}}, "position": {"x": 1078.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123195, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 832.0}, "se": {"x": 1087.0, "y": 842.0}, "sw": {"x": 1097.0, "y": 832.0}, "nw": {"x": 1097.0, "y": 842.0}}, "position": {"x": 1092.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123196, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 832.0}, "se": {"x": 1101.0, "y": 842.0}, "sw": {"x": 1111.0, "y": 832.0}, "nw": {"x": 1111.0, "y": 842.0}}, "position": {"x": 1106.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123197, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 832.0}, "se": {"x": 1115.0, "y": 842.0}, "sw": {"x": 1125.0, "y": 832.0}, "nw": {"x": 1125.0, "y": 842.0}}, "position": {"x": 1120.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123198, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 832.0}, "se": {"x": 1129.0, "y": 842.0}, "sw": {"x": 1139.0, "y": 832.0}, "nw": {"x": 1139.0, "y": 842.0}}, "position": {"x": 1134.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123199, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 832.0}, "se": {"x": 1143.0, "y": 842.0}, "sw": {"x": 1153.0, "y": 832.0}, "nw": {"x": 1153.0, "y": 842.0}}, "position": {"x": 1148.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123200, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 832.0}, "se": {"x": 1157.0, "y": 842.0}, "sw": {"x": 1167.0, "y": 832.0}, "nw": {"x": 1167.0, "y": 842.0}}, "position": {"x": 1162.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123201, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 873.0}, "se": {"x": 1031.0, "y": 883.0}, "sw": {"x": 1041.0, "y": 873.0}, "nw": {"x": 1041.0, "y": 883.0}}, "position": {"x": 1036.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123202, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 873.0}, "se": {"x": 1045.0, "y": 883.0}, "sw": {"x": 1055.0, "y": 873.0}, "nw": {"x": 1055.0, "y": 883.0}}, "position": {"x": 1050.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123203, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 873.0}, "se": {"x": 1059.0, "y": 883.0}, "sw": {"x": 1069.0, "y": 873.0}, "nw": {"x": 1069.0, "y": 883.0}}, "position": {"x": 1064.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123204, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 873.0}, "se": {"x": 1073.0, "y": 883.0}, "sw": {"x": 1083.0, "y": 873.0}, "nw": {"x": 1083.0, "y": 883.0}}, "position": {"x": 1078.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123205, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 873.0}, "se": {"x": 1087.0, "y": 883.0}, "sw": {"x": 1097.0, "y": 873.0}, "nw": {"x": 1097.0, "y": 883.0}}, "position": {"x": 1092.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123206, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 873.0}, "se": {"x": 1101.0, "y": 883.0}, "sw": {"x": 1111.0, "y": 873.0}, "nw": {"x": 1111.0, "y": 883.0}}, "position": {"x": 1106.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123207, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 873.0}, "se": {"x": 1115.0, "y": 883.0}, "sw": {"x": 1125.0, "y": 873.0}, "nw": {"x": 1125.0, "y": 883.0}}, "position": {"x": 1120.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123208, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 873.0}, "se": {"x": 1129.0, "y": 883.0}, "sw": {"x": 1139.0, "y": 873.0}, "nw": {"x": 1139.0, "y": 883.0}}, "position": {"x": 1134.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123209, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 873.0}, "se": {"x": 1143.0, "y": 883.0}, "sw": {"x": 1153.0, "y": 873.0}, "nw": {"x": 1153.0, "y": 883.0}}, "position": {"x": 1148.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123210, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 873.0}, "se": {"x": 1157.0, "y": 883.0}, "sw": {"x": 1167.0, "y": 873.0}, "nw": {"x": 1167.0, "y": 883.0}}, "position": {"x": 1162.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123211, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 887.0}, "se": {"x": 1031.0, "y": 897.0}, "sw": {"x": 1041.0, "y": 887.0}, "nw": {"x": 1041.0, "y": 897.0}}, "position": {"x": 1036.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123212, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 887.0}, "se": {"x": 1045.0, "y": 897.0}, "sw": {"x": 1055.0, "y": 887.0}, "nw": {"x": 1055.0, "y": 897.0}}, "position": {"x": 1050.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123213, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 887.0}, "se": {"x": 1059.0, "y": 897.0}, "sw": {"x": 1069.0, "y": 887.0}, "nw": {"x": 1069.0, "y": 897.0}}, "position": {"x": 1064.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123214, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 887.0}, "se": {"x": 1073.0, "y": 897.0}, "sw": {"x": 1083.0, "y": 887.0}, "nw": {"x": 1083.0, "y": 897.0}}, "position": {"x": 1078.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123215, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 887.0}, "se": {"x": 1087.0, "y": 897.0}, "sw": {"x": 1097.0, "y": 887.0}, "nw": {"x": 1097.0, "y": 897.0}}, "position": {"x": 1092.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123216, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 887.0}, "se": {"x": 1101.0, "y": 897.0}, "sw": {"x": 1111.0, "y": 887.0}, "nw": {"x": 1111.0, "y": 897.0}}, "position": {"x": 1106.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123217, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 887.0}, "se": {"x": 1115.0, "y": 897.0}, "sw": {"x": 1125.0, "y": 887.0}, "nw": {"x": 1125.0, "y": 897.0}}, "position": {"x": 1120.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123218, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 887.0}, "se": {"x": 1129.0, "y": 897.0}, "sw": {"x": 1139.0, "y": 887.0}, "nw": {"x": 1139.0, "y": 897.0}}, "position": {"x": 1134.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123219, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 887.0}, "se": {"x": 1143.0, "y": 897.0}, "sw": {"x": 1153.0, "y": 887.0}, "nw": {"x": 1153.0, "y": 897.0}}, "position": {"x": 1148.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123220, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 887.0}, "se": {"x": 1157.0, "y": 897.0}, "sw": {"x": 1167.0, "y": 887.0}, "nw": {"x": 1167.0, "y": 897.0}}, "position": {"x": 1162.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123221, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 901.0}, "se": {"x": 1031.0, "y": 911.0}, "sw": {"x": 1041.0, "y": 901.0}, "nw": {"x": 1041.0, "y": 911.0}}, "position": {"x": 1036.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123222, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 901.0}, "se": {"x": 1045.0, "y": 911.0}, "sw": {"x": 1055.0, "y": 901.0}, "nw": {"x": 1055.0, "y": 911.0}}, "position": {"x": 1050.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123223, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 901.0}, "se": {"x": 1059.0, "y": 911.0}, "sw": {"x": 1069.0, "y": 901.0}, "nw": {"x": 1069.0, "y": 911.0}}, "position": {"x": 1064.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123224, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 901.0}, "se": {"x": 1073.0, "y": 911.0}, "sw": {"x": 1083.0, "y": 901.0}, "nw": {"x": 1083.0, "y": 911.0}}, "position": {"x": 1078.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123225, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 901.0}, "se": {"x": 1087.0, "y": 911.0}, "sw": {"x": 1097.0, "y": 901.0}, "nw": {"x": 1097.0, "y": 911.0}}, "position": {"x": 1092.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123226, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 901.0}, "se": {"x": 1101.0, "y": 911.0}, "sw": {"x": 1111.0, "y": 901.0}, "nw": {"x": 1111.0, "y": 911.0}}, "position": {"x": 1106.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123227, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 901.0}, "se": {"x": 1115.0, "y": 911.0}, "sw": {"x": 1125.0, "y": 901.0}, "nw": {"x": 1125.0, "y": 911.0}}, "position": {"x": 1120.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123228, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 901.0}, "se": {"x": 1129.0, "y": 911.0}, "sw": {"x": 1139.0, "y": 901.0}, "nw": {"x": 1139.0, "y": 911.0}}, "position": {"x": 1134.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123229, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 901.0}, "se": {"x": 1143.0, "y": 911.0}, "sw": {"x": 1153.0, "y": 901.0}, "nw": {"x": 1153.0, "y": 911.0}}, "position": {"x": 1148.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123230, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 901.0}, "se": {"x": 1157.0, "y": 911.0}, "sw": {"x": 1167.0, "y": 901.0}, "nw": {"x": 1167.0, "y": 911.0}}, "position": {"x": 1162.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123231, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 915.0}, "se": {"x": 1031.0, "y": 925.0}, "sw": {"x": 1041.0, "y": 915.0}, "nw": {"x": 1041.0, "y": 925.0}}, "position": {"x": 1036.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123232, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 915.0}, "se": {"x": 1045.0, "y": 925.0}, "sw": {"x": 1055.0, "y": 915.0}, "nw": {"x": 1055.0, "y": 925.0}}, "position": {"x": 1050.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123233, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 915.0}, "se": {"x": 1059.0, "y": 925.0}, "sw": {"x": 1069.0, "y": 915.0}, "nw": {"x": 1069.0, "y": 925.0}}, "position": {"x": 1064.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123234, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 915.0}, "se": {"x": 1073.0, "y": 925.0}, "sw": {"x": 1083.0, "y": 915.0}, "nw": {"x": 1083.0, "y": 925.0}}, "position": {"x": 1078.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123235, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 915.0}, "se": {"x": 1087.0, "y": 925.0}, "sw": {"x": 1097.0, "y": 915.0}, "nw": {"x": 1097.0, "y": 925.0}}, "position": {"x": 1092.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123236, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 915.0}, "se": {"x": 1101.0, "y": 925.0}, "sw": {"x": 1111.0, "y": 915.0}, "nw": {"x": 1111.0, "y": 925.0}}, "position": {"x": 1106.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123237, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 915.0}, "se": {"x": 1115.0, "y": 925.0}, "sw": {"x": 1125.0, "y": 915.0}, "nw": {"x": 1125.0, "y": 925.0}}, "position": {"x": 1120.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123238, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 915.0}, "se": {"x": 1129.0, "y": 925.0}, "sw": {"x": 1139.0, "y": 915.0}, "nw": {"x": 1139.0, "y": 925.0}}, "position": {"x": 1134.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123239, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 915.0}, "se": {"x": 1143.0, "y": 925.0}, "sw": {"x": 1153.0, "y": 915.0}, "nw": {"x": 1153.0, "y": 925.0}}, "position": {"x": 1148.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123240, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 915.0}, "se": {"x": 1157.0, "y": 925.0}, "sw": {"x": 1167.0, "y": 915.0}, "nw": {"x": 1167.0, "y": 925.0}}, "position": {"x": 1162.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123241, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 929.0}, "se": {"x": 1031.0, "y": 939.0}, "sw": {"x": 1041.0, "y": 929.0}, "nw": {"x": 1041.0, "y": 939.0}}, "position": {"x": 1036.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123242, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 929.0}, "se": {"x": 1045.0, "y": 939.0}, "sw": {"x": 1055.0, "y": 929.0}, "nw": {"x": 1055.0, "y": 939.0}}, "position": {"x": 1050.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123243, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 929.0}, "se": {"x": 1059.0, "y": 939.0}, "sw": {"x": 1069.0, "y": 929.0}, "nw": {"x": 1069.0, "y": 939.0}}, "position": {"x": 1064.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123244, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 929.0}, "se": {"x": 1073.0, "y": 939.0}, "sw": {"x": 1083.0, "y": 929.0}, "nw": {"x": 1083.0, "y": 939.0}}, "position": {"x": 1078.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123245, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 929.0}, "se": {"x": 1087.0, "y": 939.0}, "sw": {"x": 1097.0, "y": 929.0}, "nw": {"x": 1097.0, "y": 939.0}}, "position": {"x": 1092.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123246, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 929.0}, "se": {"x": 1101.0, "y": 939.0}, "sw": {"x": 1111.0, "y": 929.0}, "nw": {"x": 1111.0, "y": 939.0}}, "position": {"x": 1106.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123247, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 929.0}, "se": {"x": 1115.0, "y": 939.0}, "sw": {"x": 1125.0, "y": 929.0}, "nw": {"x": 1125.0, "y": 939.0}}, "position": {"x": 1120.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123248, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 929.0}, "se": {"x": 1129.0, "y": 939.0}, "sw": {"x": 1139.0, "y": 929.0}, "nw": {"x": 1139.0, "y": 939.0}}, "position": {"x": 1134.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123249, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 929.0}, "se": {"x": 1143.0, "y": 939.0}, "sw": {"x": 1153.0, "y": 929.0}, "nw": {"x": 1153.0, "y": 939.0}}, "position": {"x": 1148.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123250, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 929.0}, "se": {"x": 1157.0, "y": 939.0}, "sw": {"x": 1167.0, "y": 929.0}, "nw": {"x": 1167.0, "y": 939.0}}, "position": {"x": 1162.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123251, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 943.0}, "se": {"x": 1031.0, "y": 953.0}, "sw": {"x": 1041.0, "y": 943.0}, "nw": {"x": 1041.0, "y": 953.0}}, "position": {"x": 1036.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123252, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 943.0}, "se": {"x": 1045.0, "y": 953.0}, "sw": {"x": 1055.0, "y": 943.0}, "nw": {"x": 1055.0, "y": 953.0}}, "position": {"x": 1050.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123253, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 943.0}, "se": {"x": 1059.0, "y": 953.0}, "sw": {"x": 1069.0, "y": 943.0}, "nw": {"x": 1069.0, "y": 953.0}}, "position": {"x": 1064.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123254, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 943.0}, "se": {"x": 1073.0, "y": 953.0}, "sw": {"x": 1083.0, "y": 943.0}, "nw": {"x": 1083.0, "y": 953.0}}, "position": {"x": 1078.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123255, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 943.0}, "se": {"x": 1087.0, "y": 953.0}, "sw": {"x": 1097.0, "y": 943.0}, "nw": {"x": 1097.0, "y": 953.0}}, "position": {"x": 1092.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123256, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 943.0}, "se": {"x": 1101.0, "y": 953.0}, "sw": {"x": 1111.0, "y": 943.0}, "nw": {"x": 1111.0, "y": 953.0}}, "position": {"x": 1106.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123257, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 943.0}, "se": {"x": 1115.0, "y": 953.0}, "sw": {"x": 1125.0, "y": 943.0}, "nw": {"x": 1125.0, "y": 953.0}}, "position": {"x": 1120.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123258, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 943.0}, "se": {"x": 1129.0, "y": 953.0}, "sw": {"x": 1139.0, "y": 943.0}, "nw": {"x": 1139.0, "y": 953.0}}, "position": {"x": 1134.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123259, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 943.0}, "se": {"x": 1143.0, "y": 953.0}, "sw": {"x": 1153.0, "y": 943.0}, "nw": {"x": 1153.0, "y": 953.0}}, "position": {"x": 1148.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123260, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 943.0}, "se": {"x": 1157.0, "y": 953.0}, "sw": {"x": 1167.0, "y": 943.0}, "nw": {"x": 1167.0, "y": 953.0}}, "position": {"x": 1162.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123261, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 957.0}, "se": {"x": 1031.0, "y": 967.0}, "sw": {"x": 1041.0, "y": 957.0}, "nw": {"x": 1041.0, "y": 967.0}}, "position": {"x": 1036.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123262, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 957.0}, "se": {"x": 1045.0, "y": 967.0}, "sw": {"x": 1055.0, "y": 957.0}, "nw": {"x": 1055.0, "y": 967.0}}, "position": {"x": 1050.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123263, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 957.0}, "se": {"x": 1059.0, "y": 967.0}, "sw": {"x": 1069.0, "y": 957.0}, "nw": {"x": 1069.0, "y": 967.0}}, "position": {"x": 1064.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123264, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 957.0}, "se": {"x": 1073.0, "y": 967.0}, "sw": {"x": 1083.0, "y": 957.0}, "nw": {"x": 1083.0, "y": 967.0}}, "position": {"x": 1078.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123265, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 957.0}, "se": {"x": 1087.0, "y": 967.0}, "sw": {"x": 1097.0, "y": 957.0}, "nw": {"x": 1097.0, "y": 967.0}}, "position": {"x": 1092.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123266, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 957.0}, "se": {"x": 1101.0, "y": 967.0}, "sw": {"x": 1111.0, "y": 957.0}, "nw": {"x": 1111.0, "y": 967.0}}, "position": {"x": 1106.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123267, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 957.0}, "se": {"x": 1115.0, "y": 967.0}, "sw": {"x": 1125.0, "y": 957.0}, "nw": {"x": 1125.0, "y": 967.0}}, "position": {"x": 1120.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123268, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 957.0}, "se": {"x": 1129.0, "y": 967.0}, "sw": {"x": 1139.0, "y": 957.0}, "nw": {"x": 1139.0, "y": 967.0}}, "position": {"x": 1134.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123269, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 957.0}, "se": {"x": 1143.0, "y": 967.0}, "sw": {"x": 1153.0, "y": 957.0}, "nw": {"x": 1153.0, "y": 967.0}}, "position": {"x": 1148.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123270, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 957.0}, "se": {"x": 1157.0, "y": 967.0}, "sw": {"x": 1167.0, "y": 957.0}, "nw": {"x": 1167.0, "y": 967.0}}, "position": {"x": 1162.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123271, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 971.0}, "se": {"x": 1031.0, "y": 981.0}, "sw": {"x": 1041.0, "y": 971.0}, "nw": {"x": 1041.0, "y": 981.0}}, "position": {"x": 1036.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123272, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 971.0}, "se": {"x": 1045.0, "y": 981.0}, "sw": {"x": 1055.0, "y": 971.0}, "nw": {"x": 1055.0, "y": 981.0}}, "position": {"x": 1050.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123273, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 971.0}, "se": {"x": 1059.0, "y": 981.0}, "sw": {"x": 1069.0, "y": 971.0}, "nw": {"x": 1069.0, "y": 981.0}}, "position": {"x": 1064.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123274, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 971.0}, "se": {"x": 1073.0, "y": 981.0}, "sw": {"x": 1083.0, "y": 971.0}, "nw": {"x": 1083.0, "y": 981.0}}, "position": {"x": 1078.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123275, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 971.0}, "se": {"x": 1087.0, "y": 981.0}, "sw": {"x": 1097.0, "y": 971.0}, "nw": {"x": 1097.0, "y": 981.0}}, "position": {"x": 1092.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123276, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 971.0}, "se": {"x": 1101.0, "y": 981.0}, "sw": {"x": 1111.0, "y": 971.0}, "nw": {"x": 1111.0, "y": 981.0}}, "position": {"x": 1106.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123277, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 971.0}, "se": {"x": 1115.0, "y": 981.0}, "sw": {"x": 1125.0, "y": 971.0}, "nw": {"x": 1125.0, "y": 981.0}}, "position": {"x": 1120.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123278, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 971.0}, "se": {"x": 1129.0, "y": 981.0}, "sw": {"x": 1139.0, "y": 971.0}, "nw": {"x": 1139.0, "y": 981.0}}, "position": {"x": 1134.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123279, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 971.0}, "se": {"x": 1143.0, "y": 981.0}, "sw": {"x": 1153.0, "y": 971.0}, "nw": {"x": 1153.0, "y": 981.0}}, "position": {"x": 1148.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123280, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 971.0}, "se": {"x": 1157.0, "y": 981.0}, "sw": {"x": 1167.0, "y": 971.0}, "nw": {"x": 1167.0, "y": 981.0}}, "position": {"x": 1162.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 2\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 2\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00002\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123311, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 776.0}, "se": {"x": 1253.0, "y": 786.0}, "sw": {"x": 1263.0, "y": 776.0}, "nw": {"x": 1263.0, "y": 786.0}}, "position": {"x": 1258.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123312, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 776.0}, "se": {"x": 1267.0, "y": 786.0}, "sw": {"x": 1277.0, "y": 776.0}, "nw": {"x": 1277.0, "y": 786.0}}, "position": {"x": 1272.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123321, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 790.0}, "se": {"x": 1253.0, "y": 800.0}, "sw": {"x": 1263.0, "y": 790.0}, "nw": {"x": 1263.0, "y": 800.0}}, "position": {"x": 1258.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123322, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 790.0}, "se": {"x": 1267.0, "y": 800.0}, "sw": {"x": 1277.0, "y": 790.0}, "nw": {"x": 1277.0, "y": 800.0}}, "position": {"x": 1272.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123331, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 804.0}, "se": {"x": 1253.0, "y": 814.0}, "sw": {"x": 1263.0, "y": 804.0}, "nw": {"x": 1263.0, "y": 814.0}}, "position": {"x": 1258.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123332, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 804.0}, "se": {"x": 1267.0, "y": 814.0}, "sw": {"x": 1277.0, "y": 804.0}, "nw": {"x": 1277.0, "y": 814.0}}, "position": {"x": 1272.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123341, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 818.0}, "se": {"x": 1253.0, "y": 828.0}, "sw": {"x": 1263.0, "y": 818.0}, "nw": {"x": 1263.0, "y": 828.0}}, "position": {"x": 1258.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123342, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 818.0}, "se": {"x": 1267.0, "y": 828.0}, "sw": {"x": 1277.0, "y": 818.0}, "nw": {"x": 1277.0, "y": 828.0}}, "position": {"x": 1272.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123351, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 832.0}, "se": {"x": 1253.0, "y": 842.0}, "sw": {"x": 1263.0, "y": 832.0}, "nw": {"x": 1263.0, "y": 842.0}}, "position": {"x": 1258.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123352, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 832.0}, "se": {"x": 1267.0, "y": 842.0}, "sw": {"x": 1277.0, "y": 832.0}, "nw": {"x": 1277.0, "y": 842.0}}, "position": {"x": 1272.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123361, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 873.0}, "se": {"x": 1253.0, "y": 883.0}, "sw": {"x": 1263.0, "y": 873.0}, "nw": {"x": 1263.0, "y": 883.0}}, "position": {"x": 1258.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123362, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 873.0}, "se": {"x": 1267.0, "y": 883.0}, "sw": {"x": 1277.0, "y": 873.0}, "nw": {"x": 1277.0, "y": 883.0}}, "position": {"x": 1272.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123371, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 887.0}, "se": {"x": 1253.0, "y": 897.0}, "sw": {"x": 1263.0, "y": 887.0}, "nw": {"x": 1263.0, "y": 897.0}}, "position": {"x": 1258.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123372, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 887.0}, "se": {"x": 1267.0, "y": 897.0}, "sw": {"x": 1277.0, "y": 887.0}, "nw": {"x": 1277.0, "y": 897.0}}, "position": {"x": 1272.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123381, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 901.0}, "se": {"x": 1253.0, "y": 911.0}, "sw": {"x": 1263.0, "y": 901.0}, "nw": {"x": 1263.0, "y": 911.0}}, "position": {"x": 1258.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123382, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 901.0}, "se": {"x": 1267.0, "y": 911.0}, "sw": {"x": 1277.0, "y": 901.0}, "nw": {"x": 1277.0, "y": 911.0}}, "position": {"x": 1272.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123391, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 915.0}, "se": {"x": 1253.0, "y": 925.0}, "sw": {"x": 1263.0, "y": 915.0}, "nw": {"x": 1263.0, "y": 925.0}}, "position": {"x": 1258.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123392, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 915.0}, "se": {"x": 1267.0, "y": 925.0}, "sw": {"x": 1277.0, "y": 915.0}, "nw": {"x": 1277.0, "y": 925.0}}, "position": {"x": 1272.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123401, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 929.0}, "se": {"x": 1253.0, "y": 939.0}, "sw": {"x": 1263.0, "y": 929.0}, "nw": {"x": 1263.0, "y": 939.0}}, "position": {"x": 1258.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123402, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 929.0}, "se": {"x": 1267.0, "y": 939.0}, "sw": {"x": 1277.0, "y": 929.0}, "nw": {"x": 1277.0, "y": 939.0}}, "position": {"x": 1272.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123411, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 943.0}, "se": {"x": 1253.0, "y": 953.0}, "sw": {"x": 1263.0, "y": 943.0}, "nw": {"x": 1263.0, "y": 953.0}}, "position": {"x": 1258.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123412, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 943.0}, "se": {"x": 1267.0, "y": 953.0}, "sw": {"x": 1277.0, "y": 943.0}, "nw": {"x": 1277.0, "y": 953.0}}, "position": {"x": 1272.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123421, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 957.0}, "se": {"x": 1253.0, "y": 967.0}, "sw": {"x": 1263.0, "y": 957.0}, "nw": {"x": 1263.0, "y": 967.0}}, "position": {"x": 1258.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123422, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 957.0}, "se": {"x": 1267.0, "y": 967.0}, "sw": {"x": 1277.0, "y": 957.0}, "nw": {"x": 1277.0, "y": 967.0}}, "position": {"x": 1272.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123431, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 971.0}, "se": {"x": 1253.0, "y": 981.0}, "sw": {"x": 1263.0, "y": 971.0}, "nw": {"x": 1263.0, "y": 981.0}}, "position": {"x": 1258.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123432, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 971.0}, "se": {"x": 1267.0, "y": 981.0}, "sw": {"x": 1277.0, "y": 971.0}, "nw": {"x": 1277.0, "y": 981.0}}, "position": {"x": 1272.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "3:5": [{"logicalSeatId": 1537123659, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 812.0, "y": 1286.0}, "se": {"x": 812.0, "y": 1296.0}, "sw": {"x": 822.0, "y": 1286.0}, "nw": {"x": 822.0, "y": 1296.0}}, "position": {"x": 817.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123660, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 826.0, "y": 1286.0}, "se": {"x": 826.0, "y": 1296.0}, "sw": {"x": 836.0, "y": 1286.0}, "nw": {"x": 836.0, "y": 1296.0}}, "position": {"x": 831.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123661, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 840.0, "y": 1286.0}, "se": {"x": 840.0, "y": 1296.0}, "sw": {"x": 850.0, "y": 1286.0}, "nw": {"x": 850.0, "y": 1296.0}}, "position": {"x": 845.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123662, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 854.0, "y": 1286.0}, "se": {"x": 854.0, "y": 1296.0}, "sw": {"x": 864.0, "y": 1286.0}, "nw": {"x": 864.0, "y": 1296.0}}, "position": {"x": 859.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123663, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 868.0, "y": 1286.0}, "se": {"x": 868.0, "y": 1296.0}, "sw": {"x": 878.0, "y": 1286.0}, "nw": {"x": 878.0, "y": 1296.0}}, "position": {"x": 873.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123664, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 882.0, "y": 1286.0}, "se": {"x": 882.0, "y": 1296.0}, "sw": {"x": 892.0, "y": 1286.0}, "nw": {"x": 892.0, "y": 1296.0}}, "position": {"x": 887.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123665, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 896.0, "y": 1286.0}, "se": {"x": 896.0, "y": 1296.0}, "sw": {"x": 906.0, "y": 1286.0}, "nw": {"x": 906.0, "y": 1296.0}}, "position": {"x": 901.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123666, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 910.0, "y": 1286.0}, "se": {"x": 910.0, "y": 1296.0}, "sw": {"x": 920.0, "y": 1286.0}, "nw": {"x": 920.0, "y": 1296.0}}, "position": {"x": 915.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123667, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 924.0, "y": 1286.0}, "se": {"x": 924.0, "y": 1296.0}, "sw": {"x": 934.0, "y": 1286.0}, "nw": {"x": 934.0, "y": 1296.0}}, "position": {"x": 929.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123668, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 938.0, "y": 1286.0}, "se": {"x": 938.0, "y": 1296.0}, "sw": {"x": 948.0, "y": 1286.0}, "nw": {"x": 948.0, "y": 1296.0}}, "position": {"x": 943.0, "y": 1291.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 1\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "1\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500001\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "5:3": [{"logicalSeatId": 1537123313, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 776.0}, "se": {"x": 1281.0, "y": 786.0}, "sw": {"x": 1291.0, "y": 776.0}, "nw": {"x": 1291.0, "y": 786.0}}, "position": {"x": 1286.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123314, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 776.0}, "se": {"x": 1295.0, "y": 786.0}, "sw": {"x": 1305.0, "y": 776.0}, "nw": {"x": 1305.0, "y": 786.0}}, "position": {"x": 1300.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123315, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 776.0}, "se": {"x": 1309.0, "y": 786.0}, "sw": {"x": 1319.0, "y": 776.0}, "nw": {"x": 1319.0, "y": 786.0}}, "position": {"x": 1314.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123316, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 776.0}, "se": {"x": 1323.0, "y": 786.0}, "sw": {"x": 1333.0, "y": 776.0}, "nw": {"x": 1333.0, "y": 786.0}}, "position": {"x": 1328.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123317, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 776.0}, "se": {"x": 1337.0, "y": 786.0}, "sw": {"x": 1347.0, "y": 776.0}, "nw": {"x": 1347.0, "y": 786.0}}, "position": {"x": 1342.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123318, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 776.0}, "se": {"x": 1351.0, "y": 786.0}, "sw": {"x": 1361.0, "y": 776.0}, "nw": {"x": 1361.0, "y": 786.0}}, "position": {"x": 1356.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123319, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 776.0}, "se": {"x": 1365.0, "y": 786.0}, "sw": {"x": 1375.0, "y": 776.0}, "nw": {"x": 1375.0, "y": 786.0}}, "position": {"x": 1370.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123320, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 776.0}, "se": {"x": 1379.0, "y": 786.0}, "sw": {"x": 1389.0, "y": 776.0}, "nw": {"x": 1389.0, "y": 786.0}}, "position": {"x": 1384.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123323, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 790.0}, "se": {"x": 1281.0, "y": 800.0}, "sw": {"x": 1291.0, "y": 790.0}, "nw": {"x": 1291.0, "y": 800.0}}, "position": {"x": 1286.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123324, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 790.0}, "se": {"x": 1295.0, "y": 800.0}, "sw": {"x": 1305.0, "y": 790.0}, "nw": {"x": 1305.0, "y": 800.0}}, "position": {"x": 1300.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123325, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 790.0}, "se": {"x": 1309.0, "y": 800.0}, "sw": {"x": 1319.0, "y": 790.0}, "nw": {"x": 1319.0, "y": 800.0}}, "position": {"x": 1314.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123326, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 790.0}, "se": {"x": 1323.0, "y": 800.0}, "sw": {"x": 1333.0, "y": 790.0}, "nw": {"x": 1333.0, "y": 800.0}}, "position": {"x": 1328.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123327, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 790.0}, "se": {"x": 1337.0, "y": 800.0}, "sw": {"x": 1347.0, "y": 790.0}, "nw": {"x": 1347.0, "y": 800.0}}, "position": {"x": 1342.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123328, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 790.0}, "se": {"x": 1351.0, "y": 800.0}, "sw": {"x": 1361.0, "y": 790.0}, "nw": {"x": 1361.0, "y": 800.0}}, "position": {"x": 1356.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123329, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 790.0}, "se": {"x": 1365.0, "y": 800.0}, "sw": {"x": 1375.0, "y": 790.0}, "nw": {"x": 1375.0, "y": 800.0}}, "position": {"x": 1370.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123330, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 790.0}, "se": {"x": 1379.0, "y": 800.0}, "sw": {"x": 1389.0, "y": 790.0}, "nw": {"x": 1389.0, "y": 800.0}}, "position": {"x": 1384.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123333, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 804.0}, "se": {"x": 1281.0, "y": 814.0}, "sw": {"x": 1291.0, "y": 804.0}, "nw": {"x": 1291.0, "y": 814.0}}, "position": {"x": 1286.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123334, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 804.0}, "se": {"x": 1295.0, "y": 814.0}, "sw": {"x": 1305.0, "y": 804.0}, "nw": {"x": 1305.0, "y": 814.0}}, "position": {"x": 1300.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123335, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 804.0}, "se": {"x": 1309.0, "y": 814.0}, "sw": {"x": 1319.0, "y": 804.0}, "nw": {"x": 1319.0, "y": 814.0}}, "position": {"x": 1314.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123336, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 804.0}, "se": {"x": 1323.0, "y": 814.0}, "sw": {"x": 1333.0, "y": 804.0}, "nw": {"x": 1333.0, "y": 814.0}}, "position": {"x": 1328.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123337, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 804.0}, "se": {"x": 1337.0, "y": 814.0}, "sw": {"x": 1347.0, "y": 804.0}, "nw": {"x": 1347.0, "y": 814.0}}, "position": {"x": 1342.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123338, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 804.0}, "se": {"x": 1351.0, "y": 814.0}, "sw": {"x": 1361.0, "y": 804.0}, "nw": {"x": 1361.0, "y": 814.0}}, "position": {"x": 1356.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123339, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 804.0}, "se": {"x": 1365.0, "y": 814.0}, "sw": {"x": 1375.0, "y": 804.0}, "nw": {"x": 1375.0, "y": 814.0}}, "position": {"x": 1370.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123340, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 804.0}, "se": {"x": 1379.0, "y": 814.0}, "sw": {"x": 1389.0, "y": 804.0}, "nw": {"x": 1389.0, "y": 814.0}}, "position": {"x": 1384.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123343, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 818.0}, "se": {"x": 1281.0, "y": 828.0}, "sw": {"x": 1291.0, "y": 818.0}, "nw": {"x": 1291.0, "y": 828.0}}, "position": {"x": 1286.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123344, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 818.0}, "se": {"x": 1295.0, "y": 828.0}, "sw": {"x": 1305.0, "y": 818.0}, "nw": {"x": 1305.0, "y": 828.0}}, "position": {"x": 1300.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123345, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 818.0}, "se": {"x": 1309.0, "y": 828.0}, "sw": {"x": 1319.0, "y": 818.0}, "nw": {"x": 1319.0, "y": 828.0}}, "position": {"x": 1314.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123346, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 818.0}, "se": {"x": 1323.0, "y": 828.0}, "sw": {"x": 1333.0, "y": 818.0}, "nw": {"x": 1333.0, "y": 828.0}}, "position": {"x": 1328.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123347, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 818.0}, "se": {"x": 1337.0, "y": 828.0}, "sw": {"x": 1347.0, "y": 818.0}, "nw": {"x": 1347.0, "y": 828.0}}, "position": {"x": 1342.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123348, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 818.0}, "se": {"x": 1351.0, "y": 828.0}, "sw": {"x": 1361.0, "y": 818.0}, "nw": {"x": 1361.0, "y": 828.0}}, "position": {"x": 1356.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123349, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 818.0}, "se": {"x": 1365.0, "y": 828.0}, "sw": {"x": 1375.0, "y": 818.0}, "nw": {"x": 1375.0, "y": 828.0}}, "position": {"x": 1370.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123350, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 818.0}, "se": {"x": 1379.0, "y": 828.0}, "sw": {"x": 1389.0, "y": 818.0}, "nw": {"x": 1389.0, "y": 828.0}}, "position": {"x": 1384.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123353, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 832.0}, "se": {"x": 1281.0, "y": 842.0}, "sw": {"x": 1291.0, "y": 832.0}, "nw": {"x": 1291.0, "y": 842.0}}, "position": {"x": 1286.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123354, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 832.0}, "se": {"x": 1295.0, "y": 842.0}, "sw": {"x": 1305.0, "y": 832.0}, "nw": {"x": 1305.0, "y": 842.0}}, "position": {"x": 1300.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123355, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 832.0}, "se": {"x": 1309.0, "y": 842.0}, "sw": {"x": 1319.0, "y": 832.0}, "nw": {"x": 1319.0, "y": 842.0}}, "position": {"x": 1314.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123356, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 832.0}, "se": {"x": 1323.0, "y": 842.0}, "sw": {"x": 1333.0, "y": 832.0}, "nw": {"x": 1333.0, "y": 842.0}}, "position": {"x": 1328.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123357, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 832.0}, "se": {"x": 1337.0, "y": 842.0}, "sw": {"x": 1347.0, "y": 832.0}, "nw": {"x": 1347.0, "y": 842.0}}, "position": {"x": 1342.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123358, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 832.0}, "se": {"x": 1351.0, "y": 842.0}, "sw": {"x": 1361.0, "y": 832.0}, "nw": {"x": 1361.0, "y": 842.0}}, "position": {"x": 1356.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123359, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 832.0}, "se": {"x": 1365.0, "y": 842.0}, "sw": {"x": 1375.0, "y": 832.0}, "nw": {"x": 1375.0, "y": 842.0}}, "position": {"x": 1370.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123360, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 832.0}, "se": {"x": 1379.0, "y": 842.0}, "sw": {"x": 1389.0, "y": 832.0}, "nw": {"x": 1389.0, "y": 842.0}}, "position": {"x": 1384.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123363, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 873.0}, "se": {"x": 1281.0, "y": 883.0}, "sw": {"x": 1291.0, "y": 873.0}, "nw": {"x": 1291.0, "y": 883.0}}, "position": {"x": 1286.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123364, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 873.0}, "se": {"x": 1295.0, "y": 883.0}, "sw": {"x": 1305.0, "y": 873.0}, "nw": {"x": 1305.0, "y": 883.0}}, "position": {"x": 1300.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123365, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 873.0}, "se": {"x": 1309.0, "y": 883.0}, "sw": {"x": 1319.0, "y": 873.0}, "nw": {"x": 1319.0, "y": 883.0}}, "position": {"x": 1314.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123366, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 873.0}, "se": {"x": 1323.0, "y": 883.0}, "sw": {"x": 1333.0, "y": 873.0}, "nw": {"x": 1333.0, "y": 883.0}}, "position": {"x": 1328.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123367, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 873.0}, "se": {"x": 1337.0, "y": 883.0}, "sw": {"x": 1347.0, "y": 873.0}, "nw": {"x": 1347.0, "y": 883.0}}, "position": {"x": 1342.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123368, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 873.0}, "se": {"x": 1351.0, "y": 883.0}, "sw": {"x": 1361.0, "y": 873.0}, "nw": {"x": 1361.0, "y": 883.0}}, "position": {"x": 1356.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123369, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 873.0}, "se": {"x": 1365.0, "y": 883.0}, "sw": {"x": 1375.0, "y": 873.0}, "nw": {"x": 1375.0, "y": 883.0}}, "position": {"x": 1370.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123370, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 873.0}, "se": {"x": 1379.0, "y": 883.0}, "sw": {"x": 1389.0, "y": 873.0}, "nw": {"x": 1389.0, "y": 883.0}}, "position": {"x": 1384.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123373, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 887.0}, "se": {"x": 1281.0, "y": 897.0}, "sw": {"x": 1291.0, "y": 887.0}, "nw": {"x": 1291.0, "y": 897.0}}, "position": {"x": 1286.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123374, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 887.0}, "se": {"x": 1295.0, "y": 897.0}, "sw": {"x": 1305.0, "y": 887.0}, "nw": {"x": 1305.0, "y": 897.0}}, "position": {"x": 1300.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123375, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 887.0}, "se": {"x": 1309.0, "y": 897.0}, "sw": {"x": 1319.0, "y": 887.0}, "nw": {"x": 1319.0, "y": 897.0}}, "position": {"x": 1314.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123376, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 887.0}, "se": {"x": 1323.0, "y": 897.0}, "sw": {"x": 1333.0, "y": 887.0}, "nw": {"x": 1333.0, "y": 897.0}}, "position": {"x": 1328.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123383, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 901.0}, "se": {"x": 1281.0, "y": 911.0}, "sw": {"x": 1291.0, "y": 901.0}, "nw": {"x": 1291.0, "y": 911.0}}, "position": {"x": 1286.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123384, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 901.0}, "se": {"x": 1295.0, "y": 911.0}, "sw": {"x": 1305.0, "y": 901.0}, "nw": {"x": 1305.0, "y": 911.0}}, "position": {"x": 1300.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123385, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 901.0}, "se": {"x": 1309.0, "y": 911.0}, "sw": {"x": 1319.0, "y": 901.0}, "nw": {"x": 1319.0, "y": 911.0}}, "position": {"x": 1314.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123386, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 901.0}, "se": {"x": 1323.0, "y": 911.0}, "sw": {"x": 1333.0, "y": 901.0}, "nw": {"x": 1333.0, "y": 911.0}}, "position": {"x": 1328.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123387, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 901.0}, "se": {"x": 1337.0, "y": 911.0}, "sw": {"x": 1347.0, "y": 901.0}, "nw": {"x": 1347.0, "y": 911.0}}, "position": {"x": 1342.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123388, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 901.0}, "se": {"x": 1351.0, "y": 911.0}, "sw": {"x": 1361.0, "y": 901.0}, "nw": {"x": 1361.0, "y": 911.0}}, "position": {"x": 1356.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123389, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 901.0}, "se": {"x": 1365.0, "y": 911.0}, "sw": {"x": 1375.0, "y": 901.0}, "nw": {"x": 1375.0, "y": 911.0}}, "position": {"x": 1370.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123390, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 901.0}, "se": {"x": 1379.0, "y": 911.0}, "sw": {"x": 1389.0, "y": 901.0}, "nw": {"x": 1389.0, "y": 911.0}}, "position": {"x": 1384.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123393, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 915.0}, "se": {"x": 1281.0, "y": 925.0}, "sw": {"x": 1291.0, "y": 915.0}, "nw": {"x": 1291.0, "y": 925.0}}, "position": {"x": 1286.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123394, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 915.0}, "se": {"x": 1295.0, "y": 925.0}, "sw": {"x": 1305.0, "y": 915.0}, "nw": {"x": 1305.0, "y": 925.0}}, "position": {"x": 1300.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123395, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 915.0}, "se": {"x": 1309.0, "y": 925.0}, "sw": {"x": 1319.0, "y": 915.0}, "nw": {"x": 1319.0, "y": 925.0}}, "position": {"x": 1314.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123396, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 915.0}, "se": {"x": 1323.0, "y": 925.0}, "sw": {"x": 1333.0, "y": 915.0}, "nw": {"x": 1333.0, "y": 925.0}}, "position": {"x": 1328.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123397, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 915.0}, "se": {"x": 1337.0, "y": 925.0}, "sw": {"x": 1347.0, "y": 915.0}, "nw": {"x": 1347.0, "y": 925.0}}, "position": {"x": 1342.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123398, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 915.0}, "se": {"x": 1351.0, "y": 925.0}, "sw": {"x": 1361.0, "y": 915.0}, "nw": {"x": 1361.0, "y": 925.0}}, "position": {"x": 1356.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123399, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 915.0}, "se": {"x": 1365.0, "y": 925.0}, "sw": {"x": 1375.0, "y": 915.0}, "nw": {"x": 1375.0, "y": 925.0}}, "position": {"x": 1370.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123400, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 915.0}, "se": {"x": 1379.0, "y": 925.0}, "sw": {"x": 1389.0, "y": 915.0}, "nw": {"x": 1389.0, "y": 925.0}}, "position": {"x": 1384.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123403, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 929.0}, "se": {"x": 1281.0, "y": 939.0}, "sw": {"x": 1291.0, "y": 929.0}, "nw": {"x": 1291.0, "y": 939.0}}, "position": {"x": 1286.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123404, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 929.0}, "se": {"x": 1295.0, "y": 939.0}, "sw": {"x": 1305.0, "y": 929.0}, "nw": {"x": 1305.0, "y": 939.0}}, "position": {"x": 1300.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123405, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 929.0}, "se": {"x": 1309.0, "y": 939.0}, "sw": {"x": 1319.0, "y": 929.0}, "nw": {"x": 1319.0, "y": 939.0}}, "position": {"x": 1314.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123406, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 929.0}, "se": {"x": 1323.0, "y": 939.0}, "sw": {"x": 1333.0, "y": 929.0}, "nw": {"x": 1333.0, "y": 939.0}}, "position": {"x": 1328.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123407, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 929.0}, "se": {"x": 1337.0, "y": 939.0}, "sw": {"x": 1347.0, "y": 929.0}, "nw": {"x": 1347.0, "y": 939.0}}, "position": {"x": 1342.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123408, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 929.0}, "se": {"x": 1351.0, "y": 939.0}, "sw": {"x": 1361.0, "y": 929.0}, "nw": {"x": 1361.0, "y": 939.0}}, "position": {"x": 1356.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123409, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 929.0}, "se": {"x": 1365.0, "y": 939.0}, "sw": {"x": 1375.0, "y": 929.0}, "nw": {"x": 1375.0, "y": 939.0}}, "position": {"x": 1370.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123410, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 929.0}, "se": {"x": 1379.0, "y": 939.0}, "sw": {"x": 1389.0, "y": 929.0}, "nw": {"x": 1389.0, "y": 939.0}}, "position": {"x": 1384.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123413, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 943.0}, "se": {"x": 1281.0, "y": 953.0}, "sw": {"x": 1291.0, "y": 943.0}, "nw": {"x": 1291.0, "y": 953.0}}, "position": {"x": 1286.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123414, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 943.0}, "se": {"x": 1295.0, "y": 953.0}, "sw": {"x": 1305.0, "y": 943.0}, "nw": {"x": 1305.0, "y": 953.0}}, "position": {"x": 1300.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123415, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 943.0}, "se": {"x": 1309.0, "y": 953.0}, "sw": {"x": 1319.0, "y": 943.0}, "nw": {"x": 1319.0, "y": 953.0}}, "position": {"x": 1314.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123416, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 943.0}, "se": {"x": 1323.0, "y": 953.0}, "sw": {"x": 1333.0, "y": 943.0}, "nw": {"x": 1333.0, "y": 953.0}}, "position": {"x": 1328.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123417, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 943.0}, "se": {"x": 1337.0, "y": 953.0}, "sw": {"x": 1347.0, "y": 943.0}, "nw": {"x": 1347.0, "y": 953.0}}, "position": {"x": 1342.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123418, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 943.0}, "se": {"x": 1351.0, "y": 953.0}, "sw": {"x": 1361.0, "y": 943.0}, "nw": {"x": 1361.0, "y": 953.0}}, "position": {"x": 1356.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123419, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 943.0}, "se": {"x": 1365.0, "y": 953.0}, "sw": {"x": 1375.0, "y": 943.0}, "nw": {"x": 1375.0, "y": 953.0}}, "position": {"x": 1370.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123420, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 943.0}, "se": {"x": 1379.0, "y": 953.0}, "sw": {"x": 1389.0, "y": 943.0}, "nw": {"x": 1389.0, "y": 953.0}}, "position": {"x": 1384.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123423, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 957.0}, "se": {"x": 1281.0, "y": 967.0}, "sw": {"x": 1291.0, "y": 957.0}, "nw": {"x": 1291.0, "y": 967.0}}, "position": {"x": 1286.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123424, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 957.0}, "se": {"x": 1295.0, "y": 967.0}, "sw": {"x": 1305.0, "y": 957.0}, "nw": {"x": 1305.0, "y": 967.0}}, "position": {"x": 1300.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123425, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 957.0}, "se": {"x": 1309.0, "y": 967.0}, "sw": {"x": 1319.0, "y": 957.0}, "nw": {"x": 1319.0, "y": 967.0}}, "position": {"x": 1314.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123426, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 957.0}, "se": {"x": 1323.0, "y": 967.0}, "sw": {"x": 1333.0, "y": 957.0}, "nw": {"x": 1333.0, "y": 967.0}}, "position": {"x": 1328.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123427, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 957.0}, "se": {"x": 1337.0, "y": 967.0}, "sw": {"x": 1347.0, "y": 957.0}, "nw": {"x": 1347.0, "y": 967.0}}, "position": {"x": 1342.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123428, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 957.0}, "se": {"x": 1351.0, "y": 967.0}, "sw": {"x": 1361.0, "y": 957.0}, "nw": {"x": 1361.0, "y": 967.0}}, "position": {"x": 1356.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123429, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 957.0}, "se": {"x": 1365.0, "y": 967.0}, "sw": {"x": 1375.0, "y": 957.0}, "nw": {"x": 1375.0, "y": 967.0}}, "position": {"x": 1370.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123430, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 957.0}, "se": {"x": 1379.0, "y": 967.0}, "sw": {"x": 1389.0, "y": 957.0}, "nw": {"x": 1389.0, "y": 967.0}}, "position": {"x": 1384.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123433, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 971.0}, "se": {"x": 1281.0, "y": 981.0}, "sw": {"x": 1291.0, "y": 971.0}, "nw": {"x": 1291.0, "y": 981.0}}, "position": {"x": 1286.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123434, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 971.0}, "se": {"x": 1295.0, "y": 981.0}, "sw": {"x": 1305.0, "y": 971.0}, "nw": {"x": 1305.0, "y": 981.0}}, "position": {"x": 1300.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123435, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 971.0}, "se": {"x": 1309.0, "y": 981.0}, "sw": {"x": 1319.0, "y": 971.0}, "nw": {"x": 1319.0, "y": 981.0}}, "position": {"x": 1314.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123436, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 971.0}, "se": {"x": 1323.0, "y": 981.0}, "sw": {"x": 1333.0, "y": 971.0}, "nw": {"x": 1333.0, "y": 981.0}}, "position": {"x": 1328.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123437, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 971.0}, "se": {"x": 1337.0, "y": 981.0}, "sw": {"x": 1347.0, "y": 971.0}, "nw": {"x": 1347.0, "y": 981.0}}, "position": {"x": 1342.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123438, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 971.0}, "se": {"x": 1351.0, "y": 981.0}, "sw": {"x": 1361.0, "y": 971.0}, "nw": {"x": 1361.0, "y": 981.0}}, "position": {"x": 1356.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123439, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 971.0}, "se": {"x": 1365.0, "y": 981.0}, "sw": {"x": 1375.0, "y": 971.0}, "nw": {"x": 1375.0, "y": 981.0}}, "position": {"x": 1370.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123440, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 971.0}, "se": {"x": 1379.0, "y": 981.0}, "sw": {"x": 1389.0, "y": 971.0}, "nw": {"x": 1389.0, "y": 981.0}}, "position": {"x": 1384.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 3\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 3\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00003\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123459, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 776.0}, "se": {"x": 1465.0, "y": 786.0}, "sw": {"x": 1475.0, "y": 776.0}, "nw": {"x": 1475.0, "y": 786.0}}, "position": {"x": 1470.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123460, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 776.0}, "se": {"x": 1479.0, "y": 786.0}, "sw": {"x": 1489.0, "y": 776.0}, "nw": {"x": 1489.0, "y": 786.0}}, "position": {"x": 1484.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123461, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 776.0}, "se": {"x": 1493.0, "y": 786.0}, "sw": {"x": 1503.0, "y": 776.0}, "nw": {"x": 1503.0, "y": 786.0}}, "position": {"x": 1498.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123462, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 776.0}, "se": {"x": 1507.0, "y": 786.0}, "sw": {"x": 1517.0, "y": 776.0}, "nw": {"x": 1517.0, "y": 786.0}}, "position": {"x": 1512.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123463, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 776.0}, "se": {"x": 1521.0, "y": 786.0}, "sw": {"x": 1531.0, "y": 776.0}, "nw": {"x": 1531.0, "y": 786.0}}, "position": {"x": 1526.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123469, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 790.0}, "se": {"x": 1465.0, "y": 800.0}, "sw": {"x": 1475.0, "y": 790.0}, "nw": {"x": 1475.0, "y": 800.0}}, "position": {"x": 1470.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123470, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 790.0}, "se": {"x": 1479.0, "y": 800.0}, "sw": {"x": 1489.0, "y": 790.0}, "nw": {"x": 1489.0, "y": 800.0}}, "position": {"x": 1484.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123471, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 790.0}, "se": {"x": 1493.0, "y": 800.0}, "sw": {"x": 1503.0, "y": 790.0}, "nw": {"x": 1503.0, "y": 800.0}}, "position": {"x": 1498.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123472, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 790.0}, "se": {"x": 1507.0, "y": 800.0}, "sw": {"x": 1517.0, "y": 790.0}, "nw": {"x": 1517.0, "y": 800.0}}, "position": {"x": 1512.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123473, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 790.0}, "se": {"x": 1521.0, "y": 800.0}, "sw": {"x": 1531.0, "y": 790.0}, "nw": {"x": 1531.0, "y": 800.0}}, "position": {"x": 1526.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123479, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 804.0}, "se": {"x": 1465.0, "y": 814.0}, "sw": {"x": 1475.0, "y": 804.0}, "nw": {"x": 1475.0, "y": 814.0}}, "position": {"x": 1470.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123480, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 804.0}, "se": {"x": 1479.0, "y": 814.0}, "sw": {"x": 1489.0, "y": 804.0}, "nw": {"x": 1489.0, "y": 814.0}}, "position": {"x": 1484.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123481, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 804.0}, "se": {"x": 1493.0, "y": 814.0}, "sw": {"x": 1503.0, "y": 804.0}, "nw": {"x": 1503.0, "y": 814.0}}, "position": {"x": 1498.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123482, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 804.0}, "se": {"x": 1507.0, "y": 814.0}, "sw": {"x": 1517.0, "y": 804.0}, "nw": {"x": 1517.0, "y": 814.0}}, "position": {"x": 1512.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123483, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 804.0}, "se": {"x": 1521.0, "y": 814.0}, "sw": {"x": 1531.0, "y": 804.0}, "nw": {"x": 1531.0, "y": 814.0}}, "position": {"x": 1526.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123489, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 818.0}, "se": {"x": 1465.0, "y": 828.0}, "sw": {"x": 1475.0, "y": 818.0}, "nw": {"x": 1475.0, "y": 828.0}}, "position": {"x": 1470.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123490, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 818.0}, "se": {"x": 1479.0, "y": 828.0}, "sw": {"x": 1489.0, "y": 818.0}, "nw": {"x": 1489.0, "y": 828.0}}, "position": {"x": 1484.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123491, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 818.0}, "se": {"x": 1493.0, "y": 828.0}, "sw": {"x": 1503.0, "y": 818.0}, "nw": {"x": 1503.0, "y": 828.0}}, "position": {"x": 1498.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123492, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 818.0}, "se": {"x": 1507.0, "y": 828.0}, "sw": {"x": 1517.0, "y": 818.0}, "nw": {"x": 1517.0, "y": 828.0}}, "position": {"x": 1512.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123493, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 818.0}, "se": {"x": 1521.0, "y": 828.0}, "sw": {"x": 1531.0, "y": 818.0}, "nw": {"x": 1531.0, "y": 828.0}}, "position": {"x": 1526.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123499, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 832.0}, "se": {"x": 1465.0, "y": 842.0}, "sw": {"x": 1475.0, "y": 832.0}, "nw": {"x": 1475.0, "y": 842.0}}, "position": {"x": 1470.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123500, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 832.0}, "se": {"x": 1479.0, "y": 842.0}, "sw": {"x": 1489.0, "y": 832.0}, "nw": {"x": 1489.0, "y": 842.0}}, "position": {"x": 1484.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123501, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 832.0}, "se": {"x": 1493.0, "y": 842.0}, "sw": {"x": 1503.0, "y": 832.0}, "nw": {"x": 1503.0, "y": 842.0}}, "position": {"x": 1498.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123502, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 832.0}, "se": {"x": 1507.0, "y": 842.0}, "sw": {"x": 1517.0, "y": 832.0}, "nw": {"x": 1517.0, "y": 842.0}}, "position": {"x": 1512.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123503, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 832.0}, "se": {"x": 1521.0, "y": 842.0}, "sw": {"x": 1531.0, "y": 832.0}, "nw": {"x": 1531.0, "y": 842.0}}, "position": {"x": 1526.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123509, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 873.0}, "se": {"x": 1465.0, "y": 883.0}, "sw": {"x": 1475.0, "y": 873.0}, "nw": {"x": 1475.0, "y": 883.0}}, "position": {"x": 1470.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123510, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 873.0}, "se": {"x": 1479.0, "y": 883.0}, "sw": {"x": 1489.0, "y": 873.0}, "nw": {"x": 1489.0, "y": 883.0}}, "position": {"x": 1484.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123511, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 873.0}, "se": {"x": 1493.0, "y": 883.0}, "sw": {"x": 1503.0, "y": 873.0}, "nw": {"x": 1503.0, "y": 883.0}}, "position": {"x": 1498.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123512, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 873.0}, "se": {"x": 1507.0, "y": 883.0}, "sw": {"x": 1517.0, "y": 873.0}, "nw": {"x": 1517.0, "y": 883.0}}, "position": {"x": 1512.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123513, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 873.0}, "se": {"x": 1521.0, "y": 883.0}, "sw": {"x": 1531.0, "y": 873.0}, "nw": {"x": 1531.0, "y": 883.0}}, "position": {"x": 1526.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123519, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 887.0}, "se": {"x": 1465.0, "y": 897.0}, "sw": {"x": 1475.0, "y": 887.0}, "nw": {"x": 1475.0, "y": 897.0}}, "position": {"x": 1470.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123520, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 887.0}, "se": {"x": 1479.0, "y": 897.0}, "sw": {"x": 1489.0, "y": 887.0}, "nw": {"x": 1489.0, "y": 897.0}}, "position": {"x": 1484.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123521, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 887.0}, "se": {"x": 1493.0, "y": 897.0}, "sw": {"x": 1503.0, "y": 887.0}, "nw": {"x": 1503.0, "y": 897.0}}, "position": {"x": 1498.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123522, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 887.0}, "se": {"x": 1507.0, "y": 897.0}, "sw": {"x": 1517.0, "y": 887.0}, "nw": {"x": 1517.0, "y": 897.0}}, "position": {"x": 1512.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123523, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 887.0}, "se": {"x": 1521.0, "y": 897.0}, "sw": {"x": 1531.0, "y": 887.0}, "nw": {"x": 1531.0, "y": 897.0}}, "position": {"x": 1526.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123529, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 901.0}, "se": {"x": 1465.0, "y": 911.0}, "sw": {"x": 1475.0, "y": 901.0}, "nw": {"x": 1475.0, "y": 911.0}}, "position": {"x": 1470.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123530, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 901.0}, "se": {"x": 1479.0, "y": 911.0}, "sw": {"x": 1489.0, "y": 901.0}, "nw": {"x": 1489.0, "y": 911.0}}, "position": {"x": 1484.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123531, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 901.0}, "se": {"x": 1493.0, "y": 911.0}, "sw": {"x": 1503.0, "y": 901.0}, "nw": {"x": 1503.0, "y": 911.0}}, "position": {"x": 1498.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123532, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 901.0}, "se": {"x": 1507.0, "y": 911.0}, "sw": {"x": 1517.0, "y": 901.0}, "nw": {"x": 1517.0, "y": 911.0}}, "position": {"x": 1512.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123533, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 901.0}, "se": {"x": 1521.0, "y": 911.0}, "sw": {"x": 1531.0, "y": 901.0}, "nw": {"x": 1531.0, "y": 911.0}}, "position": {"x": 1526.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123539, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 915.0}, "se": {"x": 1465.0, "y": 925.0}, "sw": {"x": 1475.0, "y": 915.0}, "nw": {"x": 1475.0, "y": 925.0}}, "position": {"x": 1470.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123540, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 915.0}, "se": {"x": 1479.0, "y": 925.0}, "sw": {"x": 1489.0, "y": 915.0}, "nw": {"x": 1489.0, "y": 925.0}}, "position": {"x": 1484.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123541, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 915.0}, "se": {"x": 1493.0, "y": 925.0}, "sw": {"x": 1503.0, "y": 915.0}, "nw": {"x": 1503.0, "y": 925.0}}, "position": {"x": 1498.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123542, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 915.0}, "se": {"x": 1507.0, "y": 925.0}, "sw": {"x": 1517.0, "y": 915.0}, "nw": {"x": 1517.0, "y": 925.0}}, "position": {"x": 1512.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123543, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 915.0}, "se": {"x": 1521.0, "y": 925.0}, "sw": {"x": 1531.0, "y": 915.0}, "nw": {"x": 1531.0, "y": 925.0}}, "position": {"x": 1526.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123550, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 929.0}, "se": {"x": 1479.0, "y": 939.0}, "sw": {"x": 1489.0, "y": 929.0}, "nw": {"x": 1489.0, "y": 939.0}}, "position": {"x": 1484.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123551, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 929.0}, "se": {"x": 1493.0, "y": 939.0}, "sw": {"x": 1503.0, "y": 929.0}, "nw": {"x": 1503.0, "y": 939.0}}, "position": {"x": 1498.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123552, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 929.0}, "se": {"x": 1507.0, "y": 939.0}, "sw": {"x": 1517.0, "y": 929.0}, "nw": {"x": 1517.0, "y": 939.0}}, "position": {"x": 1512.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123553, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 929.0}, "se": {"x": 1521.0, "y": 939.0}, "sw": {"x": 1531.0, "y": 929.0}, "nw": {"x": 1531.0, "y": 939.0}}, "position": {"x": 1526.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123559, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 943.0}, "se": {"x": 1465.0, "y": 953.0}, "sw": {"x": 1475.0, "y": 943.0}, "nw": {"x": 1475.0, "y": 953.0}}, "position": {"x": 1470.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123560, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 943.0}, "se": {"x": 1479.0, "y": 953.0}, "sw": {"x": 1489.0, "y": 943.0}, "nw": {"x": 1489.0, "y": 953.0}}, "position": {"x": 1484.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123561, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 943.0}, "se": {"x": 1493.0, "y": 953.0}, "sw": {"x": 1503.0, "y": 943.0}, "nw": {"x": 1503.0, "y": 953.0}}, "position": {"x": 1498.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123562, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 943.0}, "se": {"x": 1507.0, "y": 953.0}, "sw": {"x": 1517.0, "y": 943.0}, "nw": {"x": 1517.0, "y": 953.0}}, "position": {"x": 1512.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123563, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 943.0}, "se": {"x": 1521.0, "y": 953.0}, "sw": {"x": 1531.0, "y": 943.0}, "nw": {"x": 1531.0, "y": 953.0}}, "position": {"x": 1526.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123569, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 957.0}, "se": {"x": 1465.0, "y": 967.0}, "sw": {"x": 1475.0, "y": 957.0}, "nw": {"x": 1475.0, "y": 967.0}}, "position": {"x": 1470.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123570, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 957.0}, "se": {"x": 1479.0, "y": 967.0}, "sw": {"x": 1489.0, "y": 957.0}, "nw": {"x": 1489.0, "y": 967.0}}, "position": {"x": 1484.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123571, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 957.0}, "se": {"x": 1493.0, "y": 967.0}, "sw": {"x": 1503.0, "y": 957.0}, "nw": {"x": 1503.0, "y": 967.0}}, "position": {"x": 1498.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123572, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 957.0}, "se": {"x": 1507.0, "y": 967.0}, "sw": {"x": 1517.0, "y": 957.0}, "nw": {"x": 1517.0, "y": 967.0}}, "position": {"x": 1512.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123573, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 957.0}, "se": {"x": 1521.0, "y": 967.0}, "sw": {"x": 1531.0, "y": 957.0}, "nw": {"x": 1531.0, "y": 967.0}}, "position": {"x": 1526.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123579, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 971.0}, "se": {"x": 1465.0, "y": 981.0}, "sw": {"x": 1475.0, "y": 971.0}, "nw": {"x": 1475.0, "y": 981.0}}, "position": {"x": 1470.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123580, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 971.0}, "se": {"x": 1479.0, "y": 981.0}, "sw": {"x": 1489.0, "y": 971.0}, "nw": {"x": 1489.0, "y": 981.0}}, "position": {"x": 1484.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123581, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 971.0}, "se": {"x": 1493.0, "y": 981.0}, "sw": {"x": 1503.0, "y": 971.0}, "nw": {"x": 1503.0, "y": 981.0}}, "position": {"x": 1498.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123582, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 971.0}, "se": {"x": 1507.0, "y": 981.0}, "sw": {"x": 1517.0, "y": 971.0}, "nw": {"x": 1517.0, "y": 981.0}}, "position": {"x": 1512.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123583, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 971.0}, "se": {"x": 1521.0, "y": 981.0}, "sw": {"x": 1531.0, "y": 971.0}, "nw": {"x": 1531.0, "y": 981.0}}, "position": {"x": 1526.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "2:6": [{"logicalSeatId": 1537121339, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1719.0}, "se": {"x": 732.0, "y": 1729.0}, "sw": {"x": 742.0, "y": 1719.0}, "nw": {"x": 742.0, "y": 1729.0}}, "position": {"x": 737.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1607, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121340, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1719.0}, "se": {"x": 746.0, "y": 1729.0}, "sw": {"x": 756.0, "y": 1719.0}, "nw": {"x": 756.0, "y": 1729.0}}, "position": {"x": 751.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1622, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121341, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1719.0}, "se": {"x": 760.0, "y": 1729.0}, "sw": {"x": 770.0, "y": 1719.0}, "nw": {"x": 770.0, "y": 1729.0}}, "position": {"x": 765.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1638, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121349, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1733.0}, "se": {"x": 704.0, "y": 1743.0}, "sw": {"x": 714.0, "y": 1733.0}, "nw": {"x": 714.0, "y": 1743.0}}, "position": {"x": 709.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158661, "gate": "", "blockId": null, "orderNum": 1485, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121350, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1733.0}, "se": {"x": 732.0, "y": 1743.0}, "sw": {"x": 742.0, "y": 1733.0}, "nw": {"x": 742.0, "y": 1743.0}}, "position": {"x": 737.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1606, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121351, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1733.0}, "se": {"x": 746.0, "y": 1743.0}, "sw": {"x": 756.0, "y": 1733.0}, "nw": {"x": 756.0, "y": 1743.0}}, "position": {"x": 751.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1621, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121352, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1733.0}, "se": {"x": 760.0, "y": 1743.0}, "sw": {"x": 770.0, "y": 1733.0}, "nw": {"x": 770.0, "y": 1743.0}}, "position": {"x": 765.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1637, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121360, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1747.0}, "se": {"x": 676.0, "y": 1757.0}, "sw": {"x": 686.0, "y": 1747.0}, "nw": {"x": 686.0, "y": 1757.0}}, "position": {"x": 681.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158686, "gate": "", "blockId": null, "orderNum": 1269, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121361, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1747.0}, "se": {"x": 690.0, "y": 1757.0}, "sw": {"x": 700.0, "y": 1747.0}, "nw": {"x": 700.0, "y": 1757.0}}, "position": {"x": 695.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158673, "gate": "", "blockId": null, "orderNum": 1377, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121362, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1747.0}, "se": {"x": 718.0, "y": 1757.0}, "sw": {"x": 728.0, "y": 1747.0}, "nw": {"x": 728.0, "y": 1757.0}}, "position": {"x": 723.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158688, "gate": "", "blockId": null, "orderNum": 1592, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121363, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1747.0}, "se": {"x": 732.0, "y": 1757.0}, "sw": {"x": 742.0, "y": 1747.0}, "nw": {"x": 742.0, "y": 1757.0}}, "position": {"x": 737.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1605, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121364, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1747.0}, "se": {"x": 746.0, "y": 1757.0}, "sw": {"x": 756.0, "y": 1747.0}, "nw": {"x": 756.0, "y": 1757.0}}, "position": {"x": 751.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1620, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121365, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1747.0}, "se": {"x": 760.0, "y": 1757.0}, "sw": {"x": 770.0, "y": 1747.0}, "nw": {"x": 770.0, "y": 1757.0}}, "position": {"x": 765.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1636, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121373, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1761.0}, "se": {"x": 662.0, "y": 1771.0}, "sw": {"x": 672.0, "y": 1761.0}, "nw": {"x": 672.0, "y": 1771.0}}, "position": {"x": 667.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158685, "gate": "", "blockId": null, "orderNum": 1180, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121374, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1761.0}, "se": {"x": 676.0, "y": 1771.0}, "sw": {"x": 686.0, "y": 1761.0}, "nw": {"x": 686.0, "y": 1771.0}}, "position": {"x": 681.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158686, "gate": "", "blockId": null, "orderNum": 1268, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121375, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1761.0}, "se": {"x": 704.0, "y": 1771.0}, "sw": {"x": 714.0, "y": 1761.0}, "nw": {"x": 714.0, "y": 1771.0}}, "position": {"x": 709.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158687, "gate": "", "blockId": null, "orderNum": 1484, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121376, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1761.0}, "se": {"x": 718.0, "y": 1771.0}, "sw": {"x": 728.0, "y": 1761.0}, "nw": {"x": 728.0, "y": 1771.0}}, "position": {"x": 723.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158688, "gate": "", "blockId": null, "orderNum": 1591, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121377, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1761.0}, "se": {"x": 732.0, "y": 1771.0}, "sw": {"x": 742.0, "y": 1761.0}, "nw": {"x": 742.0, "y": 1771.0}}, "position": {"x": 737.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158689, "gate": "", "blockId": null, "orderNum": 1604, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121378, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1761.0}, "se": {"x": 746.0, "y": 1771.0}, "sw": {"x": 756.0, "y": 1761.0}, "nw": {"x": 756.0, "y": 1771.0}}, "position": {"x": 751.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158690, "gate": "", "blockId": null, "orderNum": 1619, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121379, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1761.0}, "se": {"x": 760.0, "y": 1771.0}, "sw": {"x": 770.0, "y": 1761.0}, "nw": {"x": 770.0, "y": 1771.0}}, "position": {"x": 765.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158691, "gate": "", "blockId": null, "orderNum": 1635, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121639, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1540.0}, "se": {"x": 604.0, "y": 1540.0}, "sw": {"x": 614.0, "y": 1550.0}, "nw": {"x": 604.0, "y": 1550.0}}, "position": {"x": 609.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1387, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121640, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1554.0}, "se": {"x": 604.0, "y": 1554.0}, "sw": {"x": 614.0, "y": 1564.0}, "nw": {"x": 604.0, "y": 1564.0}}, "position": {"x": 609.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1386, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121641, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1568.0}, "se": {"x": 604.0, "y": 1568.0}, "sw": {"x": 614.0, "y": 1578.0}, "nw": {"x": 604.0, "y": 1578.0}}, "position": {"x": 609.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1385, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121642, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1582.0}, "se": {"x": 604.0, "y": 1582.0}, "sw": {"x": 614.0, "y": 1592.0}, "nw": {"x": 604.0, "y": 1592.0}}, "position": {"x": 609.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1384, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121643, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1596.0}, "se": {"x": 604.0, "y": 1596.0}, "sw": {"x": 614.0, "y": 1606.0}, "nw": {"x": 604.0, "y": 1606.0}}, "position": {"x": 609.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1383, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121644, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1610.0}, "se": {"x": 604.0, "y": 1610.0}, "sw": {"x": 614.0, "y": 1620.0}, "nw": {"x": 604.0, "y": 1620.0}}, "position": {"x": 609.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1382, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121645, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1624.0}, "se": {"x": 604.0, "y": 1624.0}, "sw": {"x": 614.0, "y": 1634.0}, "nw": {"x": 604.0, "y": 1634.0}}, "position": {"x": 609.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1381, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121646, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1638.0}, "se": {"x": 604.0, "y": 1638.0}, "sw": {"x": 614.0, "y": 1648.0}, "nw": {"x": 604.0, "y": 1648.0}}, "position": {"x": 609.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1380, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121647, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1652.0}, "se": {"x": 604.0, "y": 1652.0}, "sw": {"x": 614.0, "y": 1662.0}, "nw": {"x": 604.0, "y": 1662.0}}, "position": {"x": 609.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1379, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121648, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 614.0, "y": 1666.0}, "se": {"x": 604.0, "y": 1666.0}, "sw": {"x": 614.0, "y": 1676.0}, "nw": {"x": 604.0, "y": 1676.0}}, "position": {"x": 609.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158960, "gate": "", "blockId": null, "orderNum": 1378, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121654, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1540.0}, "se": {"x": 590.0, "y": 1540.0}, "sw": {"x": 600.0, "y": 1550.0}, "nw": {"x": 590.0, "y": 1550.0}}, "position": {"x": 595.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1280, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121655, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1554.0}, "se": {"x": 590.0, "y": 1554.0}, "sw": {"x": 600.0, "y": 1564.0}, "nw": {"x": 590.0, "y": 1564.0}}, "position": {"x": 595.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1279, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121656, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1568.0}, "se": {"x": 590.0, "y": 1568.0}, "sw": {"x": 600.0, "y": 1578.0}, "nw": {"x": 590.0, "y": 1578.0}}, "position": {"x": 595.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1278, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121657, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1582.0}, "se": {"x": 590.0, "y": 1582.0}, "sw": {"x": 600.0, "y": 1592.0}, "nw": {"x": 590.0, "y": 1592.0}}, "position": {"x": 595.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1277, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121658, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1596.0}, "se": {"x": 590.0, "y": 1596.0}, "sw": {"x": 600.0, "y": 1606.0}, "nw": {"x": 590.0, "y": 1606.0}}, "position": {"x": 595.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1276, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121659, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1610.0}, "se": {"x": 590.0, "y": 1610.0}, "sw": {"x": 600.0, "y": 1620.0}, "nw": {"x": 590.0, "y": 1620.0}}, "position": {"x": 595.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1275, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121660, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1624.0}, "se": {"x": 590.0, "y": 1624.0}, "sw": {"x": 600.0, "y": 1634.0}, "nw": {"x": 590.0, "y": 1634.0}}, "position": {"x": 595.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1274, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121661, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1638.0}, "se": {"x": 590.0, "y": 1638.0}, "sw": {"x": 600.0, "y": 1648.0}, "nw": {"x": 590.0, "y": 1648.0}}, "position": {"x": 595.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1273, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121662, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1652.0}, "se": {"x": 590.0, "y": 1652.0}, "sw": {"x": 600.0, "y": 1662.0}, "nw": {"x": 590.0, "y": 1662.0}}, "position": {"x": 595.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1272, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121663, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1666.0}, "se": {"x": 590.0, "y": 1666.0}, "sw": {"x": 600.0, "y": 1676.0}, "nw": {"x": 590.0, "y": 1676.0}}, "position": {"x": 595.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158975, "gate": "", "blockId": null, "orderNum": 1271, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121664, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 600.0, "y": 1694.0}, "se": {"x": 590.0, "y": 1694.0}, "sw": {"x": 600.0, "y": 1704.0}, "nw": {"x": 590.0, "y": 1704.0}}, "position": {"x": 595.0, "y": 1699.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158976, "gate": "", "blockId": null, "orderNum": 1270, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121670, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1540.0}, "se": {"x": 576.0, "y": 1540.0}, "sw": {"x": 586.0, "y": 1550.0}, "nw": {"x": 576.0, "y": 1550.0}}, "position": {"x": 581.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1193, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121671, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1554.0}, "se": {"x": 576.0, "y": 1554.0}, "sw": {"x": 586.0, "y": 1564.0}, "nw": {"x": 576.0, "y": 1564.0}}, "position": {"x": 581.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1192, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121672, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1568.0}, "se": {"x": 576.0, "y": 1568.0}, "sw": {"x": 586.0, "y": 1578.0}, "nw": {"x": 576.0, "y": 1578.0}}, "position": {"x": 581.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1191, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121673, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1582.0}, "se": {"x": 576.0, "y": 1582.0}, "sw": {"x": 586.0, "y": 1592.0}, "nw": {"x": 576.0, "y": 1592.0}}, "position": {"x": 581.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1190, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121674, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1596.0}, "se": {"x": 576.0, "y": 1596.0}, "sw": {"x": 586.0, "y": 1606.0}, "nw": {"x": 576.0, "y": 1606.0}}, "position": {"x": 581.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1189, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121675, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1610.0}, "se": {"x": 576.0, "y": 1610.0}, "sw": {"x": 586.0, "y": 1620.0}, "nw": {"x": 576.0, "y": 1620.0}}, "position": {"x": 581.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1188, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121676, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1624.0}, "se": {"x": 576.0, "y": 1624.0}, "sw": {"x": 586.0, "y": 1634.0}, "nw": {"x": 576.0, "y": 1634.0}}, "position": {"x": 581.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1187, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121677, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1638.0}, "se": {"x": 576.0, "y": 1638.0}, "sw": {"x": 586.0, "y": 1648.0}, "nw": {"x": 576.0, "y": 1648.0}}, "position": {"x": 581.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1186, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121678, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1652.0}, "se": {"x": 576.0, "y": 1652.0}, "sw": {"x": 586.0, "y": 1662.0}, "nw": {"x": 576.0, "y": 1662.0}}, "position": {"x": 581.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1185, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121679, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1666.0}, "se": {"x": 576.0, "y": 1666.0}, "sw": {"x": 586.0, "y": 1676.0}, "nw": {"x": 576.0, "y": 1676.0}}, "position": {"x": 581.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1184, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121680, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1680.0}, "se": {"x": 576.0, "y": 1680.0}, "sw": {"x": 586.0, "y": 1690.0}, "nw": {"x": 576.0, "y": 1690.0}}, "position": {"x": 581.0, "y": 1685.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158992, "gate": "", "blockId": null, "orderNum": 1183, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121681, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1708.0}, "se": {"x": 576.0, "y": 1708.0}, "sw": {"x": 586.0, "y": 1718.0}, "nw": {"x": 576.0, "y": 1718.0}}, "position": {"x": 581.0, "y": 1713.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158994, "gate": "", "blockId": null, "orderNum": 1182, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121682, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 586.0, "y": 1722.0}, "se": {"x": 576.0, "y": 1722.0}, "sw": {"x": 586.0, "y": 1732.0}, "nw": {"x": 576.0, "y": 1732.0}}, "position": {"x": 581.0, "y": 1727.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158994, "gate": "", "blockId": null, "orderNum": 1181, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121688, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1540.0}, "se": {"x": 562.0, "y": 1540.0}, "sw": {"x": 572.0, "y": 1550.0}, "nw": {"x": 562.0, "y": 1550.0}}, "position": {"x": 567.0, "y": 1545.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121689, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1554.0}, "se": {"x": 562.0, "y": 1554.0}, "sw": {"x": 572.0, "y": 1564.0}, "nw": {"x": 562.0, "y": 1564.0}}, "position": {"x": 567.0, "y": 1559.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121690, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1568.0}, "se": {"x": 562.0, "y": 1568.0}, "sw": {"x": 572.0, "y": 1578.0}, "nw": {"x": 562.0, "y": 1578.0}}, "position": {"x": 567.0, "y": 1573.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121691, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1582.0}, "se": {"x": 562.0, "y": 1582.0}, "sw": {"x": 572.0, "y": 1592.0}, "nw": {"x": 562.0, "y": 1592.0}}, "position": {"x": 567.0, "y": 1587.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121692, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1596.0}, "se": {"x": 562.0, "y": 1596.0}, "sw": {"x": 572.0, "y": 1606.0}, "nw": {"x": 562.0, "y": 1606.0}}, "position": {"x": 567.0, "y": 1601.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121693, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1610.0}, "se": {"x": 562.0, "y": 1610.0}, "sw": {"x": 572.0, "y": 1620.0}, "nw": {"x": 562.0, "y": 1620.0}}, "position": {"x": 567.0, "y": 1615.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121694, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1624.0}, "se": {"x": 562.0, "y": 1624.0}, "sw": {"x": 572.0, "y": 1634.0}, "nw": {"x": 562.0, "y": 1634.0}}, "position": {"x": 567.0, "y": 1629.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121695, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1638.0}, "se": {"x": 562.0, "y": 1638.0}, "sw": {"x": 572.0, "y": 1648.0}, "nw": {"x": 562.0, "y": 1648.0}}, "position": {"x": 567.0, "y": 1643.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121696, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1652.0}, "se": {"x": 562.0, "y": 1652.0}, "sw": {"x": 572.0, "y": 1662.0}, "nw": {"x": 562.0, "y": 1662.0}}, "position": {"x": 567.0, "y": 1657.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121697, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1666.0}, "se": {"x": 562.0, "y": 1666.0}, "sw": {"x": 572.0, "y": 1676.0}, "nw": {"x": 562.0, "y": 1676.0}}, "position": {"x": 567.0, "y": 1671.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121698, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1680.0}, "se": {"x": 562.0, "y": 1680.0}, "sw": {"x": 572.0, "y": 1690.0}, "nw": {"x": 562.0, "y": 1690.0}}, "position": {"x": 567.0, "y": 1685.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121699, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1694.0}, "se": {"x": 562.0, "y": 1694.0}, "sw": {"x": 572.0, "y": 1704.0}, "nw": {"x": 562.0, "y": 1704.0}}, "position": {"x": 567.0, "y": 1699.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121700, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1722.0}, "se": {"x": 562.0, "y": 1722.0}, "sw": {"x": 572.0, "y": 1732.0}, "nw": {"x": 562.0, "y": 1732.0}}, "position": {"x": 567.0, "y": 1727.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121701, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 572.0, "y": 1736.0}, "se": {"x": 562.0, "y": 1736.0}, "sw": {"x": 572.0, "y": 1746.0}, "nw": {"x": 562.0, "y": 1746.0}}, "position": {"x": 567.0, "y": 1741.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 L\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "2\uce35", "L\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35L\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "4:4": [{"logicalSeatId": 1537123709, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1189.0}, "se": {"x": 1031.0, "y": 1199.0}, "sw": {"x": 1041.0, "y": 1189.0}, "nw": {"x": 1041.0, "y": 1199.0}}, "position": {"x": 1036.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123710, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1189.0}, "se": {"x": 1045.0, "y": 1199.0}, "sw": {"x": 1055.0, "y": 1189.0}, "nw": {"x": 1055.0, "y": 1199.0}}, "position": {"x": 1050.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123711, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1189.0}, "se": {"x": 1059.0, "y": 1199.0}, "sw": {"x": 1069.0, "y": 1189.0}, "nw": {"x": 1069.0, "y": 1199.0}}, "position": {"x": 1064.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123712, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1189.0}, "se": {"x": 1073.0, "y": 1199.0}, "sw": {"x": 1083.0, "y": 1189.0}, "nw": {"x": 1083.0, "y": 1199.0}}, "position": {"x": 1078.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123713, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1189.0}, "se": {"x": 1087.0, "y": 1199.0}, "sw": {"x": 1097.0, "y": 1189.0}, "nw": {"x": 1097.0, "y": 1199.0}}, "position": {"x": 1092.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123714, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1189.0}, "se": {"x": 1101.0, "y": 1199.0}, "sw": {"x": 1111.0, "y": 1189.0}, "nw": {"x": 1111.0, "y": 1199.0}}, "position": {"x": 1106.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123715, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1189.0}, "se": {"x": 1115.0, "y": 1199.0}, "sw": {"x": 1125.0, "y": 1189.0}, "nw": {"x": 1125.0, "y": 1199.0}}, "position": {"x": 1120.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123716, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1189.0}, "se": {"x": 1129.0, "y": 1199.0}, "sw": {"x": 1139.0, "y": 1189.0}, "nw": {"x": 1139.0, "y": 1199.0}}, "position": {"x": 1134.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123717, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1189.0}, "se": {"x": 1143.0, "y": 1199.0}, "sw": {"x": 1153.0, "y": 1189.0}, "nw": {"x": 1153.0, "y": 1199.0}}, "position": {"x": 1148.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123718, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1189.0}, "se": {"x": 1157.0, "y": 1199.0}, "sw": {"x": 1167.0, "y": 1189.0}, "nw": {"x": 1167.0, "y": 1199.0}}, "position": {"x": 1162.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123719, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1203.0}, "se": {"x": 1031.0, "y": 1213.0}, "sw": {"x": 1041.0, "y": 1203.0}, "nw": {"x": 1041.0, "y": 1213.0}}, "position": {"x": 1036.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123720, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1203.0}, "se": {"x": 1045.0, "y": 1213.0}, "sw": {"x": 1055.0, "y": 1203.0}, "nw": {"x": 1055.0, "y": 1213.0}}, "position": {"x": 1050.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123721, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1203.0}, "se": {"x": 1059.0, "y": 1213.0}, "sw": {"x": 1069.0, "y": 1203.0}, "nw": {"x": 1069.0, "y": 1213.0}}, "position": {"x": 1064.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123722, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1203.0}, "se": {"x": 1073.0, "y": 1213.0}, "sw": {"x": 1083.0, "y": 1203.0}, "nw": {"x": 1083.0, "y": 1213.0}}, "position": {"x": 1078.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123723, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1203.0}, "se": {"x": 1087.0, "y": 1213.0}, "sw": {"x": 1097.0, "y": 1203.0}, "nw": {"x": 1097.0, "y": 1213.0}}, "position": {"x": 1092.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123724, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1203.0}, "se": {"x": 1101.0, "y": 1213.0}, "sw": {"x": 1111.0, "y": 1203.0}, "nw": {"x": 1111.0, "y": 1213.0}}, "position": {"x": 1106.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123725, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1203.0}, "se": {"x": 1115.0, "y": 1213.0}, "sw": {"x": 1125.0, "y": 1203.0}, "nw": {"x": 1125.0, "y": 1213.0}}, "position": {"x": 1120.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123726, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1203.0}, "se": {"x": 1129.0, "y": 1213.0}, "sw": {"x": 1139.0, "y": 1203.0}, "nw": {"x": 1139.0, "y": 1213.0}}, "position": {"x": 1134.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123727, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1203.0}, "se": {"x": 1143.0, "y": 1213.0}, "sw": {"x": 1153.0, "y": 1203.0}, "nw": {"x": 1153.0, "y": 1213.0}}, "position": {"x": 1148.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123728, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1203.0}, "se": {"x": 1157.0, "y": 1213.0}, "sw": {"x": 1167.0, "y": 1203.0}, "nw": {"x": 1167.0, "y": 1213.0}}, "position": {"x": 1162.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123729, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1217.0}, "se": {"x": 1031.0, "y": 1227.0}, "sw": {"x": 1041.0, "y": 1217.0}, "nw": {"x": 1041.0, "y": 1227.0}}, "position": {"x": 1036.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123730, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1217.0}, "se": {"x": 1045.0, "y": 1227.0}, "sw": {"x": 1055.0, "y": 1217.0}, "nw": {"x": 1055.0, "y": 1227.0}}, "position": {"x": 1050.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123731, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1217.0}, "se": {"x": 1059.0, "y": 1227.0}, "sw": {"x": 1069.0, "y": 1217.0}, "nw": {"x": 1069.0, "y": 1227.0}}, "position": {"x": 1064.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123732, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1217.0}, "se": {"x": 1073.0, "y": 1227.0}, "sw": {"x": 1083.0, "y": 1217.0}, "nw": {"x": 1083.0, "y": 1227.0}}, "position": {"x": 1078.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123733, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1217.0}, "se": {"x": 1087.0, "y": 1227.0}, "sw": {"x": 1097.0, "y": 1217.0}, "nw": {"x": 1097.0, "y": 1227.0}}, "position": {"x": 1092.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123734, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1217.0}, "se": {"x": 1101.0, "y": 1227.0}, "sw": {"x": 1111.0, "y": 1217.0}, "nw": {"x": 1111.0, "y": 1227.0}}, "position": {"x": 1106.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123735, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1217.0}, "se": {"x": 1115.0, "y": 1227.0}, "sw": {"x": 1125.0, "y": 1217.0}, "nw": {"x": 1125.0, "y": 1227.0}}, "position": {"x": 1120.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123736, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1217.0}, "se": {"x": 1129.0, "y": 1227.0}, "sw": {"x": 1139.0, "y": 1217.0}, "nw": {"x": 1139.0, "y": 1227.0}}, "position": {"x": 1134.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123737, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1217.0}, "se": {"x": 1143.0, "y": 1227.0}, "sw": {"x": 1153.0, "y": 1217.0}, "nw": {"x": 1153.0, "y": 1227.0}}, "position": {"x": 1148.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123738, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1217.0}, "se": {"x": 1157.0, "y": 1227.0}, "sw": {"x": 1167.0, "y": 1217.0}, "nw": {"x": 1167.0, "y": 1227.0}}, "position": {"x": 1162.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123739, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1231.0}, "se": {"x": 1031.0, "y": 1241.0}, "sw": {"x": 1041.0, "y": 1231.0}, "nw": {"x": 1041.0, "y": 1241.0}}, "position": {"x": 1036.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123740, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1231.0}, "se": {"x": 1045.0, "y": 1241.0}, "sw": {"x": 1055.0, "y": 1231.0}, "nw": {"x": 1055.0, "y": 1241.0}}, "position": {"x": 1050.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123741, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1231.0}, "se": {"x": 1059.0, "y": 1241.0}, "sw": {"x": 1069.0, "y": 1231.0}, "nw": {"x": 1069.0, "y": 1241.0}}, "position": {"x": 1064.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123742, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1231.0}, "se": {"x": 1073.0, "y": 1241.0}, "sw": {"x": 1083.0, "y": 1231.0}, "nw": {"x": 1083.0, "y": 1241.0}}, "position": {"x": 1078.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123743, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1231.0}, "se": {"x": 1087.0, "y": 1241.0}, "sw": {"x": 1097.0, "y": 1231.0}, "nw": {"x": 1097.0, "y": 1241.0}}, "position": {"x": 1092.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123744, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1231.0}, "se": {"x": 1101.0, "y": 1241.0}, "sw": {"x": 1111.0, "y": 1231.0}, "nw": {"x": 1111.0, "y": 1241.0}}, "position": {"x": 1106.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123745, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1231.0}, "se": {"x": 1115.0, "y": 1241.0}, "sw": {"x": 1125.0, "y": 1231.0}, "nw": {"x": 1125.0, "y": 1241.0}}, "position": {"x": 1120.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123746, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1231.0}, "se": {"x": 1129.0, "y": 1241.0}, "sw": {"x": 1139.0, "y": 1231.0}, "nw": {"x": 1139.0, "y": 1241.0}}, "position": {"x": 1134.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123747, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1231.0}, "se": {"x": 1143.0, "y": 1241.0}, "sw": {"x": 1153.0, "y": 1231.0}, "nw": {"x": 1153.0, "y": 1241.0}}, "position": {"x": 1148.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123748, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1231.0}, "se": {"x": 1157.0, "y": 1241.0}, "sw": {"x": 1167.0, "y": 1231.0}, "nw": {"x": 1167.0, "y": 1241.0}}, "position": {"x": 1162.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123749, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1245.0}, "se": {"x": 1031.0, "y": 1255.0}, "sw": {"x": 1041.0, "y": 1245.0}, "nw": {"x": 1041.0, "y": 1255.0}}, "position": {"x": 1036.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123750, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1245.0}, "se": {"x": 1045.0, "y": 1255.0}, "sw": {"x": 1055.0, "y": 1245.0}, "nw": {"x": 1055.0, "y": 1255.0}}, "position": {"x": 1050.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123751, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1245.0}, "se": {"x": 1059.0, "y": 1255.0}, "sw": {"x": 1069.0, "y": 1245.0}, "nw": {"x": 1069.0, "y": 1255.0}}, "position": {"x": 1064.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123752, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1245.0}, "se": {"x": 1073.0, "y": 1255.0}, "sw": {"x": 1083.0, "y": 1245.0}, "nw": {"x": 1083.0, "y": 1255.0}}, "position": {"x": 1078.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123753, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1245.0}, "se": {"x": 1087.0, "y": 1255.0}, "sw": {"x": 1097.0, "y": 1245.0}, "nw": {"x": 1097.0, "y": 1255.0}}, "position": {"x": 1092.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123754, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1245.0}, "se": {"x": 1101.0, "y": 1255.0}, "sw": {"x": 1111.0, "y": 1245.0}, "nw": {"x": 1111.0, "y": 1255.0}}, "position": {"x": 1106.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123755, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1245.0}, "se": {"x": 1115.0, "y": 1255.0}, "sw": {"x": 1125.0, "y": 1245.0}, "nw": {"x": 1125.0, "y": 1255.0}}, "position": {"x": 1120.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123756, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1245.0}, "se": {"x": 1129.0, "y": 1255.0}, "sw": {"x": 1139.0, "y": 1245.0}, "nw": {"x": 1139.0, "y": 1255.0}}, "position": {"x": 1134.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123757, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1245.0}, "se": {"x": 1143.0, "y": 1255.0}, "sw": {"x": 1153.0, "y": 1245.0}, "nw": {"x": 1153.0, "y": 1255.0}}, "position": {"x": 1148.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123758, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1245.0}, "se": {"x": 1157.0, "y": 1255.0}, "sw": {"x": 1167.0, "y": 1245.0}, "nw": {"x": 1167.0, "y": 1255.0}}, "position": {"x": 1162.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123759, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1259.0}, "se": {"x": 1031.0, "y": 1269.0}, "sw": {"x": 1041.0, "y": 1259.0}, "nw": {"x": 1041.0, "y": 1269.0}}, "position": {"x": 1036.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123760, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1259.0}, "se": {"x": 1045.0, "y": 1269.0}, "sw": {"x": 1055.0, "y": 1259.0}, "nw": {"x": 1055.0, "y": 1269.0}}, "position": {"x": 1050.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123761, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1259.0}, "se": {"x": 1059.0, "y": 1269.0}, "sw": {"x": 1069.0, "y": 1259.0}, "nw": {"x": 1069.0, "y": 1269.0}}, "position": {"x": 1064.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123762, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1259.0}, "se": {"x": 1073.0, "y": 1269.0}, "sw": {"x": 1083.0, "y": 1259.0}, "nw": {"x": 1083.0, "y": 1269.0}}, "position": {"x": 1078.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123763, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1259.0}, "se": {"x": 1087.0, "y": 1269.0}, "sw": {"x": 1097.0, "y": 1259.0}, "nw": {"x": 1097.0, "y": 1269.0}}, "position": {"x": 1092.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123764, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1259.0}, "se": {"x": 1101.0, "y": 1269.0}, "sw": {"x": 1111.0, "y": 1259.0}, "nw": {"x": 1111.0, "y": 1269.0}}, "position": {"x": 1106.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123765, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1259.0}, "se": {"x": 1115.0, "y": 1269.0}, "sw": {"x": 1125.0, "y": 1259.0}, "nw": {"x": 1125.0, "y": 1269.0}}, "position": {"x": 1120.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123766, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1259.0}, "se": {"x": 1129.0, "y": 1269.0}, "sw": {"x": 1139.0, "y": 1259.0}, "nw": {"x": 1139.0, "y": 1269.0}}, "position": {"x": 1134.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123767, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1259.0}, "se": {"x": 1143.0, "y": 1269.0}, "sw": {"x": 1153.0, "y": 1259.0}, "nw": {"x": 1153.0, "y": 1269.0}}, "position": {"x": 1148.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123768, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1259.0}, "se": {"x": 1157.0, "y": 1269.0}, "sw": {"x": 1167.0, "y": 1259.0}, "nw": {"x": 1167.0, "y": 1269.0}}, "position": {"x": 1162.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123769, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1273.0}, "se": {"x": 1031.0, "y": 1283.0}, "sw": {"x": 1041.0, "y": 1273.0}, "nw": {"x": 1041.0, "y": 1283.0}}, "position": {"x": 1036.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123770, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1273.0}, "se": {"x": 1045.0, "y": 1283.0}, "sw": {"x": 1055.0, "y": 1273.0}, "nw": {"x": 1055.0, "y": 1283.0}}, "position": {"x": 1050.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123771, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1273.0}, "se": {"x": 1059.0, "y": 1283.0}, "sw": {"x": 1069.0, "y": 1273.0}, "nw": {"x": 1069.0, "y": 1283.0}}, "position": {"x": 1064.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123772, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1273.0}, "se": {"x": 1073.0, "y": 1283.0}, "sw": {"x": 1083.0, "y": 1273.0}, "nw": {"x": 1083.0, "y": 1283.0}}, "position": {"x": 1078.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123773, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1273.0}, "se": {"x": 1087.0, "y": 1283.0}, "sw": {"x": 1097.0, "y": 1273.0}, "nw": {"x": 1097.0, "y": 1283.0}}, "position": {"x": 1092.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123774, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1273.0}, "se": {"x": 1101.0, "y": 1283.0}, "sw": {"x": 1111.0, "y": 1273.0}, "nw": {"x": 1111.0, "y": 1283.0}}, "position": {"x": 1106.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123775, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1273.0}, "se": {"x": 1115.0, "y": 1283.0}, "sw": {"x": 1125.0, "y": 1273.0}, "nw": {"x": 1125.0, "y": 1283.0}}, "position": {"x": 1120.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123776, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1273.0}, "se": {"x": 1129.0, "y": 1283.0}, "sw": {"x": 1139.0, "y": 1273.0}, "nw": {"x": 1139.0, "y": 1283.0}}, "position": {"x": 1134.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123777, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1273.0}, "se": {"x": 1143.0, "y": 1283.0}, "sw": {"x": 1153.0, "y": 1273.0}, "nw": {"x": 1153.0, "y": 1283.0}}, "position": {"x": 1148.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123778, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1273.0}, "se": {"x": 1157.0, "y": 1283.0}, "sw": {"x": 1167.0, "y": 1273.0}, "nw": {"x": 1167.0, "y": 1283.0}}, "position": {"x": 1162.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123829, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1189.0}, "se": {"x": 1253.0, "y": 1199.0}, "sw": {"x": 1263.0, "y": 1189.0}, "nw": {"x": 1263.0, "y": 1199.0}}, "position": {"x": 1258.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123830, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1189.0}, "se": {"x": 1267.0, "y": 1199.0}, "sw": {"x": 1277.0, "y": 1189.0}, "nw": {"x": 1277.0, "y": 1199.0}}, "position": {"x": 1272.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123839, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1203.0}, "se": {"x": 1253.0, "y": 1213.0}, "sw": {"x": 1263.0, "y": 1203.0}, "nw": {"x": 1263.0, "y": 1213.0}}, "position": {"x": 1258.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123840, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1203.0}, "se": {"x": 1267.0, "y": 1213.0}, "sw": {"x": 1277.0, "y": 1203.0}, "nw": {"x": 1277.0, "y": 1213.0}}, "position": {"x": 1272.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123849, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1217.0}, "se": {"x": 1253.0, "y": 1227.0}, "sw": {"x": 1263.0, "y": 1217.0}, "nw": {"x": 1263.0, "y": 1227.0}}, "position": {"x": 1258.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123850, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1217.0}, "se": {"x": 1267.0, "y": 1227.0}, "sw": {"x": 1277.0, "y": 1217.0}, "nw": {"x": 1277.0, "y": 1227.0}}, "position": {"x": 1272.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123859, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1231.0}, "se": {"x": 1253.0, "y": 1241.0}, "sw": {"x": 1263.0, "y": 1231.0}, "nw": {"x": 1263.0, "y": 1241.0}}, "position": {"x": 1258.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123860, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1231.0}, "se": {"x": 1267.0, "y": 1241.0}, "sw": {"x": 1277.0, "y": 1231.0}, "nw": {"x": 1277.0, "y": 1241.0}}, "position": {"x": 1272.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123869, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1245.0}, "se": {"x": 1253.0, "y": 1255.0}, "sw": {"x": 1263.0, "y": 1245.0}, "nw": {"x": 1263.0, "y": 1255.0}}, "position": {"x": 1258.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123870, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1245.0}, "se": {"x": 1267.0, "y": 1255.0}, "sw": {"x": 1277.0, "y": 1245.0}, "nw": {"x": 1277.0, "y": 1255.0}}, "position": {"x": 1272.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123879, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1259.0}, "se": {"x": 1253.0, "y": 1269.0}, "sw": {"x": 1263.0, "y": 1259.0}, "nw": {"x": 1263.0, "y": 1269.0}}, "position": {"x": 1258.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123880, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1259.0}, "se": {"x": 1267.0, "y": 1269.0}, "sw": {"x": 1277.0, "y": 1259.0}, "nw": {"x": 1277.0, "y": 1269.0}}, "position": {"x": 1272.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123889, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1273.0}, "se": {"x": 1253.0, "y": 1283.0}, "sw": {"x": 1263.0, "y": 1273.0}, "nw": {"x": 1263.0, "y": 1283.0}}, "position": {"x": 1258.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123890, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1273.0}, "se": {"x": 1267.0, "y": 1283.0}, "sw": {"x": 1277.0, "y": 1273.0}, "nw": {"x": 1277.0, "y": 1283.0}}, "position": {"x": 1272.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "6:2": [{"logicalSeatId": 1537123450, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 748.0}, "se": {"x": 1535.0, "y": 758.0}, "sw": {"x": 1545.0, "y": 748.0}, "nw": {"x": 1545.0, "y": 758.0}}, "position": {"x": 1540.0, "y": 753.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123456, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 762.0}, "se": {"x": 1535.0, "y": 772.0}, "sw": {"x": 1545.0, "y": 762.0}, "nw": {"x": 1545.0, "y": 772.0}}, "position": {"x": 1540.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123457, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 762.0}, "se": {"x": 1549.0, "y": 772.0}, "sw": {"x": 1559.0, "y": 762.0}, "nw": {"x": 1559.0, "y": 772.0}}, "position": {"x": 1554.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123458, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 762.0}, "se": {"x": 1563.0, "y": 772.0}, "sw": {"x": 1573.0, "y": 762.0}, "nw": {"x": 1573.0, "y": 772.0}}, "position": {"x": 1568.0, "y": 767.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 2}, "waitingLinkedId": null, "sectionId": 59712}], "3:6": [{"logicalSeatId": 1537120844, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1719.0}, "se": {"x": 912.0, "y": 1729.0}, "sw": {"x": 922.0, "y": 1719.0}, "nw": {"x": 922.0, "y": 1729.0}}, "position": {"x": 917.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2351, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120845, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1719.0}, "se": {"x": 926.0, "y": 1729.0}, "sw": {"x": 936.0, "y": 1719.0}, "nw": {"x": 936.0, "y": 1729.0}}, "position": {"x": 931.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2431, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120846, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1719.0}, "se": {"x": 940.0, "y": 1729.0}, "sw": {"x": 950.0, "y": 1719.0}, "nw": {"x": 950.0, "y": 1729.0}}, "position": {"x": 945.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2511, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120847, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1719.0}, "se": {"x": 954.0, "y": 1729.0}, "sw": {"x": 964.0, "y": 1719.0}, "nw": {"x": 964.0, "y": 1729.0}}, "position": {"x": 959.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2591, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120848, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1719.0}, "se": {"x": 968.0, "y": 1729.0}, "sw": {"x": 978.0, "y": 1719.0}, "nw": {"x": 978.0, "y": 1729.0}}, "position": {"x": 973.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2671, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120849, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1719.0}, "se": {"x": 982.0, "y": 1729.0}, "sw": {"x": 992.0, "y": 1719.0}, "nw": {"x": 992.0, "y": 1729.0}}, "position": {"x": 987.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2751, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120850, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1719.0}, "se": {"x": 996.0, "y": 1729.0}, "sw": {"x": 1006.0, "y": 1719.0}, "nw": {"x": 1006.0, "y": 1729.0}}, "position": {"x": 1001.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2831, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120851, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1719.0}, "se": {"x": 1010.0, "y": 1729.0}, "sw": {"x": 1020.0, "y": 1719.0}, "nw": {"x": 1020.0, "y": 1729.0}}, "position": {"x": 1015.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2911, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120882, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1733.0}, "se": {"x": 912.0, "y": 1743.0}, "sw": {"x": 922.0, "y": 1733.0}, "nw": {"x": 922.0, "y": 1743.0}}, "position": {"x": 917.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2350, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120883, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1733.0}, "se": {"x": 926.0, "y": 1743.0}, "sw": {"x": 936.0, "y": 1733.0}, "nw": {"x": 936.0, "y": 1743.0}}, "position": {"x": 931.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2430, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120884, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1733.0}, "se": {"x": 940.0, "y": 1743.0}, "sw": {"x": 950.0, "y": 1733.0}, "nw": {"x": 950.0, "y": 1743.0}}, "position": {"x": 945.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2510, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120885, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1733.0}, "se": {"x": 954.0, "y": 1743.0}, "sw": {"x": 964.0, "y": 1733.0}, "nw": {"x": 964.0, "y": 1743.0}}, "position": {"x": 959.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2590, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120886, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1733.0}, "se": {"x": 968.0, "y": 1743.0}, "sw": {"x": 978.0, "y": 1733.0}, "nw": {"x": 978.0, "y": 1743.0}}, "position": {"x": 973.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2670, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120887, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1733.0}, "se": {"x": 982.0, "y": 1743.0}, "sw": {"x": 992.0, "y": 1733.0}, "nw": {"x": 992.0, "y": 1743.0}}, "position": {"x": 987.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2750, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120888, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1733.0}, "se": {"x": 996.0, "y": 1743.0}, "sw": {"x": 1006.0, "y": 1733.0}, "nw": {"x": 1006.0, "y": 1743.0}}, "position": {"x": 1001.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2830, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120889, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1733.0}, "se": {"x": 1010.0, "y": 1743.0}, "sw": {"x": 1020.0, "y": 1733.0}, "nw": {"x": 1020.0, "y": 1743.0}}, "position": {"x": 1015.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2910, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120920, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1747.0}, "se": {"x": 912.0, "y": 1757.0}, "sw": {"x": 922.0, "y": 1747.0}, "nw": {"x": 922.0, "y": 1757.0}}, "position": {"x": 917.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2349, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120921, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1747.0}, "se": {"x": 926.0, "y": 1757.0}, "sw": {"x": 936.0, "y": 1747.0}, "nw": {"x": 936.0, "y": 1757.0}}, "position": {"x": 931.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2429, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120922, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1747.0}, "se": {"x": 940.0, "y": 1757.0}, "sw": {"x": 950.0, "y": 1747.0}, "nw": {"x": 950.0, "y": 1757.0}}, "position": {"x": 945.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2509, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120923, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1747.0}, "se": {"x": 954.0, "y": 1757.0}, "sw": {"x": 964.0, "y": 1747.0}, "nw": {"x": 964.0, "y": 1757.0}}, "position": {"x": 959.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2589, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120924, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1747.0}, "se": {"x": 968.0, "y": 1757.0}, "sw": {"x": 978.0, "y": 1747.0}, "nw": {"x": 978.0, "y": 1757.0}}, "position": {"x": 973.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2669, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120925, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1747.0}, "se": {"x": 982.0, "y": 1757.0}, "sw": {"x": 992.0, "y": 1747.0}, "nw": {"x": 992.0, "y": 1757.0}}, "position": {"x": 987.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2749, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120926, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1747.0}, "se": {"x": 996.0, "y": 1757.0}, "sw": {"x": 1006.0, "y": 1747.0}, "nw": {"x": 1006.0, "y": 1757.0}}, "position": {"x": 1001.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2829, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120927, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1747.0}, "se": {"x": 1010.0, "y": 1757.0}, "sw": {"x": 1020.0, "y": 1747.0}, "nw": {"x": 1020.0, "y": 1757.0}}, "position": {"x": 1015.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2909, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120958, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1761.0}, "se": {"x": 912.0, "y": 1771.0}, "sw": {"x": 922.0, "y": 1761.0}, "nw": {"x": 922.0, "y": 1771.0}}, "position": {"x": 917.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158270, "gate": "", "blockId": null, "orderNum": 2348, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120959, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1761.0}, "se": {"x": 926.0, "y": 1771.0}, "sw": {"x": 936.0, "y": 1761.0}, "nw": {"x": 936.0, "y": 1771.0}}, "position": {"x": 931.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158271, "gate": "", "blockId": null, "orderNum": 2428, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120960, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1761.0}, "se": {"x": 940.0, "y": 1771.0}, "sw": {"x": 950.0, "y": 1761.0}, "nw": {"x": 950.0, "y": 1771.0}}, "position": {"x": 945.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158272, "gate": "", "blockId": null, "orderNum": 2508, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120961, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1761.0}, "se": {"x": 954.0, "y": 1771.0}, "sw": {"x": 964.0, "y": 1761.0}, "nw": {"x": 964.0, "y": 1771.0}}, "position": {"x": 959.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158273, "gate": "", "blockId": null, "orderNum": 2588, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120962, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1761.0}, "se": {"x": 968.0, "y": 1771.0}, "sw": {"x": 978.0, "y": 1761.0}, "nw": {"x": 978.0, "y": 1771.0}}, "position": {"x": 973.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158274, "gate": "", "blockId": null, "orderNum": 2668, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120963, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1761.0}, "se": {"x": 982.0, "y": 1771.0}, "sw": {"x": 992.0, "y": 1761.0}, "nw": {"x": 992.0, "y": 1771.0}}, "position": {"x": 987.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158275, "gate": "", "blockId": null, "orderNum": 2748, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120964, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1761.0}, "se": {"x": 996.0, "y": 1771.0}, "sw": {"x": 1006.0, "y": 1761.0}, "nw": {"x": 1006.0, "y": 1771.0}}, "position": {"x": 1001.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158276, "gate": "", "blockId": null, "orderNum": 2828, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120965, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1761.0}, "se": {"x": 1010.0, "y": 1771.0}, "sw": {"x": 1020.0, "y": 1761.0}, "nw": {"x": 1020.0, "y": 1771.0}}, "position": {"x": 1015.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158277, "gate": "", "blockId": null, "orderNum": 2908, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121342, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1719.0}, "se": {"x": 774.0, "y": 1729.0}, "sw": {"x": 784.0, "y": 1719.0}, "nw": {"x": 784.0, "y": 1729.0}}, "position": {"x": 779.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1654, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121343, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1719.0}, "se": {"x": 788.0, "y": 1729.0}, "sw": {"x": 798.0, "y": 1719.0}, "nw": {"x": 798.0, "y": 1729.0}}, "position": {"x": 793.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1670, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121344, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1719.0}, "se": {"x": 802.0, "y": 1729.0}, "sw": {"x": 812.0, "y": 1719.0}, "nw": {"x": 812.0, "y": 1729.0}}, "position": {"x": 807.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1675, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121345, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1719.0}, "se": {"x": 816.0, "y": 1729.0}, "sw": {"x": 826.0, "y": 1719.0}, "nw": {"x": 826.0, "y": 1729.0}}, "position": {"x": 821.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1680, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121346, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1719.0}, "se": {"x": 830.0, "y": 1729.0}, "sw": {"x": 840.0, "y": 1719.0}, "nw": {"x": 840.0, "y": 1729.0}}, "position": {"x": 835.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1685, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121347, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1719.0}, "se": {"x": 844.0, "y": 1729.0}, "sw": {"x": 854.0, "y": 1719.0}, "nw": {"x": 854.0, "y": 1729.0}}, "position": {"x": 849.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1690, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121348, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1719.0}, "se": {"x": 858.0, "y": 1729.0}, "sw": {"x": 868.0, "y": 1719.0}, "nw": {"x": 868.0, "y": 1729.0}}, "position": {"x": 863.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1759, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121353, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1733.0}, "se": {"x": 774.0, "y": 1743.0}, "sw": {"x": 784.0, "y": 1733.0}, "nw": {"x": 784.0, "y": 1743.0}}, "position": {"x": 779.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1653, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121354, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1733.0}, "se": {"x": 788.0, "y": 1743.0}, "sw": {"x": 798.0, "y": 1733.0}, "nw": {"x": 798.0, "y": 1743.0}}, "position": {"x": 793.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1669, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121355, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1733.0}, "se": {"x": 802.0, "y": 1743.0}, "sw": {"x": 812.0, "y": 1733.0}, "nw": {"x": 812.0, "y": 1743.0}}, "position": {"x": 807.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1674, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121356, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1733.0}, "se": {"x": 816.0, "y": 1743.0}, "sw": {"x": 826.0, "y": 1733.0}, "nw": {"x": 826.0, "y": 1743.0}}, "position": {"x": 821.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1679, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121357, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1733.0}, "se": {"x": 830.0, "y": 1743.0}, "sw": {"x": 840.0, "y": 1733.0}, "nw": {"x": 840.0, "y": 1743.0}}, "position": {"x": 835.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1684, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121358, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1733.0}, "se": {"x": 844.0, "y": 1743.0}, "sw": {"x": 854.0, "y": 1733.0}, "nw": {"x": 854.0, "y": 1743.0}}, "position": {"x": 849.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1689, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121359, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1733.0}, "se": {"x": 858.0, "y": 1743.0}, "sw": {"x": 868.0, "y": 1733.0}, "nw": {"x": 868.0, "y": 1743.0}}, "position": {"x": 863.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1758, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121366, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1747.0}, "se": {"x": 774.0, "y": 1757.0}, "sw": {"x": 784.0, "y": 1747.0}, "nw": {"x": 784.0, "y": 1757.0}}, "position": {"x": 779.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1652, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121367, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1747.0}, "se": {"x": 788.0, "y": 1757.0}, "sw": {"x": 798.0, "y": 1747.0}, "nw": {"x": 798.0, "y": 1757.0}}, "position": {"x": 793.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1668, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121368, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1747.0}, "se": {"x": 802.0, "y": 1757.0}, "sw": {"x": 812.0, "y": 1747.0}, "nw": {"x": 812.0, "y": 1757.0}}, "position": {"x": 807.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1673, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121369, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1747.0}, "se": {"x": 816.0, "y": 1757.0}, "sw": {"x": 826.0, "y": 1747.0}, "nw": {"x": 826.0, "y": 1757.0}}, "position": {"x": 821.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1678, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121370, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1747.0}, "se": {"x": 830.0, "y": 1757.0}, "sw": {"x": 840.0, "y": 1747.0}, "nw": {"x": 840.0, "y": 1757.0}}, "position": {"x": 835.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1683, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121371, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1747.0}, "se": {"x": 844.0, "y": 1757.0}, "sw": {"x": 854.0, "y": 1747.0}, "nw": {"x": 854.0, "y": 1757.0}}, "position": {"x": 849.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1688, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121372, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1747.0}, "se": {"x": 858.0, "y": 1757.0}, "sw": {"x": 868.0, "y": 1747.0}, "nw": {"x": 868.0, "y": 1757.0}}, "position": {"x": 863.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1757, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121380, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1761.0}, "se": {"x": 774.0, "y": 1771.0}, "sw": {"x": 784.0, "y": 1761.0}, "nw": {"x": 784.0, "y": 1771.0}}, "position": {"x": 779.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158692, "gate": "", "blockId": null, "orderNum": 1651, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121381, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1761.0}, "se": {"x": 788.0, "y": 1771.0}, "sw": {"x": 798.0, "y": 1761.0}, "nw": {"x": 798.0, "y": 1771.0}}, "position": {"x": 793.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158693, "gate": "", "blockId": null, "orderNum": 1667, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121382, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1761.0}, "se": {"x": 802.0, "y": 1771.0}, "sw": {"x": 812.0, "y": 1761.0}, "nw": {"x": 812.0, "y": 1771.0}}, "position": {"x": 807.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158694, "gate": "", "blockId": null, "orderNum": 1672, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121383, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1761.0}, "se": {"x": 816.0, "y": 1771.0}, "sw": {"x": 826.0, "y": 1761.0}, "nw": {"x": 826.0, "y": 1771.0}}, "position": {"x": 821.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158695, "gate": "", "blockId": null, "orderNum": 1677, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121384, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1761.0}, "se": {"x": 830.0, "y": 1771.0}, "sw": {"x": 840.0, "y": 1761.0}, "nw": {"x": 840.0, "y": 1771.0}}, "position": {"x": 835.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158696, "gate": "", "blockId": null, "orderNum": 1682, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121385, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1761.0}, "se": {"x": 844.0, "y": 1771.0}, "sw": {"x": 854.0, "y": 1761.0}, "nw": {"x": 854.0, "y": 1771.0}}, "position": {"x": 849.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158697, "gate": "", "blockId": null, "orderNum": 1687, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121386, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1761.0}, "se": {"x": 858.0, "y": 1771.0}, "sw": {"x": 868.0, "y": 1761.0}, "nw": {"x": 868.0, "y": 1771.0}}, "position": {"x": 863.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158698, "gate": "", "blockId": null, "orderNum": 1756, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "5:4": [{"logicalSeatId": 1537123831, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1189.0}, "se": {"x": 1281.0, "y": 1199.0}, "sw": {"x": 1291.0, "y": 1189.0}, "nw": {"x": 1291.0, "y": 1199.0}}, "position": {"x": 1286.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123832, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1189.0}, "se": {"x": 1295.0, "y": 1199.0}, "sw": {"x": 1305.0, "y": 1189.0}, "nw": {"x": 1305.0, "y": 1199.0}}, "position": {"x": 1300.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123833, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1189.0}, "se": {"x": 1309.0, "y": 1199.0}, "sw": {"x": 1319.0, "y": 1189.0}, "nw": {"x": 1319.0, "y": 1199.0}}, "position": {"x": 1314.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123834, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1189.0}, "se": {"x": 1323.0, "y": 1199.0}, "sw": {"x": 1333.0, "y": 1189.0}, "nw": {"x": 1333.0, "y": 1199.0}}, "position": {"x": 1328.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123835, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1189.0}, "se": {"x": 1337.0, "y": 1199.0}, "sw": {"x": 1347.0, "y": 1189.0}, "nw": {"x": 1347.0, "y": 1199.0}}, "position": {"x": 1342.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123836, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1189.0}, "se": {"x": 1351.0, "y": 1199.0}, "sw": {"x": 1361.0, "y": 1189.0}, "nw": {"x": 1361.0, "y": 1199.0}}, "position": {"x": 1356.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123837, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1189.0}, "se": {"x": 1365.0, "y": 1199.0}, "sw": {"x": 1375.0, "y": 1189.0}, "nw": {"x": 1375.0, "y": 1199.0}}, "position": {"x": 1370.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123838, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1189.0}, "se": {"x": 1379.0, "y": 1199.0}, "sw": {"x": 1389.0, "y": 1189.0}, "nw": {"x": 1389.0, "y": 1199.0}}, "position": {"x": 1384.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123841, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1203.0}, "se": {"x": 1281.0, "y": 1213.0}, "sw": {"x": 1291.0, "y": 1203.0}, "nw": {"x": 1291.0, "y": 1213.0}}, "position": {"x": 1286.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123842, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1203.0}, "se": {"x": 1295.0, "y": 1213.0}, "sw": {"x": 1305.0, "y": 1203.0}, "nw": {"x": 1305.0, "y": 1213.0}}, "position": {"x": 1300.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123843, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1203.0}, "se": {"x": 1309.0, "y": 1213.0}, "sw": {"x": 1319.0, "y": 1203.0}, "nw": {"x": 1319.0, "y": 1213.0}}, "position": {"x": 1314.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123844, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1203.0}, "se": {"x": 1323.0, "y": 1213.0}, "sw": {"x": 1333.0, "y": 1203.0}, "nw": {"x": 1333.0, "y": 1213.0}}, "position": {"x": 1328.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123845, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1203.0}, "se": {"x": 1337.0, "y": 1213.0}, "sw": {"x": 1347.0, "y": 1203.0}, "nw": {"x": 1347.0, "y": 1213.0}}, "position": {"x": 1342.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123846, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1203.0}, "se": {"x": 1351.0, "y": 1213.0}, "sw": {"x": 1361.0, "y": 1203.0}, "nw": {"x": 1361.0, "y": 1213.0}}, "position": {"x": 1356.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123847, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1203.0}, "se": {"x": 1365.0, "y": 1213.0}, "sw": {"x": 1375.0, "y": 1203.0}, "nw": {"x": 1375.0, "y": 1213.0}}, "position": {"x": 1370.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123848, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1203.0}, "se": {"x": 1379.0, "y": 1213.0}, "sw": {"x": 1389.0, "y": 1203.0}, "nw": {"x": 1389.0, "y": 1213.0}}, "position": {"x": 1384.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123851, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1217.0}, "se": {"x": 1281.0, "y": 1227.0}, "sw": {"x": 1291.0, "y": 1217.0}, "nw": {"x": 1291.0, "y": 1227.0}}, "position": {"x": 1286.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123852, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1217.0}, "se": {"x": 1295.0, "y": 1227.0}, "sw": {"x": 1305.0, "y": 1217.0}, "nw": {"x": 1305.0, "y": 1227.0}}, "position": {"x": 1300.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123853, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1217.0}, "se": {"x": 1309.0, "y": 1227.0}, "sw": {"x": 1319.0, "y": 1217.0}, "nw": {"x": 1319.0, "y": 1227.0}}, "position": {"x": 1314.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123854, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1217.0}, "se": {"x": 1323.0, "y": 1227.0}, "sw": {"x": 1333.0, "y": 1217.0}, "nw": {"x": 1333.0, "y": 1227.0}}, "position": {"x": 1328.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123855, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1217.0}, "se": {"x": 1337.0, "y": 1227.0}, "sw": {"x": 1347.0, "y": 1217.0}, "nw": {"x": 1347.0, "y": 1227.0}}, "position": {"x": 1342.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123856, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1217.0}, "se": {"x": 1351.0, "y": 1227.0}, "sw": {"x": 1361.0, "y": 1217.0}, "nw": {"x": 1361.0, "y": 1227.0}}, "position": {"x": 1356.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123857, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1217.0}, "se": {"x": 1365.0, "y": 1227.0}, "sw": {"x": 1375.0, "y": 1217.0}, "nw": {"x": 1375.0, "y": 1227.0}}, "position": {"x": 1370.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123858, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1217.0}, "se": {"x": 1379.0, "y": 1227.0}, "sw": {"x": 1389.0, "y": 1217.0}, "nw": {"x": 1389.0, "y": 1227.0}}, "position": {"x": 1384.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123861, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1231.0}, "se": {"x": 1281.0, "y": 1241.0}, "sw": {"x": 1291.0, "y": 1231.0}, "nw": {"x": 1291.0, "y": 1241.0}}, "position": {"x": 1286.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123862, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1231.0}, "se": {"x": 1295.0, "y": 1241.0}, "sw": {"x": 1305.0, "y": 1231.0}, "nw": {"x": 1305.0, "y": 1241.0}}, "position": {"x": 1300.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123863, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1231.0}, "se": {"x": 1309.0, "y": 1241.0}, "sw": {"x": 1319.0, "y": 1231.0}, "nw": {"x": 1319.0, "y": 1241.0}}, "position": {"x": 1314.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123864, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1231.0}, "se": {"x": 1323.0, "y": 1241.0}, "sw": {"x": 1333.0, "y": 1231.0}, "nw": {"x": 1333.0, "y": 1241.0}}, "position": {"x": 1328.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123865, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1231.0}, "se": {"x": 1337.0, "y": 1241.0}, "sw": {"x": 1347.0, "y": 1231.0}, "nw": {"x": 1347.0, "y": 1241.0}}, "position": {"x": 1342.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123866, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1231.0}, "se": {"x": 1351.0, "y": 1241.0}, "sw": {"x": 1361.0, "y": 1231.0}, "nw": {"x": 1361.0, "y": 1241.0}}, "position": {"x": 1356.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123867, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1231.0}, "se": {"x": 1365.0, "y": 1241.0}, "sw": {"x": 1375.0, "y": 1231.0}, "nw": {"x": 1375.0, "y": 1241.0}}, "position": {"x": 1370.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123868, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1231.0}, "se": {"x": 1379.0, "y": 1241.0}, "sw": {"x": 1389.0, "y": 1231.0}, "nw": {"x": 1389.0, "y": 1241.0}}, "position": {"x": 1384.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123871, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1245.0}, "se": {"x": 1281.0, "y": 1255.0}, "sw": {"x": 1291.0, "y": 1245.0}, "nw": {"x": 1291.0, "y": 1255.0}}, "position": {"x": 1286.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123872, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1245.0}, "se": {"x": 1295.0, "y": 1255.0}, "sw": {"x": 1305.0, "y": 1245.0}, "nw": {"x": 1305.0, "y": 1255.0}}, "position": {"x": 1300.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123873, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1245.0}, "se": {"x": 1309.0, "y": 1255.0}, "sw": {"x": 1319.0, "y": 1245.0}, "nw": {"x": 1319.0, "y": 1255.0}}, "position": {"x": 1314.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123874, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1245.0}, "se": {"x": 1323.0, "y": 1255.0}, "sw": {"x": 1333.0, "y": 1245.0}, "nw": {"x": 1333.0, "y": 1255.0}}, "position": {"x": 1328.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123875, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1245.0}, "se": {"x": 1337.0, "y": 1255.0}, "sw": {"x": 1347.0, "y": 1245.0}, "nw": {"x": 1347.0, "y": 1255.0}}, "position": {"x": 1342.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123876, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1245.0}, "se": {"x": 1351.0, "y": 1255.0}, "sw": {"x": 1361.0, "y": 1245.0}, "nw": {"x": 1361.0, "y": 1255.0}}, "position": {"x": 1356.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123877, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1245.0}, "se": {"x": 1365.0, "y": 1255.0}, "sw": {"x": 1375.0, "y": 1245.0}, "nw": {"x": 1375.0, "y": 1255.0}}, "position": {"x": 1370.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123878, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1245.0}, "se": {"x": 1379.0, "y": 1255.0}, "sw": {"x": 1389.0, "y": 1245.0}, "nw": {"x": 1389.0, "y": 1255.0}}, "position": {"x": 1384.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123881, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1259.0}, "se": {"x": 1281.0, "y": 1269.0}, "sw": {"x": 1291.0, "y": 1259.0}, "nw": {"x": 1291.0, "y": 1269.0}}, "position": {"x": 1286.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123882, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1259.0}, "se": {"x": 1295.0, "y": 1269.0}, "sw": {"x": 1305.0, "y": 1259.0}, "nw": {"x": 1305.0, "y": 1269.0}}, "position": {"x": 1300.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123883, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1259.0}, "se": {"x": 1309.0, "y": 1269.0}, "sw": {"x": 1319.0, "y": 1259.0}, "nw": {"x": 1319.0, "y": 1269.0}}, "position": {"x": 1314.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123884, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1259.0}, "se": {"x": 1323.0, "y": 1269.0}, "sw": {"x": 1333.0, "y": 1259.0}, "nw": {"x": 1333.0, "y": 1269.0}}, "position": {"x": 1328.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123885, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1259.0}, "se": {"x": 1337.0, "y": 1269.0}, "sw": {"x": 1347.0, "y": 1259.0}, "nw": {"x": 1347.0, "y": 1269.0}}, "position": {"x": 1342.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123886, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1259.0}, "se": {"x": 1351.0, "y": 1269.0}, "sw": {"x": 1361.0, "y": 1259.0}, "nw": {"x": 1361.0, "y": 1269.0}}, "position": {"x": 1356.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123887, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1259.0}, "se": {"x": 1365.0, "y": 1269.0}, "sw": {"x": 1375.0, "y": 1259.0}, "nw": {"x": 1375.0, "y": 1269.0}}, "position": {"x": 1370.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123888, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1259.0}, "se": {"x": 1379.0, "y": 1269.0}, "sw": {"x": 1389.0, "y": 1259.0}, "nw": {"x": 1389.0, "y": 1269.0}}, "position": {"x": 1384.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123891, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1273.0}, "se": {"x": 1281.0, "y": 1283.0}, "sw": {"x": 1291.0, "y": 1273.0}, "nw": {"x": 1291.0, "y": 1283.0}}, "position": {"x": 1286.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123892, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1273.0}, "se": {"x": 1295.0, "y": 1283.0}, "sw": {"x": 1305.0, "y": 1273.0}, "nw": {"x": 1305.0, "y": 1283.0}}, "position": {"x": 1300.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123893, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1273.0}, "se": {"x": 1309.0, "y": 1283.0}, "sw": {"x": 1319.0, "y": 1273.0}, "nw": {"x": 1319.0, "y": 1283.0}}, "position": {"x": 1314.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123894, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1273.0}, "se": {"x": 1323.0, "y": 1283.0}, "sw": {"x": 1333.0, "y": 1273.0}, "nw": {"x": 1333.0, "y": 1283.0}}, "position": {"x": 1328.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123895, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1273.0}, "se": {"x": 1337.0, "y": 1283.0}, "sw": {"x": 1347.0, "y": 1273.0}, "nw": {"x": 1347.0, "y": 1283.0}}, "position": {"x": 1342.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123896, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1273.0}, "se": {"x": 1351.0, "y": 1283.0}, "sw": {"x": 1361.0, "y": 1273.0}, "nw": {"x": 1361.0, "y": 1283.0}}, "position": {"x": 1356.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123897, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1273.0}, "se": {"x": 1365.0, "y": 1283.0}, "sw": {"x": 1375.0, "y": 1273.0}, "nw": {"x": 1375.0, "y": 1283.0}}, "position": {"x": 1370.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123898, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1273.0}, "se": {"x": 1379.0, "y": 1283.0}, "sw": {"x": 1389.0, "y": 1273.0}, "nw": {"x": 1389.0, "y": 1283.0}}, "position": {"x": 1384.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123949, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1189.0}, "se": {"x": 1465.0, "y": 1199.0}, "sw": {"x": 1475.0, "y": 1189.0}, "nw": {"x": 1475.0, "y": 1199.0}}, "position": {"x": 1470.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123950, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1189.0}, "se": {"x": 1479.0, "y": 1199.0}, "sw": {"x": 1489.0, "y": 1189.0}, "nw": {"x": 1489.0, "y": 1199.0}}, "position": {"x": 1484.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123951, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1189.0}, "se": {"x": 1493.0, "y": 1199.0}, "sw": {"x": 1503.0, "y": 1189.0}, "nw": {"x": 1503.0, "y": 1199.0}}, "position": {"x": 1498.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123952, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1189.0}, "se": {"x": 1507.0, "y": 1199.0}, "sw": {"x": 1517.0, "y": 1189.0}, "nw": {"x": 1517.0, "y": 1199.0}}, "position": {"x": 1512.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123953, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1189.0}, "se": {"x": 1521.0, "y": 1199.0}, "sw": {"x": 1531.0, "y": 1189.0}, "nw": {"x": 1531.0, "y": 1199.0}}, "position": {"x": 1526.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123959, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1203.0}, "se": {"x": 1465.0, "y": 1213.0}, "sw": {"x": 1475.0, "y": 1203.0}, "nw": {"x": 1475.0, "y": 1213.0}}, "position": {"x": 1470.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123960, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1203.0}, "se": {"x": 1479.0, "y": 1213.0}, "sw": {"x": 1489.0, "y": 1203.0}, "nw": {"x": 1489.0, "y": 1213.0}}, "position": {"x": 1484.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123961, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1203.0}, "se": {"x": 1493.0, "y": 1213.0}, "sw": {"x": 1503.0, "y": 1203.0}, "nw": {"x": 1503.0, "y": 1213.0}}, "position": {"x": 1498.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123962, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1203.0}, "se": {"x": 1507.0, "y": 1213.0}, "sw": {"x": 1517.0, "y": 1203.0}, "nw": {"x": 1517.0, "y": 1213.0}}, "position": {"x": 1512.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123963, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1203.0}, "se": {"x": 1521.0, "y": 1213.0}, "sw": {"x": 1531.0, "y": 1203.0}, "nw": {"x": 1531.0, "y": 1213.0}}, "position": {"x": 1526.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123969, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1217.0}, "se": {"x": 1465.0, "y": 1227.0}, "sw": {"x": 1475.0, "y": 1217.0}, "nw": {"x": 1475.0, "y": 1227.0}}, "position": {"x": 1470.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123970, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1217.0}, "se": {"x": 1479.0, "y": 1227.0}, "sw": {"x": 1489.0, "y": 1217.0}, "nw": {"x": 1489.0, "y": 1227.0}}, "position": {"x": 1484.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123971, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1217.0}, "se": {"x": 1493.0, "y": 1227.0}, "sw": {"x": 1503.0, "y": 1217.0}, "nw": {"x": 1503.0, "y": 1227.0}}, "position": {"x": 1498.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123972, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1217.0}, "se": {"x": 1507.0, "y": 1227.0}, "sw": {"x": 1517.0, "y": 1217.0}, "nw": {"x": 1517.0, "y": 1227.0}}, "position": {"x": 1512.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123973, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1217.0}, "se": {"x": 1521.0, "y": 1227.0}, "sw": {"x": 1531.0, "y": 1217.0}, "nw": {"x": 1531.0, "y": 1227.0}}, "position": {"x": 1526.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123979, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1231.0}, "se": {"x": 1465.0, "y": 1241.0}, "sw": {"x": 1475.0, "y": 1231.0}, "nw": {"x": 1475.0, "y": 1241.0}}, "position": {"x": 1470.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123980, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1231.0}, "se": {"x": 1479.0, "y": 1241.0}, "sw": {"x": 1489.0, "y": 1231.0}, "nw": {"x": 1489.0, "y": 1241.0}}, "position": {"x": 1484.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123981, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1231.0}, "se": {"x": 1493.0, "y": 1241.0}, "sw": {"x": 1503.0, "y": 1231.0}, "nw": {"x": 1503.0, "y": 1241.0}}, "position": {"x": 1498.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123982, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1231.0}, "se": {"x": 1507.0, "y": 1241.0}, "sw": {"x": 1517.0, "y": 1231.0}, "nw": {"x": 1517.0, "y": 1241.0}}, "position": {"x": 1512.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123983, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1231.0}, "se": {"x": 1521.0, "y": 1241.0}, "sw": {"x": 1531.0, "y": 1231.0}, "nw": {"x": 1531.0, "y": 1241.0}}, "position": {"x": 1526.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123989, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1245.0}, "se": {"x": 1465.0, "y": 1255.0}, "sw": {"x": 1475.0, "y": 1245.0}, "nw": {"x": 1475.0, "y": 1255.0}}, "position": {"x": 1470.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123990, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1245.0}, "se": {"x": 1479.0, "y": 1255.0}, "sw": {"x": 1489.0, "y": 1245.0}, "nw": {"x": 1489.0, "y": 1255.0}}, "position": {"x": 1484.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123991, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1245.0}, "se": {"x": 1493.0, "y": 1255.0}, "sw": {"x": 1503.0, "y": 1245.0}, "nw": {"x": 1503.0, "y": 1255.0}}, "position": {"x": 1498.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123992, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1245.0}, "se": {"x": 1507.0, "y": 1255.0}, "sw": {"x": 1517.0, "y": 1245.0}, "nw": {"x": 1517.0, "y": 1255.0}}, "position": {"x": 1512.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123993, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1245.0}, "se": {"x": 1521.0, "y": 1255.0}, "sw": {"x": 1531.0, "y": 1245.0}, "nw": {"x": 1531.0, "y": 1255.0}}, "position": {"x": 1526.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123999, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1259.0}, "se": {"x": 1465.0, "y": 1269.0}, "sw": {"x": 1475.0, "y": 1259.0}, "nw": {"x": 1475.0, "y": 1269.0}}, "position": {"x": 1470.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124000, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1259.0}, "se": {"x": 1479.0, "y": 1269.0}, "sw": {"x": 1489.0, "y": 1259.0}, "nw": {"x": 1489.0, "y": 1269.0}}, "position": {"x": 1484.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124001, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1259.0}, "se": {"x": 1493.0, "y": 1269.0}, "sw": {"x": 1503.0, "y": 1259.0}, "nw": {"x": 1503.0, "y": 1269.0}}, "position": {"x": 1498.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124002, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1259.0}, "se": {"x": 1507.0, "y": 1269.0}, "sw": {"x": 1517.0, "y": 1259.0}, "nw": {"x": 1517.0, "y": 1269.0}}, "position": {"x": 1512.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124003, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1259.0}, "se": {"x": 1521.0, "y": 1269.0}, "sw": {"x": 1531.0, "y": 1259.0}, "nw": {"x": 1531.0, "y": 1269.0}}, "position": {"x": 1526.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124009, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1273.0}, "se": {"x": 1465.0, "y": 1283.0}, "sw": {"x": 1475.0, "y": 1273.0}, "nw": {"x": 1475.0, "y": 1283.0}}, "position": {"x": 1470.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124010, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1273.0}, "se": {"x": 1479.0, "y": 1283.0}, "sw": {"x": 1489.0, "y": 1273.0}, "nw": {"x": 1489.0, "y": 1283.0}}, "position": {"x": 1484.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124011, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1273.0}, "se": {"x": 1493.0, "y": 1283.0}, "sw": {"x": 1503.0, "y": 1273.0}, "nw": {"x": 1503.0, "y": 1283.0}}, "position": {"x": 1498.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124012, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1273.0}, "se": {"x": 1507.0, "y": 1283.0}, "sw": {"x": 1517.0, "y": 1273.0}, "nw": {"x": 1517.0, "y": 1283.0}}, "position": {"x": 1512.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124013, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1273.0}, "se": {"x": 1521.0, "y": 1283.0}, "sw": {"x": 1531.0, "y": 1273.0}, "nw": {"x": 1531.0, "y": 1283.0}}, "position": {"x": 1526.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "2:7": [{"logicalSeatId": 1537121401, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1803.0}, "se": {"x": 676.0, "y": 1813.0}, "sw": {"x": 686.0, "y": 1803.0}, "nw": {"x": 686.0, "y": 1813.0}}, "position": {"x": 681.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1124, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121402, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1803.0}, "se": {"x": 690.0, "y": 1813.0}, "sw": {"x": 700.0, "y": 1803.0}, "nw": {"x": 700.0, "y": 1813.0}}, "position": {"x": 695.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1135, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121403, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1803.0}, "se": {"x": 704.0, "y": 1813.0}, "sw": {"x": 714.0, "y": 1803.0}, "nw": {"x": 714.0, "y": 1813.0}}, "position": {"x": 709.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1146, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121404, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1803.0}, "se": {"x": 718.0, "y": 1813.0}, "sw": {"x": 728.0, "y": 1803.0}, "nw": {"x": 728.0, "y": 1813.0}}, "position": {"x": 723.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1157, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121405, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1803.0}, "se": {"x": 732.0, "y": 1813.0}, "sw": {"x": 742.0, "y": 1803.0}, "nw": {"x": 742.0, "y": 1813.0}}, "position": {"x": 737.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1178, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121406, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1803.0}, "se": {"x": 746.0, "y": 1813.0}, "sw": {"x": 756.0, "y": 1803.0}, "nw": {"x": 756.0, "y": 1813.0}}, "position": {"x": 751.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1266, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121407, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1803.0}, "se": {"x": 760.0, "y": 1813.0}, "sw": {"x": 770.0, "y": 1803.0}, "nw": {"x": 770.0, "y": 1813.0}}, "position": {"x": 765.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1375, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121416, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1817.0}, "se": {"x": 662.0, "y": 1827.0}, "sw": {"x": 672.0, "y": 1817.0}, "nw": {"x": 672.0, "y": 1827.0}}, "position": {"x": 667.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1114, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121417, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1817.0}, "se": {"x": 676.0, "y": 1827.0}, "sw": {"x": 686.0, "y": 1817.0}, "nw": {"x": 686.0, "y": 1827.0}}, "position": {"x": 681.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1123, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121418, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1817.0}, "se": {"x": 690.0, "y": 1827.0}, "sw": {"x": 700.0, "y": 1817.0}, "nw": {"x": 700.0, "y": 1827.0}}, "position": {"x": 695.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1134, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121419, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1817.0}, "se": {"x": 704.0, "y": 1827.0}, "sw": {"x": 714.0, "y": 1817.0}, "nw": {"x": 714.0, "y": 1827.0}}, "position": {"x": 709.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1145, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121420, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1817.0}, "se": {"x": 718.0, "y": 1827.0}, "sw": {"x": 728.0, "y": 1817.0}, "nw": {"x": 728.0, "y": 1827.0}}, "position": {"x": 723.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1156, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121421, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1817.0}, "se": {"x": 732.0, "y": 1827.0}, "sw": {"x": 742.0, "y": 1817.0}, "nw": {"x": 742.0, "y": 1827.0}}, "position": {"x": 737.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1177, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121422, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1817.0}, "se": {"x": 746.0, "y": 1827.0}, "sw": {"x": 756.0, "y": 1817.0}, "nw": {"x": 756.0, "y": 1827.0}}, "position": {"x": 751.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1265, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121423, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1817.0}, "se": {"x": 760.0, "y": 1827.0}, "sw": {"x": 770.0, "y": 1817.0}, "nw": {"x": 770.0, "y": 1827.0}}, "position": {"x": 765.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1374, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121433, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1831.0}, "se": {"x": 662.0, "y": 1841.0}, "sw": {"x": 672.0, "y": 1831.0}, "nw": {"x": 672.0, "y": 1841.0}}, "position": {"x": 667.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1113, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121434, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1831.0}, "se": {"x": 676.0, "y": 1841.0}, "sw": {"x": 686.0, "y": 1831.0}, "nw": {"x": 686.0, "y": 1841.0}}, "position": {"x": 681.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1122, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121435, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1831.0}, "se": {"x": 690.0, "y": 1841.0}, "sw": {"x": 700.0, "y": 1831.0}, "nw": {"x": 700.0, "y": 1841.0}}, "position": {"x": 695.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1133, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121436, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1831.0}, "se": {"x": 704.0, "y": 1841.0}, "sw": {"x": 714.0, "y": 1831.0}, "nw": {"x": 714.0, "y": 1841.0}}, "position": {"x": 709.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1144, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121437, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1831.0}, "se": {"x": 718.0, "y": 1841.0}, "sw": {"x": 728.0, "y": 1831.0}, "nw": {"x": 728.0, "y": 1841.0}}, "position": {"x": 723.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1155, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121438, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1831.0}, "se": {"x": 732.0, "y": 1841.0}, "sw": {"x": 742.0, "y": 1831.0}, "nw": {"x": 742.0, "y": 1841.0}}, "position": {"x": 737.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1176, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121439, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1831.0}, "se": {"x": 746.0, "y": 1841.0}, "sw": {"x": 756.0, "y": 1831.0}, "nw": {"x": 756.0, "y": 1841.0}}, "position": {"x": 751.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1264, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121440, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1831.0}, "se": {"x": 760.0, "y": 1841.0}, "sw": {"x": 770.0, "y": 1831.0}, "nw": {"x": 770.0, "y": 1841.0}}, "position": {"x": 765.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1373, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121450, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1845.0}, "se": {"x": 648.0, "y": 1855.0}, "sw": {"x": 658.0, "y": 1845.0}, "nw": {"x": 658.0, "y": 1855.0}}, "position": {"x": 653.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1105, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121451, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1845.0}, "se": {"x": 662.0, "y": 1855.0}, "sw": {"x": 672.0, "y": 1845.0}, "nw": {"x": 672.0, "y": 1855.0}}, "position": {"x": 667.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1112, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121452, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1845.0}, "se": {"x": 676.0, "y": 1855.0}, "sw": {"x": 686.0, "y": 1845.0}, "nw": {"x": 686.0, "y": 1855.0}}, "position": {"x": 681.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1121, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121453, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1845.0}, "se": {"x": 690.0, "y": 1855.0}, "sw": {"x": 700.0, "y": 1845.0}, "nw": {"x": 700.0, "y": 1855.0}}, "position": {"x": 695.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1132, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121454, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1845.0}, "se": {"x": 704.0, "y": 1855.0}, "sw": {"x": 714.0, "y": 1845.0}, "nw": {"x": 714.0, "y": 1855.0}}, "position": {"x": 709.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1143, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121455, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1845.0}, "se": {"x": 718.0, "y": 1855.0}, "sw": {"x": 728.0, "y": 1845.0}, "nw": {"x": 728.0, "y": 1855.0}}, "position": {"x": 723.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1154, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121456, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1845.0}, "se": {"x": 732.0, "y": 1855.0}, "sw": {"x": 742.0, "y": 1845.0}, "nw": {"x": 742.0, "y": 1855.0}}, "position": {"x": 737.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1175, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121457, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1845.0}, "se": {"x": 746.0, "y": 1855.0}, "sw": {"x": 756.0, "y": 1845.0}, "nw": {"x": 756.0, "y": 1855.0}}, "position": {"x": 751.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1263, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121458, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1845.0}, "se": {"x": 760.0, "y": 1855.0}, "sw": {"x": 770.0, "y": 1845.0}, "nw": {"x": 770.0, "y": 1855.0}}, "position": {"x": 765.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1372, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121469, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1859.0}, "se": {"x": 634.0, "y": 1869.0}, "sw": {"x": 644.0, "y": 1859.0}, "nw": {"x": 644.0, "y": 1869.0}}, "position": {"x": 639.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1096, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121470, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1859.0}, "se": {"x": 648.0, "y": 1869.0}, "sw": {"x": 658.0, "y": 1859.0}, "nw": {"x": 658.0, "y": 1869.0}}, "position": {"x": 653.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1104, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121471, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1859.0}, "se": {"x": 662.0, "y": 1869.0}, "sw": {"x": 672.0, "y": 1859.0}, "nw": {"x": 672.0, "y": 1869.0}}, "position": {"x": 667.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1111, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121472, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1859.0}, "se": {"x": 676.0, "y": 1869.0}, "sw": {"x": 686.0, "y": 1859.0}, "nw": {"x": 686.0, "y": 1869.0}}, "position": {"x": 681.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1120, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121473, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1859.0}, "se": {"x": 690.0, "y": 1869.0}, "sw": {"x": 700.0, "y": 1859.0}, "nw": {"x": 700.0, "y": 1869.0}}, "position": {"x": 695.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1131, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121474, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1859.0}, "se": {"x": 704.0, "y": 1869.0}, "sw": {"x": 714.0, "y": 1859.0}, "nw": {"x": 714.0, "y": 1869.0}}, "position": {"x": 709.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1142, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121475, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1859.0}, "se": {"x": 718.0, "y": 1869.0}, "sw": {"x": 728.0, "y": 1859.0}, "nw": {"x": 728.0, "y": 1869.0}}, "position": {"x": 723.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1153, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121476, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1859.0}, "se": {"x": 732.0, "y": 1869.0}, "sw": {"x": 742.0, "y": 1859.0}, "nw": {"x": 742.0, "y": 1869.0}}, "position": {"x": 737.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1174, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121477, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1859.0}, "se": {"x": 746.0, "y": 1869.0}, "sw": {"x": 756.0, "y": 1859.0}, "nw": {"x": 756.0, "y": 1869.0}}, "position": {"x": 751.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1262, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121478, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1859.0}, "se": {"x": 760.0, "y": 1869.0}, "sw": {"x": 770.0, "y": 1859.0}, "nw": {"x": 770.0, "y": 1869.0}}, "position": {"x": 765.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1371, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121494, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1873.0}, "se": {"x": 634.0, "y": 1883.0}, "sw": {"x": 644.0, "y": 1873.0}, "nw": {"x": 644.0, "y": 1883.0}}, "position": {"x": 639.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1095, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121495, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1873.0}, "se": {"x": 648.0, "y": 1883.0}, "sw": {"x": 658.0, "y": 1873.0}, "nw": {"x": 658.0, "y": 1883.0}}, "position": {"x": 653.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1103, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121496, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1873.0}, "se": {"x": 662.0, "y": 1883.0}, "sw": {"x": 672.0, "y": 1873.0}, "nw": {"x": 672.0, "y": 1883.0}}, "position": {"x": 667.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1110, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121497, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1873.0}, "se": {"x": 676.0, "y": 1883.0}, "sw": {"x": 686.0, "y": 1873.0}, "nw": {"x": 686.0, "y": 1883.0}}, "position": {"x": 681.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1119, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121498, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1873.0}, "se": {"x": 690.0, "y": 1883.0}, "sw": {"x": 700.0, "y": 1873.0}, "nw": {"x": 700.0, "y": 1883.0}}, "position": {"x": 695.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1130, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121499, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1873.0}, "se": {"x": 704.0, "y": 1883.0}, "sw": {"x": 714.0, "y": 1873.0}, "nw": {"x": 714.0, "y": 1883.0}}, "position": {"x": 709.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1141, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121500, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1873.0}, "se": {"x": 718.0, "y": 1883.0}, "sw": {"x": 728.0, "y": 1873.0}, "nw": {"x": 728.0, "y": 1883.0}}, "position": {"x": 723.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1152, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121501, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1873.0}, "se": {"x": 732.0, "y": 1883.0}, "sw": {"x": 742.0, "y": 1873.0}, "nw": {"x": 742.0, "y": 1883.0}}, "position": {"x": 737.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1173, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121502, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1873.0}, "se": {"x": 746.0, "y": 1883.0}, "sw": {"x": 756.0, "y": 1873.0}, "nw": {"x": 756.0, "y": 1883.0}}, "position": {"x": 751.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1261, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121503, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1873.0}, "se": {"x": 760.0, "y": 1883.0}, "sw": {"x": 770.0, "y": 1873.0}, "nw": {"x": 770.0, "y": 1883.0}}, "position": {"x": 765.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1370, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121519, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1887.0}, "se": {"x": 620.0, "y": 1897.0}, "sw": {"x": 630.0, "y": 1887.0}, "nw": {"x": 630.0, "y": 1897.0}}, "position": {"x": 625.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1088, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121520, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1887.0}, "se": {"x": 634.0, "y": 1897.0}, "sw": {"x": 644.0, "y": 1887.0}, "nw": {"x": 644.0, "y": 1897.0}}, "position": {"x": 639.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1094, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121521, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1887.0}, "se": {"x": 648.0, "y": 1897.0}, "sw": {"x": 658.0, "y": 1887.0}, "nw": {"x": 658.0, "y": 1897.0}}, "position": {"x": 653.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1102, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121522, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1887.0}, "se": {"x": 662.0, "y": 1897.0}, "sw": {"x": 672.0, "y": 1887.0}, "nw": {"x": 672.0, "y": 1897.0}}, "position": {"x": 667.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1109, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121523, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1887.0}, "se": {"x": 676.0, "y": 1897.0}, "sw": {"x": 686.0, "y": 1887.0}, "nw": {"x": 686.0, "y": 1897.0}}, "position": {"x": 681.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1118, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121524, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1887.0}, "se": {"x": 690.0, "y": 1897.0}, "sw": {"x": 700.0, "y": 1887.0}, "nw": {"x": 700.0, "y": 1897.0}}, "position": {"x": 695.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1129, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121525, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1887.0}, "se": {"x": 704.0, "y": 1897.0}, "sw": {"x": 714.0, "y": 1887.0}, "nw": {"x": 714.0, "y": 1897.0}}, "position": {"x": 709.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1140, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121526, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1887.0}, "se": {"x": 718.0, "y": 1897.0}, "sw": {"x": 728.0, "y": 1887.0}, "nw": {"x": 728.0, "y": 1897.0}}, "position": {"x": 723.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1151, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121527, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1887.0}, "se": {"x": 732.0, "y": 1897.0}, "sw": {"x": 742.0, "y": 1887.0}, "nw": {"x": 742.0, "y": 1897.0}}, "position": {"x": 737.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1172, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121528, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1887.0}, "se": {"x": 746.0, "y": 1897.0}, "sw": {"x": 756.0, "y": 1887.0}, "nw": {"x": 756.0, "y": 1897.0}}, "position": {"x": 751.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1260, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121529, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1887.0}, "se": {"x": 760.0, "y": 1897.0}, "sw": {"x": 770.0, "y": 1887.0}, "nw": {"x": 770.0, "y": 1897.0}}, "position": {"x": 765.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1369, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121546, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1901.0}, "se": {"x": 606.0, "y": 1911.0}, "sw": {"x": 616.0, "y": 1901.0}, "nw": {"x": 616.0, "y": 1911.0}}, "position": {"x": 611.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1081, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121547, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1901.0}, "se": {"x": 620.0, "y": 1911.0}, "sw": {"x": 630.0, "y": 1901.0}, "nw": {"x": 630.0, "y": 1911.0}}, "position": {"x": 625.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1087, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121548, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1901.0}, "se": {"x": 634.0, "y": 1911.0}, "sw": {"x": 644.0, "y": 1901.0}, "nw": {"x": 644.0, "y": 1911.0}}, "position": {"x": 639.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1093, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121549, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1901.0}, "se": {"x": 648.0, "y": 1911.0}, "sw": {"x": 658.0, "y": 1901.0}, "nw": {"x": 658.0, "y": 1911.0}}, "position": {"x": 653.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1101, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121550, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1901.0}, "se": {"x": 662.0, "y": 1911.0}, "sw": {"x": 672.0, "y": 1901.0}, "nw": {"x": 672.0, "y": 1911.0}}, "position": {"x": 667.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1108, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121551, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1901.0}, "se": {"x": 676.0, "y": 1911.0}, "sw": {"x": 686.0, "y": 1901.0}, "nw": {"x": 686.0, "y": 1911.0}}, "position": {"x": 681.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1117, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121552, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1901.0}, "se": {"x": 690.0, "y": 1911.0}, "sw": {"x": 700.0, "y": 1901.0}, "nw": {"x": 700.0, "y": 1911.0}}, "position": {"x": 695.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1128, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121553, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1901.0}, "se": {"x": 704.0, "y": 1911.0}, "sw": {"x": 714.0, "y": 1901.0}, "nw": {"x": 714.0, "y": 1911.0}}, "position": {"x": 709.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1139, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121554, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1901.0}, "se": {"x": 718.0, "y": 1911.0}, "sw": {"x": 728.0, "y": 1901.0}, "nw": {"x": 728.0, "y": 1911.0}}, "position": {"x": 723.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1150, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121555, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1901.0}, "se": {"x": 732.0, "y": 1911.0}, "sw": {"x": 742.0, "y": 1901.0}, "nw": {"x": 742.0, "y": 1911.0}}, "position": {"x": 737.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1171, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121556, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1901.0}, "se": {"x": 746.0, "y": 1911.0}, "sw": {"x": 756.0, "y": 1901.0}, "nw": {"x": 756.0, "y": 1911.0}}, "position": {"x": 751.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1259, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121557, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1901.0}, "se": {"x": 760.0, "y": 1911.0}, "sw": {"x": 770.0, "y": 1901.0}, "nw": {"x": 770.0, "y": 1911.0}}, "position": {"x": 765.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1368, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121574, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1915.0}, "se": {"x": 606.0, "y": 1925.0}, "sw": {"x": 616.0, "y": 1915.0}, "nw": {"x": 616.0, "y": 1925.0}}, "position": {"x": 611.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1080, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121575, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1915.0}, "se": {"x": 620.0, "y": 1925.0}, "sw": {"x": 630.0, "y": 1915.0}, "nw": {"x": 630.0, "y": 1925.0}}, "position": {"x": 625.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1086, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121576, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1915.0}, "se": {"x": 634.0, "y": 1925.0}, "sw": {"x": 644.0, "y": 1915.0}, "nw": {"x": 644.0, "y": 1925.0}}, "position": {"x": 639.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1092, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121577, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1915.0}, "se": {"x": 648.0, "y": 1925.0}, "sw": {"x": 658.0, "y": 1915.0}, "nw": {"x": 658.0, "y": 1925.0}}, "position": {"x": 653.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1100, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121578, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1915.0}, "se": {"x": 662.0, "y": 1925.0}, "sw": {"x": 672.0, "y": 1915.0}, "nw": {"x": 672.0, "y": 1925.0}}, "position": {"x": 667.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1107, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121579, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1915.0}, "se": {"x": 676.0, "y": 1925.0}, "sw": {"x": 686.0, "y": 1915.0}, "nw": {"x": 686.0, "y": 1925.0}}, "position": {"x": 681.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1116, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121580, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1915.0}, "se": {"x": 690.0, "y": 1925.0}, "sw": {"x": 700.0, "y": 1915.0}, "nw": {"x": 700.0, "y": 1925.0}}, "position": {"x": 695.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1127, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121581, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1915.0}, "se": {"x": 704.0, "y": 1925.0}, "sw": {"x": 714.0, "y": 1915.0}, "nw": {"x": 714.0, "y": 1925.0}}, "position": {"x": 709.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1138, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121582, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1915.0}, "se": {"x": 718.0, "y": 1925.0}, "sw": {"x": 728.0, "y": 1915.0}, "nw": {"x": 728.0, "y": 1925.0}}, "position": {"x": 723.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1149, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121583, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1915.0}, "se": {"x": 732.0, "y": 1925.0}, "sw": {"x": 742.0, "y": 1915.0}, "nw": {"x": 742.0, "y": 1925.0}}, "position": {"x": 737.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1170, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121584, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1915.0}, "se": {"x": 746.0, "y": 1925.0}, "sw": {"x": 756.0, "y": 1915.0}, "nw": {"x": 756.0, "y": 1925.0}}, "position": {"x": 751.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1258, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400021\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121585, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1915.0}, "se": {"x": 760.0, "y": 1925.0}, "sw": {"x": 770.0, "y": 1915.0}, "nw": {"x": 770.0, "y": 1925.0}}, "position": {"x": 765.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1367, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400022\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121600, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 592.0, "y": 1929.0}, "se": {"x": 592.0, "y": 1939.0}, "sw": {"x": 602.0, "y": 1929.0}, "nw": {"x": 602.0, "y": 1939.0}}, "position": {"x": 597.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158912, "gate": "", "blockId": null, "orderNum": 1075, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121601, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 606.0, "y": 1929.0}, "se": {"x": 606.0, "y": 1939.0}, "sw": {"x": 616.0, "y": 1929.0}, "nw": {"x": 616.0, "y": 1939.0}}, "position": {"x": 611.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158913, "gate": "", "blockId": null, "orderNum": 1079, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121602, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 620.0, "y": 1929.0}, "se": {"x": 620.0, "y": 1939.0}, "sw": {"x": 630.0, "y": 1929.0}, "nw": {"x": 630.0, "y": 1939.0}}, "position": {"x": 625.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158914, "gate": "", "blockId": null, "orderNum": 1085, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121603, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 634.0, "y": 1929.0}, "se": {"x": 634.0, "y": 1939.0}, "sw": {"x": 644.0, "y": 1929.0}, "nw": {"x": 644.0, "y": 1939.0}}, "position": {"x": 639.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158915, "gate": "", "blockId": null, "orderNum": 1091, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121604, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 648.0, "y": 1929.0}, "se": {"x": 648.0, "y": 1939.0}, "sw": {"x": 658.0, "y": 1929.0}, "nw": {"x": 658.0, "y": 1939.0}}, "position": {"x": 653.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158916, "gate": "", "blockId": null, "orderNum": 1099, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121605, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 662.0, "y": 1929.0}, "se": {"x": 662.0, "y": 1939.0}, "sw": {"x": 672.0, "y": 1929.0}, "nw": {"x": 672.0, "y": 1939.0}}, "position": {"x": 667.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158917, "gate": "", "blockId": null, "orderNum": 1106, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121606, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 676.0, "y": 1929.0}, "se": {"x": 676.0, "y": 1939.0}, "sw": {"x": 686.0, "y": 1929.0}, "nw": {"x": 686.0, "y": 1939.0}}, "position": {"x": 681.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158918, "gate": "", "blockId": null, "orderNum": 1115, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121607, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 690.0, "y": 1929.0}, "se": {"x": 690.0, "y": 1939.0}, "sw": {"x": 700.0, "y": 1929.0}, "nw": {"x": 700.0, "y": 1939.0}}, "position": {"x": 695.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158919, "gate": "", "blockId": null, "orderNum": 1126, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121608, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 704.0, "y": 1929.0}, "se": {"x": 704.0, "y": 1939.0}, "sw": {"x": 714.0, "y": 1929.0}, "nw": {"x": 714.0, "y": 1939.0}}, "position": {"x": 709.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158920, "gate": "", "blockId": null, "orderNum": 1137, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121609, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 718.0, "y": 1929.0}, "se": {"x": 718.0, "y": 1939.0}, "sw": {"x": 728.0, "y": 1929.0}, "nw": {"x": 728.0, "y": 1939.0}}, "position": {"x": 723.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158921, "gate": "", "blockId": null, "orderNum": 1148, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121610, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 732.0, "y": 1929.0}, "se": {"x": 732.0, "y": 1939.0}, "sw": {"x": 742.0, "y": 1929.0}, "nw": {"x": 742.0, "y": 1939.0}}, "position": {"x": 737.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158922, "gate": "", "blockId": null, "orderNum": 1169, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121611, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 746.0, "y": 1929.0}, "se": {"x": 746.0, "y": 1939.0}, "sw": {"x": 756.0, "y": 1929.0}, "nw": {"x": 756.0, "y": 1939.0}}, "position": {"x": 751.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158923, "gate": "", "blockId": null, "orderNum": 1257, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121612, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 760.0, "y": 1929.0}, "se": {"x": 760.0, "y": 1939.0}, "sw": {"x": 770.0, "y": 1929.0}, "nw": {"x": 770.0, "y": 1939.0}}, "position": {"x": 765.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158924, "gate": "", "blockId": null, "orderNum": 1366, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400020\ubc88", "area": {"virtualX": 2, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "4:5": [{"logicalSeatId": 1537123779, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1031.0, "y": 1287.0}, "se": {"x": 1031.0, "y": 1297.0}, "sw": {"x": 1041.0, "y": 1287.0}, "nw": {"x": 1041.0, "y": 1297.0}}, "position": {"x": 1036.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123780, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1045.0, "y": 1287.0}, "se": {"x": 1045.0, "y": 1297.0}, "sw": {"x": 1055.0, "y": 1287.0}, "nw": {"x": 1055.0, "y": 1297.0}}, "position": {"x": 1050.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123781, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1059.0, "y": 1287.0}, "se": {"x": 1059.0, "y": 1297.0}, "sw": {"x": 1069.0, "y": 1287.0}, "nw": {"x": 1069.0, "y": 1297.0}}, "position": {"x": 1064.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123782, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1073.0, "y": 1287.0}, "se": {"x": 1073.0, "y": 1297.0}, "sw": {"x": 1083.0, "y": 1287.0}, "nw": {"x": 1083.0, "y": 1297.0}}, "position": {"x": 1078.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123783, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1087.0, "y": 1287.0}, "se": {"x": 1087.0, "y": 1297.0}, "sw": {"x": 1097.0, "y": 1287.0}, "nw": {"x": 1097.0, "y": 1297.0}}, "position": {"x": 1092.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123784, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1101.0, "y": 1287.0}, "se": {"x": 1101.0, "y": 1297.0}, "sw": {"x": 1111.0, "y": 1287.0}, "nw": {"x": 1111.0, "y": 1297.0}}, "position": {"x": 1106.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123785, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1115.0, "y": 1287.0}, "se": {"x": 1115.0, "y": 1297.0}, "sw": {"x": 1125.0, "y": 1287.0}, "nw": {"x": 1125.0, "y": 1297.0}}, "position": {"x": 1120.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123786, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1129.0, "y": 1287.0}, "se": {"x": 1129.0, "y": 1297.0}, "sw": {"x": 1139.0, "y": 1287.0}, "nw": {"x": 1139.0, "y": 1297.0}}, "position": {"x": 1134.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123787, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1143.0, "y": 1287.0}, "se": {"x": 1143.0, "y": 1297.0}, "sw": {"x": 1153.0, "y": 1287.0}, "nw": {"x": 1153.0, "y": 1297.0}}, "position": {"x": 1148.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123788, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1157.0, "y": 1287.0}, "se": {"x": 1157.0, "y": 1297.0}, "sw": {"x": 1167.0, "y": 1287.0}, "nw": {"x": 1167.0, "y": 1297.0}}, "position": {"x": 1162.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 2\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "2\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500002\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123899, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1253.0, "y": 1287.0}, "se": {"x": 1253.0, "y": 1297.0}, "sw": {"x": 1263.0, "y": 1287.0}, "nw": {"x": 1263.0, "y": 1297.0}}, "position": {"x": 1258.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123900, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1267.0, "y": 1287.0}, "se": {"x": 1267.0, "y": 1297.0}, "sw": {"x": 1277.0, "y": 1287.0}, "nw": {"x": 1277.0, "y": 1297.0}}, "position": {"x": 1272.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "6:3": [{"logicalSeatId": 1537123464, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 776.0}, "se": {"x": 1535.0, "y": 786.0}, "sw": {"x": 1545.0, "y": 776.0}, "nw": {"x": 1545.0, "y": 786.0}}, "position": {"x": 1540.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123465, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 776.0}, "se": {"x": 1549.0, "y": 786.0}, "sw": {"x": 1559.0, "y": 776.0}, "nw": {"x": 1559.0, "y": 786.0}}, "position": {"x": 1554.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123466, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 776.0}, "se": {"x": 1563.0, "y": 786.0}, "sw": {"x": 1573.0, "y": 776.0}, "nw": {"x": 1573.0, "y": 786.0}}, "position": {"x": 1568.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123467, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 776.0}, "se": {"x": 1577.0, "y": 786.0}, "sw": {"x": 1587.0, "y": 776.0}, "nw": {"x": 1587.0, "y": 786.0}}, "position": {"x": 1582.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123468, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 776.0}, "se": {"x": 1591.0, "y": 786.0}, "sw": {"x": 1601.0, "y": 776.0}, "nw": {"x": 1601.0, "y": 786.0}}, "position": {"x": 1596.0, "y": 781.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123474, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 790.0}, "se": {"x": 1535.0, "y": 800.0}, "sw": {"x": 1545.0, "y": 790.0}, "nw": {"x": 1545.0, "y": 800.0}}, "position": {"x": 1540.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123475, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 790.0}, "se": {"x": 1549.0, "y": 800.0}, "sw": {"x": 1559.0, "y": 790.0}, "nw": {"x": 1559.0, "y": 800.0}}, "position": {"x": 1554.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123476, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 790.0}, "se": {"x": 1563.0, "y": 800.0}, "sw": {"x": 1573.0, "y": 790.0}, "nw": {"x": 1573.0, "y": 800.0}}, "position": {"x": 1568.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123477, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 790.0}, "se": {"x": 1577.0, "y": 800.0}, "sw": {"x": 1587.0, "y": 790.0}, "nw": {"x": 1587.0, "y": 800.0}}, "position": {"x": 1582.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123478, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 790.0}, "se": {"x": 1591.0, "y": 800.0}, "sw": {"x": 1601.0, "y": 790.0}, "nw": {"x": 1601.0, "y": 800.0}}, "position": {"x": 1596.0, "y": 795.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123484, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 804.0}, "se": {"x": 1535.0, "y": 814.0}, "sw": {"x": 1545.0, "y": 804.0}, "nw": {"x": 1545.0, "y": 814.0}}, "position": {"x": 1540.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123485, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 804.0}, "se": {"x": 1549.0, "y": 814.0}, "sw": {"x": 1559.0, "y": 804.0}, "nw": {"x": 1559.0, "y": 814.0}}, "position": {"x": 1554.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123486, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 804.0}, "se": {"x": 1563.0, "y": 814.0}, "sw": {"x": 1573.0, "y": 804.0}, "nw": {"x": 1573.0, "y": 814.0}}, "position": {"x": 1568.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123487, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 804.0}, "se": {"x": 1577.0, "y": 814.0}, "sw": {"x": 1587.0, "y": 804.0}, "nw": {"x": 1587.0, "y": 814.0}}, "position": {"x": 1582.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123488, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 804.0}, "se": {"x": 1591.0, "y": 814.0}, "sw": {"x": 1601.0, "y": 804.0}, "nw": {"x": 1601.0, "y": 814.0}}, "position": {"x": 1596.0, "y": 809.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123494, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 818.0}, "se": {"x": 1535.0, "y": 828.0}, "sw": {"x": 1545.0, "y": 818.0}, "nw": {"x": 1545.0, "y": 828.0}}, "position": {"x": 1540.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123495, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 818.0}, "se": {"x": 1549.0, "y": 828.0}, "sw": {"x": 1559.0, "y": 818.0}, "nw": {"x": 1559.0, "y": 828.0}}, "position": {"x": 1554.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123496, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 818.0}, "se": {"x": 1563.0, "y": 828.0}, "sw": {"x": 1573.0, "y": 818.0}, "nw": {"x": 1573.0, "y": 828.0}}, "position": {"x": 1568.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123497, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 818.0}, "se": {"x": 1577.0, "y": 828.0}, "sw": {"x": 1587.0, "y": 818.0}, "nw": {"x": 1587.0, "y": 828.0}}, "position": {"x": 1582.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123498, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 818.0}, "se": {"x": 1591.0, "y": 828.0}, "sw": {"x": 1601.0, "y": 818.0}, "nw": {"x": 1601.0, "y": 828.0}}, "position": {"x": 1596.0, "y": 823.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123504, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 832.0}, "se": {"x": 1535.0, "y": 842.0}, "sw": {"x": 1545.0, "y": 832.0}, "nw": {"x": 1545.0, "y": 842.0}}, "position": {"x": 1540.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123505, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 832.0}, "se": {"x": 1549.0, "y": 842.0}, "sw": {"x": 1559.0, "y": 832.0}, "nw": {"x": 1559.0, "y": 842.0}}, "position": {"x": 1554.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123506, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 832.0}, "se": {"x": 1563.0, "y": 842.0}, "sw": {"x": 1573.0, "y": 832.0}, "nw": {"x": 1573.0, "y": 842.0}}, "position": {"x": 1568.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123507, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 832.0}, "se": {"x": 1577.0, "y": 842.0}, "sw": {"x": 1587.0, "y": 832.0}, "nw": {"x": 1587.0, "y": 842.0}}, "position": {"x": 1582.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123508, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 832.0}, "se": {"x": 1591.0, "y": 842.0}, "sw": {"x": 1601.0, "y": 832.0}, "nw": {"x": 1601.0, "y": 842.0}}, "position": {"x": 1596.0, "y": 837.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123514, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 873.0}, "se": {"x": 1535.0, "y": 883.0}, "sw": {"x": 1545.0, "y": 873.0}, "nw": {"x": 1545.0, "y": 883.0}}, "position": {"x": 1540.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123515, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 873.0}, "se": {"x": 1549.0, "y": 883.0}, "sw": {"x": 1559.0, "y": 873.0}, "nw": {"x": 1559.0, "y": 883.0}}, "position": {"x": 1554.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123516, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 873.0}, "se": {"x": 1563.0, "y": 883.0}, "sw": {"x": 1573.0, "y": 873.0}, "nw": {"x": 1573.0, "y": 883.0}}, "position": {"x": 1568.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123517, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 873.0}, "se": {"x": 1577.0, "y": 883.0}, "sw": {"x": 1587.0, "y": 873.0}, "nw": {"x": 1587.0, "y": 883.0}}, "position": {"x": 1582.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123518, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 873.0}, "se": {"x": 1591.0, "y": 883.0}, "sw": {"x": 1601.0, "y": 873.0}, "nw": {"x": 1601.0, "y": 883.0}}, "position": {"x": 1596.0, "y": 878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123524, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 887.0}, "se": {"x": 1535.0, "y": 897.0}, "sw": {"x": 1545.0, "y": 887.0}, "nw": {"x": 1545.0, "y": 897.0}}, "position": {"x": 1540.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123525, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 887.0}, "se": {"x": 1549.0, "y": 897.0}, "sw": {"x": 1559.0, "y": 887.0}, "nw": {"x": 1559.0, "y": 897.0}}, "position": {"x": 1554.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123526, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 887.0}, "se": {"x": 1563.0, "y": 897.0}, "sw": {"x": 1573.0, "y": 887.0}, "nw": {"x": 1573.0, "y": 897.0}}, "position": {"x": 1568.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123527, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 887.0}, "se": {"x": 1577.0, "y": 897.0}, "sw": {"x": 1587.0, "y": 887.0}, "nw": {"x": 1587.0, "y": 897.0}}, "position": {"x": 1582.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123528, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 887.0}, "se": {"x": 1591.0, "y": 897.0}, "sw": {"x": 1601.0, "y": 887.0}, "nw": {"x": 1601.0, "y": 897.0}}, "position": {"x": 1596.0, "y": 892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123534, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 901.0}, "se": {"x": 1535.0, "y": 911.0}, "sw": {"x": 1545.0, "y": 901.0}, "nw": {"x": 1545.0, "y": 911.0}}, "position": {"x": 1540.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123535, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 901.0}, "se": {"x": 1549.0, "y": 911.0}, "sw": {"x": 1559.0, "y": 901.0}, "nw": {"x": 1559.0, "y": 911.0}}, "position": {"x": 1554.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123536, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 901.0}, "se": {"x": 1563.0, "y": 911.0}, "sw": {"x": 1573.0, "y": 901.0}, "nw": {"x": 1573.0, "y": 911.0}}, "position": {"x": 1568.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123537, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 901.0}, "se": {"x": 1577.0, "y": 911.0}, "sw": {"x": 1587.0, "y": 901.0}, "nw": {"x": 1587.0, "y": 911.0}}, "position": {"x": 1582.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123538, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 901.0}, "se": {"x": 1591.0, "y": 911.0}, "sw": {"x": 1601.0, "y": 901.0}, "nw": {"x": 1601.0, "y": 911.0}}, "position": {"x": 1596.0, "y": 906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123544, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 915.0}, "se": {"x": 1535.0, "y": 925.0}, "sw": {"x": 1545.0, "y": 915.0}, "nw": {"x": 1545.0, "y": 925.0}}, "position": {"x": 1540.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123545, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 915.0}, "se": {"x": 1549.0, "y": 925.0}, "sw": {"x": 1559.0, "y": 915.0}, "nw": {"x": 1559.0, "y": 925.0}}, "position": {"x": 1554.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123546, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 915.0}, "se": {"x": 1563.0, "y": 925.0}, "sw": {"x": 1573.0, "y": 915.0}, "nw": {"x": 1573.0, "y": 925.0}}, "position": {"x": 1568.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123547, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 915.0}, "se": {"x": 1577.0, "y": 925.0}, "sw": {"x": 1587.0, "y": 915.0}, "nw": {"x": 1587.0, "y": 925.0}}, "position": {"x": 1582.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123548, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 915.0}, "se": {"x": 1591.0, "y": 925.0}, "sw": {"x": 1601.0, "y": 915.0}, "nw": {"x": 1601.0, "y": 925.0}}, "position": {"x": 1596.0, "y": 920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123554, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 929.0}, "se": {"x": 1535.0, "y": 939.0}, "sw": {"x": 1545.0, "y": 929.0}, "nw": {"x": 1545.0, "y": 939.0}}, "position": {"x": 1540.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123555, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 929.0}, "se": {"x": 1549.0, "y": 939.0}, "sw": {"x": 1559.0, "y": 929.0}, "nw": {"x": 1559.0, "y": 939.0}}, "position": {"x": 1554.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123556, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 929.0}, "se": {"x": 1563.0, "y": 939.0}, "sw": {"x": 1573.0, "y": 929.0}, "nw": {"x": 1573.0, "y": 939.0}}, "position": {"x": 1568.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123557, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 929.0}, "se": {"x": 1577.0, "y": 939.0}, "sw": {"x": 1587.0, "y": 929.0}, "nw": {"x": 1587.0, "y": 939.0}}, "position": {"x": 1582.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123558, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 929.0}, "se": {"x": 1591.0, "y": 939.0}, "sw": {"x": 1601.0, "y": 929.0}, "nw": {"x": 1601.0, "y": 939.0}}, "position": {"x": 1596.0, "y": 934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123564, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 943.0}, "se": {"x": 1535.0, "y": 953.0}, "sw": {"x": 1545.0, "y": 943.0}, "nw": {"x": 1545.0, "y": 953.0}}, "position": {"x": 1540.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123565, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 943.0}, "se": {"x": 1549.0, "y": 953.0}, "sw": {"x": 1559.0, "y": 943.0}, "nw": {"x": 1559.0, "y": 953.0}}, "position": {"x": 1554.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123566, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 943.0}, "se": {"x": 1563.0, "y": 953.0}, "sw": {"x": 1573.0, "y": 943.0}, "nw": {"x": 1573.0, "y": 953.0}}, "position": {"x": 1568.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123567, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 943.0}, "se": {"x": 1577.0, "y": 953.0}, "sw": {"x": 1587.0, "y": 943.0}, "nw": {"x": 1587.0, "y": 953.0}}, "position": {"x": 1582.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123568, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 943.0}, "se": {"x": 1591.0, "y": 953.0}, "sw": {"x": 1601.0, "y": 943.0}, "nw": {"x": 1601.0, "y": 953.0}}, "position": {"x": 1596.0, "y": 948.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123574, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 957.0}, "se": {"x": 1535.0, "y": 967.0}, "sw": {"x": 1545.0, "y": 957.0}, "nw": {"x": 1545.0, "y": 967.0}}, "position": {"x": 1540.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123575, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 957.0}, "se": {"x": 1549.0, "y": 967.0}, "sw": {"x": 1559.0, "y": 957.0}, "nw": {"x": 1559.0, "y": 967.0}}, "position": {"x": 1554.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123576, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 957.0}, "se": {"x": 1563.0, "y": 967.0}, "sw": {"x": 1573.0, "y": 957.0}, "nw": {"x": 1573.0, "y": 967.0}}, "position": {"x": 1568.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123577, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 957.0}, "se": {"x": 1577.0, "y": 967.0}, "sw": {"x": 1587.0, "y": 957.0}, "nw": {"x": 1587.0, "y": 967.0}}, "position": {"x": 1582.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123578, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 957.0}, "se": {"x": 1591.0, "y": 967.0}, "sw": {"x": 1601.0, "y": 957.0}, "nw": {"x": 1601.0, "y": 967.0}}, "position": {"x": 1596.0, "y": 962.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123584, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 971.0}, "se": {"x": 1535.0, "y": 981.0}, "sw": {"x": 1545.0, "y": 971.0}, "nw": {"x": 1545.0, "y": 981.0}}, "position": {"x": 1540.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123585, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 971.0}, "se": {"x": 1549.0, "y": 981.0}, "sw": {"x": 1559.0, "y": 971.0}, "nw": {"x": 1559.0, "y": 981.0}}, "position": {"x": 1554.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123586, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 971.0}, "se": {"x": 1563.0, "y": 981.0}, "sw": {"x": 1573.0, "y": 971.0}, "nw": {"x": 1573.0, "y": 981.0}}, "position": {"x": 1568.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123587, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 971.0}, "se": {"x": 1577.0, "y": 981.0}, "sw": {"x": 1587.0, "y": 971.0}, "nw": {"x": 1587.0, "y": 981.0}}, "position": {"x": 1582.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123588, "gradeId": 102831, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 971.0}, "se": {"x": 1591.0, "y": 981.0}, "sw": {"x": 1601.0, "y": 971.0}, "nw": {"x": 1601.0, "y": 981.0}}, "position": {"x": 1596.0, "y": 976.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 FLOOR 4\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "FLOOR 4\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce35FLOOR00004\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59712}], "3:7": [{"logicalSeatId": 1537121020, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1803.0}, "se": {"x": 912.0, "y": 1813.0}, "sw": {"x": 922.0, "y": 1803.0}, "nw": {"x": 922.0, "y": 1813.0}}, "position": {"x": 917.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2346, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121021, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1803.0}, "se": {"x": 926.0, "y": 1813.0}, "sw": {"x": 936.0, "y": 1803.0}, "nw": {"x": 936.0, "y": 1813.0}}, "position": {"x": 931.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2426, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121022, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1803.0}, "se": {"x": 940.0, "y": 1813.0}, "sw": {"x": 950.0, "y": 1803.0}, "nw": {"x": 950.0, "y": 1813.0}}, "position": {"x": 945.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2506, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121023, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1803.0}, "se": {"x": 954.0, "y": 1813.0}, "sw": {"x": 964.0, "y": 1803.0}, "nw": {"x": 964.0, "y": 1813.0}}, "position": {"x": 959.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2586, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121024, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1803.0}, "se": {"x": 968.0, "y": 1813.0}, "sw": {"x": 978.0, "y": 1803.0}, "nw": {"x": 978.0, "y": 1813.0}}, "position": {"x": 973.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2666, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121025, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1803.0}, "se": {"x": 982.0, "y": 1813.0}, "sw": {"x": 992.0, "y": 1803.0}, "nw": {"x": 992.0, "y": 1813.0}}, "position": {"x": 987.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2746, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121026, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1803.0}, "se": {"x": 996.0, "y": 1813.0}, "sw": {"x": 1006.0, "y": 1803.0}, "nw": {"x": 1006.0, "y": 1813.0}}, "position": {"x": 1001.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2826, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121027, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1803.0}, "se": {"x": 1010.0, "y": 1813.0}, "sw": {"x": 1020.0, "y": 1803.0}, "nw": {"x": 1020.0, "y": 1813.0}}, "position": {"x": 1015.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2906, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121044, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1817.0}, "se": {"x": 912.0, "y": 1827.0}, "sw": {"x": 922.0, "y": 1817.0}, "nw": {"x": 922.0, "y": 1827.0}}, "position": {"x": 917.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2345, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121045, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1817.0}, "se": {"x": 926.0, "y": 1827.0}, "sw": {"x": 936.0, "y": 1817.0}, "nw": {"x": 936.0, "y": 1827.0}}, "position": {"x": 931.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2425, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121046, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1817.0}, "se": {"x": 940.0, "y": 1827.0}, "sw": {"x": 950.0, "y": 1817.0}, "nw": {"x": 950.0, "y": 1827.0}}, "position": {"x": 945.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2505, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121047, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1817.0}, "se": {"x": 954.0, "y": 1827.0}, "sw": {"x": 964.0, "y": 1817.0}, "nw": {"x": 964.0, "y": 1827.0}}, "position": {"x": 959.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2585, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121048, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1817.0}, "se": {"x": 968.0, "y": 1827.0}, "sw": {"x": 978.0, "y": 1817.0}, "nw": {"x": 978.0, "y": 1827.0}}, "position": {"x": 973.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2665, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121049, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1817.0}, "se": {"x": 982.0, "y": 1827.0}, "sw": {"x": 992.0, "y": 1817.0}, "nw": {"x": 992.0, "y": 1827.0}}, "position": {"x": 987.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2745, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121050, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1817.0}, "se": {"x": 996.0, "y": 1827.0}, "sw": {"x": 1006.0, "y": 1817.0}, "nw": {"x": 1006.0, "y": 1827.0}}, "position": {"x": 1001.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2825, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121051, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1817.0}, "se": {"x": 1010.0, "y": 1827.0}, "sw": {"x": 1020.0, "y": 1817.0}, "nw": {"x": 1020.0, "y": 1827.0}}, "position": {"x": 1015.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2905, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121068, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1831.0}, "se": {"x": 912.0, "y": 1841.0}, "sw": {"x": 922.0, "y": 1831.0}, "nw": {"x": 922.0, "y": 1841.0}}, "position": {"x": 917.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2344, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121069, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1831.0}, "se": {"x": 926.0, "y": 1841.0}, "sw": {"x": 936.0, "y": 1831.0}, "nw": {"x": 936.0, "y": 1841.0}}, "position": {"x": 931.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2424, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121070, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1831.0}, "se": {"x": 940.0, "y": 1841.0}, "sw": {"x": 950.0, "y": 1831.0}, "nw": {"x": 950.0, "y": 1841.0}}, "position": {"x": 945.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2504, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121071, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1831.0}, "se": {"x": 954.0, "y": 1841.0}, "sw": {"x": 964.0, "y": 1831.0}, "nw": {"x": 964.0, "y": 1841.0}}, "position": {"x": 959.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2584, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121072, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1831.0}, "se": {"x": 968.0, "y": 1841.0}, "sw": {"x": 978.0, "y": 1831.0}, "nw": {"x": 978.0, "y": 1841.0}}, "position": {"x": 973.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2664, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121073, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1831.0}, "se": {"x": 982.0, "y": 1841.0}, "sw": {"x": 992.0, "y": 1831.0}, "nw": {"x": 992.0, "y": 1841.0}}, "position": {"x": 987.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2744, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121074, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1831.0}, "se": {"x": 996.0, "y": 1841.0}, "sw": {"x": 1006.0, "y": 1831.0}, "nw": {"x": 1006.0, "y": 1841.0}}, "position": {"x": 1001.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2824, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121075, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1831.0}, "se": {"x": 1010.0, "y": 1841.0}, "sw": {"x": 1020.0, "y": 1831.0}, "nw": {"x": 1020.0, "y": 1841.0}}, "position": {"x": 1015.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2904, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121092, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1845.0}, "se": {"x": 912.0, "y": 1855.0}, "sw": {"x": 922.0, "y": 1845.0}, "nw": {"x": 922.0, "y": 1855.0}}, "position": {"x": 917.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2343, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121093, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1845.0}, "se": {"x": 926.0, "y": 1855.0}, "sw": {"x": 936.0, "y": 1845.0}, "nw": {"x": 936.0, "y": 1855.0}}, "position": {"x": 931.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2423, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121094, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1845.0}, "se": {"x": 940.0, "y": 1855.0}, "sw": {"x": 950.0, "y": 1845.0}, "nw": {"x": 950.0, "y": 1855.0}}, "position": {"x": 945.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2503, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121095, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1845.0}, "se": {"x": 954.0, "y": 1855.0}, "sw": {"x": 964.0, "y": 1845.0}, "nw": {"x": 964.0, "y": 1855.0}}, "position": {"x": 959.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2583, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121096, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1845.0}, "se": {"x": 968.0, "y": 1855.0}, "sw": {"x": 978.0, "y": 1845.0}, "nw": {"x": 978.0, "y": 1855.0}}, "position": {"x": 973.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2663, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121097, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1845.0}, "se": {"x": 982.0, "y": 1855.0}, "sw": {"x": 992.0, "y": 1845.0}, "nw": {"x": 992.0, "y": 1855.0}}, "position": {"x": 987.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2743, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121098, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1845.0}, "se": {"x": 996.0, "y": 1855.0}, "sw": {"x": 1006.0, "y": 1845.0}, "nw": {"x": 1006.0, "y": 1855.0}}, "position": {"x": 1001.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2823, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121099, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1845.0}, "se": {"x": 1010.0, "y": 1855.0}, "sw": {"x": 1020.0, "y": 1845.0}, "nw": {"x": 1020.0, "y": 1855.0}}, "position": {"x": 1015.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2903, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121116, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1859.0}, "se": {"x": 912.0, "y": 1869.0}, "sw": {"x": 922.0, "y": 1859.0}, "nw": {"x": 922.0, "y": 1869.0}}, "position": {"x": 917.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2342, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121117, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1859.0}, "se": {"x": 926.0, "y": 1869.0}, "sw": {"x": 936.0, "y": 1859.0}, "nw": {"x": 936.0, "y": 1869.0}}, "position": {"x": 931.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2422, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121118, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1859.0}, "se": {"x": 940.0, "y": 1869.0}, "sw": {"x": 950.0, "y": 1859.0}, "nw": {"x": 950.0, "y": 1869.0}}, "position": {"x": 945.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2502, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121119, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1859.0}, "se": {"x": 954.0, "y": 1869.0}, "sw": {"x": 964.0, "y": 1859.0}, "nw": {"x": 964.0, "y": 1869.0}}, "position": {"x": 959.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2582, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121120, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1859.0}, "se": {"x": 968.0, "y": 1869.0}, "sw": {"x": 978.0, "y": 1859.0}, "nw": {"x": 978.0, "y": 1869.0}}, "position": {"x": 973.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2662, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121121, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1859.0}, "se": {"x": 982.0, "y": 1869.0}, "sw": {"x": 992.0, "y": 1859.0}, "nw": {"x": 992.0, "y": 1869.0}}, "position": {"x": 987.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2742, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121122, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1859.0}, "se": {"x": 996.0, "y": 1869.0}, "sw": {"x": 1006.0, "y": 1859.0}, "nw": {"x": 1006.0, "y": 1869.0}}, "position": {"x": 1001.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2822, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121123, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1859.0}, "se": {"x": 1010.0, "y": 1869.0}, "sw": {"x": 1020.0, "y": 1859.0}, "nw": {"x": 1020.0, "y": 1869.0}}, "position": {"x": 1015.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2902, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121140, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1873.0}, "se": {"x": 912.0, "y": 1883.0}, "sw": {"x": 922.0, "y": 1873.0}, "nw": {"x": 922.0, "y": 1883.0}}, "position": {"x": 917.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2341, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121141, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1873.0}, "se": {"x": 926.0, "y": 1883.0}, "sw": {"x": 936.0, "y": 1873.0}, "nw": {"x": 936.0, "y": 1883.0}}, "position": {"x": 931.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2421, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121142, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1873.0}, "se": {"x": 940.0, "y": 1883.0}, "sw": {"x": 950.0, "y": 1873.0}, "nw": {"x": 950.0, "y": 1883.0}}, "position": {"x": 945.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2501, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121143, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1873.0}, "se": {"x": 954.0, "y": 1883.0}, "sw": {"x": 964.0, "y": 1873.0}, "nw": {"x": 964.0, "y": 1883.0}}, "position": {"x": 959.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2581, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121144, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1873.0}, "se": {"x": 968.0, "y": 1883.0}, "sw": {"x": 978.0, "y": 1873.0}, "nw": {"x": 978.0, "y": 1883.0}}, "position": {"x": 973.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2661, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121145, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1873.0}, "se": {"x": 982.0, "y": 1883.0}, "sw": {"x": 992.0, "y": 1873.0}, "nw": {"x": 992.0, "y": 1883.0}}, "position": {"x": 987.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2741, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121146, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1873.0}, "se": {"x": 996.0, "y": 1883.0}, "sw": {"x": 1006.0, "y": 1873.0}, "nw": {"x": 1006.0, "y": 1883.0}}, "position": {"x": 1001.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2821, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121147, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1873.0}, "se": {"x": 1010.0, "y": 1883.0}, "sw": {"x": 1020.0, "y": 1873.0}, "nw": {"x": 1020.0, "y": 1883.0}}, "position": {"x": 1015.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2901, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121178, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1887.0}, "se": {"x": 912.0, "y": 1897.0}, "sw": {"x": 922.0, "y": 1887.0}, "nw": {"x": 922.0, "y": 1897.0}}, "position": {"x": 917.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2340, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121179, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1887.0}, "se": {"x": 926.0, "y": 1897.0}, "sw": {"x": 936.0, "y": 1887.0}, "nw": {"x": 936.0, "y": 1897.0}}, "position": {"x": 931.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2420, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121180, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1887.0}, "se": {"x": 940.0, "y": 1897.0}, "sw": {"x": 950.0, "y": 1887.0}, "nw": {"x": 950.0, "y": 1897.0}}, "position": {"x": 945.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2500, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121181, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1887.0}, "se": {"x": 954.0, "y": 1897.0}, "sw": {"x": 964.0, "y": 1887.0}, "nw": {"x": 964.0, "y": 1897.0}}, "position": {"x": 959.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2580, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121182, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1887.0}, "se": {"x": 968.0, "y": 1897.0}, "sw": {"x": 978.0, "y": 1887.0}, "nw": {"x": 978.0, "y": 1897.0}}, "position": {"x": 973.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2660, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121183, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1887.0}, "se": {"x": 982.0, "y": 1897.0}, "sw": {"x": 992.0, "y": 1887.0}, "nw": {"x": 992.0, "y": 1897.0}}, "position": {"x": 987.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2740, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121184, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1887.0}, "se": {"x": 996.0, "y": 1897.0}, "sw": {"x": 1006.0, "y": 1887.0}, "nw": {"x": 1006.0, "y": 1897.0}}, "position": {"x": 1001.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2820, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121185, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1887.0}, "se": {"x": 1010.0, "y": 1897.0}, "sw": {"x": 1020.0, "y": 1887.0}, "nw": {"x": 1020.0, "y": 1897.0}}, "position": {"x": 1015.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2900, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121216, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1901.0}, "se": {"x": 912.0, "y": 1911.0}, "sw": {"x": 922.0, "y": 1901.0}, "nw": {"x": 922.0, "y": 1911.0}}, "position": {"x": 917.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2339, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121217, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1901.0}, "se": {"x": 926.0, "y": 1911.0}, "sw": {"x": 936.0, "y": 1901.0}, "nw": {"x": 936.0, "y": 1911.0}}, "position": {"x": 931.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2419, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121218, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1901.0}, "se": {"x": 940.0, "y": 1911.0}, "sw": {"x": 950.0, "y": 1901.0}, "nw": {"x": 950.0, "y": 1911.0}}, "position": {"x": 945.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2499, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121219, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1901.0}, "se": {"x": 954.0, "y": 1911.0}, "sw": {"x": 964.0, "y": 1901.0}, "nw": {"x": 964.0, "y": 1911.0}}, "position": {"x": 959.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2579, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121220, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1901.0}, "se": {"x": 968.0, "y": 1911.0}, "sw": {"x": 978.0, "y": 1901.0}, "nw": {"x": 978.0, "y": 1911.0}}, "position": {"x": 973.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2659, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121221, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1901.0}, "se": {"x": 982.0, "y": 1911.0}, "sw": {"x": 992.0, "y": 1901.0}, "nw": {"x": 992.0, "y": 1911.0}}, "position": {"x": 987.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2739, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121222, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1901.0}, "se": {"x": 996.0, "y": 1911.0}, "sw": {"x": 1006.0, "y": 1901.0}, "nw": {"x": 1006.0, "y": 1911.0}}, "position": {"x": 1001.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2819, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121223, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1901.0}, "se": {"x": 1010.0, "y": 1911.0}, "sw": {"x": 1020.0, "y": 1901.0}, "nw": {"x": 1020.0, "y": 1911.0}}, "position": {"x": 1015.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2899, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121254, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1915.0}, "se": {"x": 912.0, "y": 1925.0}, "sw": {"x": 922.0, "y": 1915.0}, "nw": {"x": 922.0, "y": 1925.0}}, "position": {"x": 917.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2338, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121255, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1915.0}, "se": {"x": 926.0, "y": 1925.0}, "sw": {"x": 936.0, "y": 1915.0}, "nw": {"x": 936.0, "y": 1925.0}}, "position": {"x": 931.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2418, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121256, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1915.0}, "se": {"x": 940.0, "y": 1925.0}, "sw": {"x": 950.0, "y": 1915.0}, "nw": {"x": 950.0, "y": 1925.0}}, "position": {"x": 945.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2498, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121257, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1915.0}, "se": {"x": 954.0, "y": 1925.0}, "sw": {"x": 964.0, "y": 1915.0}, "nw": {"x": 964.0, "y": 1925.0}}, "position": {"x": 959.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2578, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121258, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1915.0}, "se": {"x": 968.0, "y": 1925.0}, "sw": {"x": 978.0, "y": 1915.0}, "nw": {"x": 978.0, "y": 1925.0}}, "position": {"x": 973.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2658, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121259, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1915.0}, "se": {"x": 982.0, "y": 1925.0}, "sw": {"x": 992.0, "y": 1915.0}, "nw": {"x": 992.0, "y": 1925.0}}, "position": {"x": 987.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2738, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121260, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1915.0}, "se": {"x": 996.0, "y": 1925.0}, "sw": {"x": 1006.0, "y": 1915.0}, "nw": {"x": 1006.0, "y": 1925.0}}, "position": {"x": 1001.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2818, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121261, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1915.0}, "se": {"x": 1010.0, "y": 1925.0}, "sw": {"x": 1020.0, "y": 1915.0}, "nw": {"x": 1020.0, "y": 1925.0}}, "position": {"x": 1015.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2898, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121292, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 912.0, "y": 1929.0}, "se": {"x": 912.0, "y": 1939.0}, "sw": {"x": 922.0, "y": 1929.0}, "nw": {"x": 922.0, "y": 1939.0}}, "position": {"x": 917.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158604, "gate": "", "blockId": null, "orderNum": 2337, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121293, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 926.0, "y": 1929.0}, "se": {"x": 926.0, "y": 1939.0}, "sw": {"x": 936.0, "y": 1929.0}, "nw": {"x": 936.0, "y": 1939.0}}, "position": {"x": 931.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158605, "gate": "", "blockId": null, "orderNum": 2417, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121294, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 940.0, "y": 1929.0}, "se": {"x": 940.0, "y": 1939.0}, "sw": {"x": 950.0, "y": 1929.0}, "nw": {"x": 950.0, "y": 1939.0}}, "position": {"x": 945.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158606, "gate": "", "blockId": null, "orderNum": 2497, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121295, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 954.0, "y": 1929.0}, "se": {"x": 954.0, "y": 1939.0}, "sw": {"x": 964.0, "y": 1929.0}, "nw": {"x": 964.0, "y": 1939.0}}, "position": {"x": 959.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158607, "gate": "", "blockId": null, "orderNum": 2577, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121296, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 968.0, "y": 1929.0}, "se": {"x": 968.0, "y": 1939.0}, "sw": {"x": 978.0, "y": 1929.0}, "nw": {"x": 978.0, "y": 1939.0}}, "position": {"x": 973.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158608, "gate": "", "blockId": null, "orderNum": 2657, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121297, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 982.0, "y": 1929.0}, "se": {"x": 982.0, "y": 1939.0}, "sw": {"x": 992.0, "y": 1929.0}, "nw": {"x": 992.0, "y": 1939.0}}, "position": {"x": 987.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158609, "gate": "", "blockId": null, "orderNum": 2737, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121298, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 996.0, "y": 1929.0}, "se": {"x": 996.0, "y": 1939.0}, "sw": {"x": 1006.0, "y": 1929.0}, "nw": {"x": 1006.0, "y": 1939.0}}, "position": {"x": 1001.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158610, "gate": "", "blockId": null, "orderNum": 2817, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121299, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1010.0, "y": 1929.0}, "se": {"x": 1010.0, "y": 1939.0}, "sw": {"x": 1020.0, "y": 1929.0}, "nw": {"x": 1020.0, "y": 1939.0}}, "position": {"x": 1015.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158611, "gate": "", "blockId": null, "orderNum": 2897, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121408, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1803.0}, "se": {"x": 774.0, "y": 1813.0}, "sw": {"x": 784.0, "y": 1803.0}, "nw": {"x": 784.0, "y": 1813.0}}, "position": {"x": 779.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1482, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121409, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1803.0}, "se": {"x": 788.0, "y": 1813.0}, "sw": {"x": 798.0, "y": 1803.0}, "nw": {"x": 798.0, "y": 1813.0}}, "position": {"x": 793.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1589, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121410, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1803.0}, "se": {"x": 802.0, "y": 1813.0}, "sw": {"x": 812.0, "y": 1803.0}, "nw": {"x": 812.0, "y": 1813.0}}, "position": {"x": 807.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1602, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121411, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1803.0}, "se": {"x": 816.0, "y": 1813.0}, "sw": {"x": 826.0, "y": 1803.0}, "nw": {"x": 826.0, "y": 1813.0}}, "position": {"x": 821.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1617, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121412, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1803.0}, "se": {"x": 830.0, "y": 1813.0}, "sw": {"x": 840.0, "y": 1803.0}, "nw": {"x": 840.0, "y": 1813.0}}, "position": {"x": 835.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1633, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121413, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1803.0}, "se": {"x": 844.0, "y": 1813.0}, "sw": {"x": 854.0, "y": 1803.0}, "nw": {"x": 854.0, "y": 1813.0}}, "position": {"x": 849.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1649, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121414, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1803.0}, "se": {"x": 858.0, "y": 1813.0}, "sw": {"x": 868.0, "y": 1803.0}, "nw": {"x": 868.0, "y": 1813.0}}, "position": {"x": 863.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 7\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1665, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "7\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00007\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121424, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1817.0}, "se": {"x": 774.0, "y": 1827.0}, "sw": {"x": 784.0, "y": 1817.0}, "nw": {"x": 784.0, "y": 1827.0}}, "position": {"x": 779.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1481, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121425, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1817.0}, "se": {"x": 788.0, "y": 1827.0}, "sw": {"x": 798.0, "y": 1817.0}, "nw": {"x": 798.0, "y": 1827.0}}, "position": {"x": 793.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1588, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121426, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1817.0}, "se": {"x": 802.0, "y": 1827.0}, "sw": {"x": 812.0, "y": 1817.0}, "nw": {"x": 812.0, "y": 1827.0}}, "position": {"x": 807.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1601, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121427, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1817.0}, "se": {"x": 816.0, "y": 1827.0}, "sw": {"x": 826.0, "y": 1817.0}, "nw": {"x": 826.0, "y": 1827.0}}, "position": {"x": 821.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1616, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121428, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1817.0}, "se": {"x": 830.0, "y": 1827.0}, "sw": {"x": 840.0, "y": 1817.0}, "nw": {"x": 840.0, "y": 1827.0}}, "position": {"x": 835.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1632, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121429, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1817.0}, "se": {"x": 844.0, "y": 1827.0}, "sw": {"x": 854.0, "y": 1817.0}, "nw": {"x": 854.0, "y": 1827.0}}, "position": {"x": 849.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1648, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121430, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1817.0}, "se": {"x": 858.0, "y": 1827.0}, "sw": {"x": 868.0, "y": 1817.0}, "nw": {"x": 868.0, "y": 1827.0}}, "position": {"x": 863.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 8\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1664, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "8\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00008\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121441, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1831.0}, "se": {"x": 774.0, "y": 1841.0}, "sw": {"x": 784.0, "y": 1831.0}, "nw": {"x": 784.0, "y": 1841.0}}, "position": {"x": 779.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1480, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121442, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1831.0}, "se": {"x": 788.0, "y": 1841.0}, "sw": {"x": 798.0, "y": 1831.0}, "nw": {"x": 798.0, "y": 1841.0}}, "position": {"x": 793.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1587, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121443, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1831.0}, "se": {"x": 802.0, "y": 1841.0}, "sw": {"x": 812.0, "y": 1831.0}, "nw": {"x": 812.0, "y": 1841.0}}, "position": {"x": 807.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1600, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121444, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1831.0}, "se": {"x": 816.0, "y": 1841.0}, "sw": {"x": 826.0, "y": 1831.0}, "nw": {"x": 826.0, "y": 1841.0}}, "position": {"x": 821.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1615, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121445, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1831.0}, "se": {"x": 830.0, "y": 1841.0}, "sw": {"x": 840.0, "y": 1831.0}, "nw": {"x": 840.0, "y": 1841.0}}, "position": {"x": 835.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1631, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121446, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1831.0}, "se": {"x": 844.0, "y": 1841.0}, "sw": {"x": 854.0, "y": 1831.0}, "nw": {"x": 854.0, "y": 1841.0}}, "position": {"x": 849.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1647, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121447, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1831.0}, "se": {"x": 858.0, "y": 1841.0}, "sw": {"x": 868.0, "y": 1831.0}, "nw": {"x": 868.0, "y": 1841.0}}, "position": {"x": 863.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 9\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1663, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "9\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00009\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121459, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1845.0}, "se": {"x": 774.0, "y": 1855.0}, "sw": {"x": 784.0, "y": 1845.0}, "nw": {"x": 784.0, "y": 1855.0}}, "position": {"x": 779.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1479, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121460, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1845.0}, "se": {"x": 788.0, "y": 1855.0}, "sw": {"x": 798.0, "y": 1845.0}, "nw": {"x": 798.0, "y": 1855.0}}, "position": {"x": 793.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1586, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400013\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121461, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1845.0}, "se": {"x": 802.0, "y": 1855.0}, "sw": {"x": 812.0, "y": 1845.0}, "nw": {"x": 812.0, "y": 1855.0}}, "position": {"x": 807.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1599, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121462, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1845.0}, "se": {"x": 816.0, "y": 1855.0}, "sw": {"x": 826.0, "y": 1845.0}, "nw": {"x": 826.0, "y": 1855.0}}, "position": {"x": 821.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1614, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121463, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1845.0}, "se": {"x": 830.0, "y": 1855.0}, "sw": {"x": 840.0, "y": 1845.0}, "nw": {"x": 840.0, "y": 1855.0}}, "position": {"x": 835.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1630, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121464, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1845.0}, "se": {"x": 844.0, "y": 1855.0}, "sw": {"x": 854.0, "y": 1845.0}, "nw": {"x": 854.0, "y": 1855.0}}, "position": {"x": 849.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1646, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121465, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1845.0}, "se": {"x": 858.0, "y": 1855.0}, "sw": {"x": 868.0, "y": 1845.0}, "nw": {"x": 868.0, "y": 1855.0}}, "position": {"x": 863.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 10\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1662, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "10\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00010\uc5f400018\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121479, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1859.0}, "se": {"x": 774.0, "y": 1869.0}, "sw": {"x": 784.0, "y": 1859.0}, "nw": {"x": 784.0, "y": 1869.0}}, "position": {"x": 779.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1478, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400014\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121480, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1859.0}, "se": {"x": 788.0, "y": 1869.0}, "sw": {"x": 798.0, "y": 1859.0}, "nw": {"x": 798.0, "y": 1869.0}}, "position": {"x": 793.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1585, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400015\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121481, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1859.0}, "se": {"x": 802.0, "y": 1869.0}, "sw": {"x": 812.0, "y": 1859.0}, "nw": {"x": 812.0, "y": 1869.0}}, "position": {"x": 807.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1598, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400016\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121482, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1859.0}, "se": {"x": 816.0, "y": 1869.0}, "sw": {"x": 826.0, "y": 1859.0}, "nw": {"x": 826.0, "y": 1869.0}}, "position": {"x": 821.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1613, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400017\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121483, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1859.0}, "se": {"x": 830.0, "y": 1869.0}, "sw": {"x": 840.0, "y": 1859.0}, "nw": {"x": 840.0, "y": 1869.0}}, "position": {"x": 835.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1629, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400018\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121484, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1859.0}, "se": {"x": 844.0, "y": 1869.0}, "sw": {"x": 854.0, "y": 1859.0}, "nw": {"x": 854.0, "y": 1869.0}}, "position": {"x": 849.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1645, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400019\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121485, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1859.0}, "se": {"x": 858.0, "y": 1869.0}, "sw": {"x": 868.0, "y": 1859.0}, "nw": {"x": 868.0, "y": 1869.0}}, "position": {"x": 863.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 11\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1661, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "11\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00011\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121504, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1873.0}, "se": {"x": 774.0, "y": 1883.0}, "sw": {"x": 784.0, "y": 1873.0}, "nw": {"x": 784.0, "y": 1883.0}}, "position": {"x": 779.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1477, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121505, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1873.0}, "se": {"x": 788.0, "y": 1883.0}, "sw": {"x": 798.0, "y": 1873.0}, "nw": {"x": 798.0, "y": 1883.0}}, "position": {"x": 793.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1584, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121506, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1873.0}, "se": {"x": 802.0, "y": 1883.0}, "sw": {"x": 812.0, "y": 1873.0}, "nw": {"x": 812.0, "y": 1883.0}}, "position": {"x": 807.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1597, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121507, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1873.0}, "se": {"x": 816.0, "y": 1883.0}, "sw": {"x": 826.0, "y": 1873.0}, "nw": {"x": 826.0, "y": 1883.0}}, "position": {"x": 821.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1612, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121508, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1873.0}, "se": {"x": 830.0, "y": 1883.0}, "sw": {"x": 840.0, "y": 1873.0}, "nw": {"x": 840.0, "y": 1883.0}}, "position": {"x": 835.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1628, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121509, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1873.0}, "se": {"x": 844.0, "y": 1883.0}, "sw": {"x": 854.0, "y": 1873.0}, "nw": {"x": 854.0, "y": 1883.0}}, "position": {"x": 849.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1644, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121510, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1873.0}, "se": {"x": 858.0, "y": 1883.0}, "sw": {"x": 868.0, "y": 1873.0}, "nw": {"x": 868.0, "y": 1883.0}}, "position": {"x": 863.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 12\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1660, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "12\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00012\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121530, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1887.0}, "se": {"x": 774.0, "y": 1897.0}, "sw": {"x": 784.0, "y": 1887.0}, "nw": {"x": 784.0, "y": 1897.0}}, "position": {"x": 779.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1476, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400020\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121531, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1887.0}, "se": {"x": 788.0, "y": 1897.0}, "sw": {"x": 798.0, "y": 1887.0}, "nw": {"x": 798.0, "y": 1897.0}}, "position": {"x": 793.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1583, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121532, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1887.0}, "se": {"x": 802.0, "y": 1897.0}, "sw": {"x": 812.0, "y": 1887.0}, "nw": {"x": 812.0, "y": 1897.0}}, "position": {"x": 807.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1596, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121533, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1887.0}, "se": {"x": 816.0, "y": 1897.0}, "sw": {"x": 826.0, "y": 1887.0}, "nw": {"x": 826.0, "y": 1897.0}}, "position": {"x": 821.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1611, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121534, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1887.0}, "se": {"x": 830.0, "y": 1897.0}, "sw": {"x": 840.0, "y": 1887.0}, "nw": {"x": 840.0, "y": 1897.0}}, "position": {"x": 835.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1627, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121535, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1887.0}, "se": {"x": 844.0, "y": 1897.0}, "sw": {"x": 854.0, "y": 1887.0}, "nw": {"x": 854.0, "y": 1897.0}}, "position": {"x": 849.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1643, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121536, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1887.0}, "se": {"x": 858.0, "y": 1897.0}, "sw": {"x": 868.0, "y": 1887.0}, "nw": {"x": 868.0, "y": 1897.0}}, "position": {"x": 863.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 13\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1659, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "13\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00013\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121558, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1901.0}, "se": {"x": 774.0, "y": 1911.0}, "sw": {"x": 784.0, "y": 1901.0}, "nw": {"x": 784.0, "y": 1911.0}}, "position": {"x": 779.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1475, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121559, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1901.0}, "se": {"x": 788.0, "y": 1911.0}, "sw": {"x": 798.0, "y": 1901.0}, "nw": {"x": 798.0, "y": 1911.0}}, "position": {"x": 793.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1582, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121560, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1901.0}, "se": {"x": 802.0, "y": 1911.0}, "sw": {"x": 812.0, "y": 1901.0}, "nw": {"x": 812.0, "y": 1911.0}}, "position": {"x": 807.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1595, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121561, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1901.0}, "se": {"x": 816.0, "y": 1911.0}, "sw": {"x": 826.0, "y": 1901.0}, "nw": {"x": 826.0, "y": 1911.0}}, "position": {"x": 821.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1610, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121562, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1901.0}, "se": {"x": 830.0, "y": 1911.0}, "sw": {"x": 840.0, "y": 1901.0}, "nw": {"x": 840.0, "y": 1911.0}}, "position": {"x": 835.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1626, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121563, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1901.0}, "se": {"x": 844.0, "y": 1911.0}, "sw": {"x": 854.0, "y": 1901.0}, "nw": {"x": 854.0, "y": 1911.0}}, "position": {"x": 849.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1642, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121564, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1901.0}, "se": {"x": 858.0, "y": 1911.0}, "sw": {"x": 868.0, "y": 1901.0}, "nw": {"x": 868.0, "y": 1911.0}}, "position": {"x": 863.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 14\uc5f4 28\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1658, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "14\uc5f4", "28\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00014\uc5f400028\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121586, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1915.0}, "se": {"x": 774.0, "y": 1925.0}, "sw": {"x": 784.0, "y": 1915.0}, "nw": {"x": 784.0, "y": 1925.0}}, "position": {"x": 779.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1474, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121587, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1915.0}, "se": {"x": 788.0, "y": 1925.0}, "sw": {"x": 798.0, "y": 1915.0}, "nw": {"x": 798.0, "y": 1925.0}}, "position": {"x": 793.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1581, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121588, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1915.0}, "se": {"x": 802.0, "y": 1925.0}, "sw": {"x": 812.0, "y": 1915.0}, "nw": {"x": 812.0, "y": 1925.0}}, "position": {"x": 807.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1594, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121589, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1915.0}, "se": {"x": 816.0, "y": 1925.0}, "sw": {"x": 826.0, "y": 1915.0}, "nw": {"x": 826.0, "y": 1925.0}}, "position": {"x": 821.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1609, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121590, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1915.0}, "se": {"x": 830.0, "y": 1925.0}, "sw": {"x": 840.0, "y": 1915.0}, "nw": {"x": 840.0, "y": 1925.0}}, "position": {"x": 835.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1625, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121591, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1915.0}, "se": {"x": 844.0, "y": 1925.0}, "sw": {"x": 854.0, "y": 1915.0}, "nw": {"x": 854.0, "y": 1925.0}}, "position": {"x": 849.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 28\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1641, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "28\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400028\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121592, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1915.0}, "se": {"x": 858.0, "y": 1925.0}, "sw": {"x": 868.0, "y": 1915.0}, "nw": {"x": 868.0, "y": 1925.0}}, "position": {"x": 863.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 15\uc5f4 29\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1657, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "15\uc5f4", "29\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00015\uc5f400029\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121613, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 774.0, "y": 1929.0}, "se": {"x": 774.0, "y": 1939.0}, "sw": {"x": 784.0, "y": 1929.0}, "nw": {"x": 784.0, "y": 1939.0}}, "position": {"x": 779.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 21\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158925, "gate": "", "blockId": null, "orderNum": 1473, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "21\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400021\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121614, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 788.0, "y": 1929.0}, "se": {"x": 788.0, "y": 1939.0}, "sw": {"x": 798.0, "y": 1929.0}, "nw": {"x": 798.0, "y": 1939.0}}, "position": {"x": 793.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 22\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158926, "gate": "", "blockId": null, "orderNum": 1580, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "22\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400022\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121615, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 802.0, "y": 1929.0}, "se": {"x": 802.0, "y": 1939.0}, "sw": {"x": 812.0, "y": 1929.0}, "nw": {"x": 812.0, "y": 1939.0}}, "position": {"x": 807.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 23\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158927, "gate": "", "blockId": null, "orderNum": 1593, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "23\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400023\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121616, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 816.0, "y": 1929.0}, "se": {"x": 816.0, "y": 1939.0}, "sw": {"x": 826.0, "y": 1929.0}, "nw": {"x": 826.0, "y": 1939.0}}, "position": {"x": 821.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 24\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158928, "gate": "", "blockId": null, "orderNum": 1608, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "24\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400024\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121617, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 830.0, "y": 1929.0}, "se": {"x": 830.0, "y": 1939.0}, "sw": {"x": 840.0, "y": 1929.0}, "nw": {"x": 840.0, "y": 1939.0}}, "position": {"x": 835.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 25\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158929, "gate": "", "blockId": null, "orderNum": 1624, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "25\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400025\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121618, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 844.0, "y": 1929.0}, "se": {"x": 844.0, "y": 1939.0}, "sw": {"x": 854.0, "y": 1929.0}, "nw": {"x": 854.0, "y": 1939.0}}, "position": {"x": 849.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 26\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158930, "gate": "", "blockId": null, "orderNum": 1640, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "26\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400026\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121619, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 858.0, "y": 1929.0}, "se": {"x": 858.0, "y": 1939.0}, "sw": {"x": 868.0, "y": 1929.0}, "nw": {"x": 868.0, "y": 1939.0}}, "position": {"x": 863.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 M\uad6c\uc5ed 16\uc5f4 27\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158931, "gate": "", "blockId": null, "orderNum": 1656, "attributes": ["", "", "2\uce35", "M\uad6c\uc5ed", "16\uc5f4", "27\ubc88"], "sortMapInfo": "00002\uce35M\uad6c\uc5ed00016\uc5f400027\ubc88", "area": {"virtualX": 3, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "5:5": [{"logicalSeatId": 1537123901, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1281.0, "y": 1287.0}, "se": {"x": 1281.0, "y": 1297.0}, "sw": {"x": 1291.0, "y": 1287.0}, "nw": {"x": 1291.0, "y": 1297.0}}, "position": {"x": 1286.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123902, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1295.0, "y": 1287.0}, "se": {"x": 1295.0, "y": 1297.0}, "sw": {"x": 1305.0, "y": 1287.0}, "nw": {"x": 1305.0, "y": 1297.0}}, "position": {"x": 1300.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123903, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1309.0, "y": 1287.0}, "se": {"x": 1309.0, "y": 1297.0}, "sw": {"x": 1319.0, "y": 1287.0}, "nw": {"x": 1319.0, "y": 1297.0}}, "position": {"x": 1314.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123904, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1323.0, "y": 1287.0}, "se": {"x": 1323.0, "y": 1297.0}, "sw": {"x": 1333.0, "y": 1287.0}, "nw": {"x": 1333.0, "y": 1297.0}}, "position": {"x": 1328.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123905, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1337.0, "y": 1287.0}, "se": {"x": 1337.0, "y": 1297.0}, "sw": {"x": 1347.0, "y": 1287.0}, "nw": {"x": 1347.0, "y": 1297.0}}, "position": {"x": 1342.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123906, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1351.0, "y": 1287.0}, "se": {"x": 1351.0, "y": 1297.0}, "sw": {"x": 1361.0, "y": 1287.0}, "nw": {"x": 1361.0, "y": 1297.0}}, "position": {"x": 1356.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123907, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1365.0, "y": 1287.0}, "se": {"x": 1365.0, "y": 1297.0}, "sw": {"x": 1375.0, "y": 1287.0}, "nw": {"x": 1375.0, "y": 1297.0}}, "position": {"x": 1370.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123908, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1379.0, "y": 1287.0}, "se": {"x": 1379.0, "y": 1297.0}, "sw": {"x": 1389.0, "y": 1287.0}, "nw": {"x": 1389.0, "y": 1297.0}}, "position": {"x": 1384.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 3\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "3\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500003\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124019, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1287.0}, "se": {"x": 1465.0, "y": 1297.0}, "sw": {"x": 1475.0, "y": 1287.0}, "nw": {"x": 1475.0, "y": 1297.0}}, "position": {"x": 1470.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124020, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1287.0}, "se": {"x": 1479.0, "y": 1297.0}, "sw": {"x": 1489.0, "y": 1287.0}, "nw": {"x": 1489.0, "y": 1297.0}}, "position": {"x": 1484.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124021, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1493.0, "y": 1287.0}, "se": {"x": 1493.0, "y": 1297.0}, "sw": {"x": 1503.0, "y": 1287.0}, "nw": {"x": 1503.0, "y": 1297.0}}, "position": {"x": 1498.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124022, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1507.0, "y": 1287.0}, "se": {"x": 1507.0, "y": 1297.0}, "sw": {"x": 1517.0, "y": 1287.0}, "nw": {"x": 1517.0, "y": 1297.0}}, "position": {"x": 1512.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124023, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1521.0, "y": 1287.0}, "se": {"x": 1521.0, "y": 1297.0}, "sw": {"x": 1531.0, "y": 1287.0}, "nw": {"x": 1531.0, "y": 1297.0}}, "position": {"x": 1526.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "7:3": [{"logicalSeatId": 1537119617, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1018.0}, "se": {"x": 1814.0, "y": 1018.0}, "sw": {"x": 1804.0, "y": 1008.0}, "nw": {"x": 1814.0, "y": 1008.0}}, "position": {"x": 1809.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7646, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119618, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1004.0}, "se": {"x": 1814.0, "y": 1004.0}, "sw": {"x": 1804.0, "y": 994.0}, "nw": {"x": 1814.0, "y": 994.0}}, "position": {"x": 1809.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7647, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119619, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 990.0}, "se": {"x": 1814.0, "y": 990.0}, "sw": {"x": 1804.0, "y": 980.0}, "nw": {"x": 1814.0, "y": 980.0}}, "position": {"x": 1809.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7648, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119620, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 976.0}, "se": {"x": 1814.0, "y": 976.0}, "sw": {"x": 1804.0, "y": 966.0}, "nw": {"x": 1814.0, "y": 966.0}}, "position": {"x": 1809.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7649, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119621, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 962.0}, "se": {"x": 1814.0, "y": 962.0}, "sw": {"x": 1804.0, "y": 952.0}, "nw": {"x": 1814.0, "y": 952.0}}, "position": {"x": 1809.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7650, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119622, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 948.0}, "se": {"x": 1814.0, "y": 948.0}, "sw": {"x": 1804.0, "y": 938.0}, "nw": {"x": 1814.0, "y": 938.0}}, "position": {"x": 1809.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7651, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119623, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 934.0}, "se": {"x": 1814.0, "y": 934.0}, "sw": {"x": 1804.0, "y": 924.0}, "nw": {"x": 1814.0, "y": 924.0}}, "position": {"x": 1809.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7652, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119624, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 920.0}, "se": {"x": 1814.0, "y": 920.0}, "sw": {"x": 1804.0, "y": 910.0}, "nw": {"x": 1814.0, "y": 910.0}}, "position": {"x": 1809.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7653, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119625, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 906.0}, "se": {"x": 1814.0, "y": 906.0}, "sw": {"x": 1804.0, "y": 896.0}, "nw": {"x": 1814.0, "y": 896.0}}, "position": {"x": 1809.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7654, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119626, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 892.0}, "se": {"x": 1814.0, "y": 892.0}, "sw": {"x": 1804.0, "y": 882.0}, "nw": {"x": 1814.0, "y": 882.0}}, "position": {"x": 1809.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7655, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119627, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 878.0}, "se": {"x": 1814.0, "y": 878.0}, "sw": {"x": 1804.0, "y": 868.0}, "nw": {"x": 1814.0, "y": 868.0}}, "position": {"x": 1809.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7656, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119628, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 864.0}, "se": {"x": 1814.0, "y": 864.0}, "sw": {"x": 1804.0, "y": 854.0}, "nw": {"x": 1814.0, "y": 854.0}}, "position": {"x": 1809.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7657, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119629, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 850.0}, "se": {"x": 1814.0, "y": 850.0}, "sw": {"x": 1804.0, "y": 840.0}, "nw": {"x": 1814.0, "y": 840.0}}, "position": {"x": 1809.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7658, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119630, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 836.0}, "se": {"x": 1814.0, "y": 836.0}, "sw": {"x": 1804.0, "y": 826.0}, "nw": {"x": 1814.0, "y": 826.0}}, "position": {"x": 1809.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7659, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119631, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 822.0}, "se": {"x": 1814.0, "y": 822.0}, "sw": {"x": 1804.0, "y": 812.0}, "nw": {"x": 1814.0, "y": 812.0}}, "position": {"x": 1809.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7660, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119637, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1018.0}, "se": {"x": 1828.0, "y": 1018.0}, "sw": {"x": 1818.0, "y": 1008.0}, "nw": {"x": 1828.0, "y": 1008.0}}, "position": {"x": 1823.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7733, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119638, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1004.0}, "se": {"x": 1828.0, "y": 1004.0}, "sw": {"x": 1818.0, "y": 994.0}, "nw": {"x": 1828.0, "y": 994.0}}, "position": {"x": 1823.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7734, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119639, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 990.0}, "se": {"x": 1828.0, "y": 990.0}, "sw": {"x": 1818.0, "y": 980.0}, "nw": {"x": 1828.0, "y": 980.0}}, "position": {"x": 1823.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7735, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119640, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 976.0}, "se": {"x": 1828.0, "y": 976.0}, "sw": {"x": 1818.0, "y": 966.0}, "nw": {"x": 1828.0, "y": 966.0}}, "position": {"x": 1823.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7736, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119641, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 962.0}, "se": {"x": 1828.0, "y": 962.0}, "sw": {"x": 1818.0, "y": 952.0}, "nw": {"x": 1828.0, "y": 952.0}}, "position": {"x": 1823.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7737, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119642, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 948.0}, "se": {"x": 1828.0, "y": 948.0}, "sw": {"x": 1818.0, "y": 938.0}, "nw": {"x": 1828.0, "y": 938.0}}, "position": {"x": 1823.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7738, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119643, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 934.0}, "se": {"x": 1828.0, "y": 934.0}, "sw": {"x": 1818.0, "y": 924.0}, "nw": {"x": 1828.0, "y": 924.0}}, "position": {"x": 1823.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7739, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119644, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 920.0}, "se": {"x": 1828.0, "y": 920.0}, "sw": {"x": 1818.0, "y": 910.0}, "nw": {"x": 1828.0, "y": 910.0}}, "position": {"x": 1823.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7740, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119645, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 906.0}, "se": {"x": 1828.0, "y": 906.0}, "sw": {"x": 1818.0, "y": 896.0}, "nw": {"x": 1828.0, "y": 896.0}}, "position": {"x": 1823.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7741, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119646, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 892.0}, "se": {"x": 1828.0, "y": 892.0}, "sw": {"x": 1818.0, "y": 882.0}, "nw": {"x": 1828.0, "y": 882.0}}, "position": {"x": 1823.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7742, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119647, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 878.0}, "se": {"x": 1828.0, "y": 878.0}, "sw": {"x": 1818.0, "y": 868.0}, "nw": {"x": 1828.0, "y": 868.0}}, "position": {"x": 1823.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7743, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119648, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 864.0}, "se": {"x": 1828.0, "y": 864.0}, "sw": {"x": 1818.0, "y": 854.0}, "nw": {"x": 1828.0, "y": 854.0}}, "position": {"x": 1823.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7744, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119649, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 850.0}, "se": {"x": 1828.0, "y": 850.0}, "sw": {"x": 1818.0, "y": 840.0}, "nw": {"x": 1828.0, "y": 840.0}}, "position": {"x": 1823.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7745, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119650, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 836.0}, "se": {"x": 1828.0, "y": 836.0}, "sw": {"x": 1818.0, "y": 826.0}, "nw": {"x": 1828.0, "y": 826.0}}, "position": {"x": 1823.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7746, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119651, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 822.0}, "se": {"x": 1828.0, "y": 822.0}, "sw": {"x": 1818.0, "y": 812.0}, "nw": {"x": 1828.0, "y": 812.0}}, "position": {"x": 1823.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7747, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119657, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1018.0}, "se": {"x": 1842.0, "y": 1018.0}, "sw": {"x": 1832.0, "y": 1008.0}, "nw": {"x": 1842.0, "y": 1008.0}}, "position": {"x": 1837.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7820, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119658, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1004.0}, "se": {"x": 1842.0, "y": 1004.0}, "sw": {"x": 1832.0, "y": 994.0}, "nw": {"x": 1842.0, "y": 994.0}}, "position": {"x": 1837.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7821, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119659, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 990.0}, "se": {"x": 1842.0, "y": 990.0}, "sw": {"x": 1832.0, "y": 980.0}, "nw": {"x": 1842.0, "y": 980.0}}, "position": {"x": 1837.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7822, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119660, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 976.0}, "se": {"x": 1842.0, "y": 976.0}, "sw": {"x": 1832.0, "y": 966.0}, "nw": {"x": 1842.0, "y": 966.0}}, "position": {"x": 1837.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7823, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119661, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 962.0}, "se": {"x": 1842.0, "y": 962.0}, "sw": {"x": 1832.0, "y": 952.0}, "nw": {"x": 1842.0, "y": 952.0}}, "position": {"x": 1837.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7824, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119662, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 948.0}, "se": {"x": 1842.0, "y": 948.0}, "sw": {"x": 1832.0, "y": 938.0}, "nw": {"x": 1842.0, "y": 938.0}}, "position": {"x": 1837.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7825, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119663, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 934.0}, "se": {"x": 1842.0, "y": 934.0}, "sw": {"x": 1832.0, "y": 924.0}, "nw": {"x": 1842.0, "y": 924.0}}, "position": {"x": 1837.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7826, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119664, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 920.0}, "se": {"x": 1842.0, "y": 920.0}, "sw": {"x": 1832.0, "y": 910.0}, "nw": {"x": 1842.0, "y": 910.0}}, "position": {"x": 1837.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7827, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119665, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 906.0}, "se": {"x": 1842.0, "y": 906.0}, "sw": {"x": 1832.0, "y": 896.0}, "nw": {"x": 1842.0, "y": 896.0}}, "position": {"x": 1837.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7828, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119666, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 892.0}, "se": {"x": 1842.0, "y": 892.0}, "sw": {"x": 1832.0, "y": 882.0}, "nw": {"x": 1842.0, "y": 882.0}}, "position": {"x": 1837.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7829, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119667, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 878.0}, "se": {"x": 1842.0, "y": 878.0}, "sw": {"x": 1832.0, "y": 868.0}, "nw": {"x": 1842.0, "y": 868.0}}, "position": {"x": 1837.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7830, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119668, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 864.0}, "se": {"x": 1842.0, "y": 864.0}, "sw": {"x": 1832.0, "y": 854.0}, "nw": {"x": 1842.0, "y": 854.0}}, "position": {"x": 1837.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7831, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119669, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 850.0}, "se": {"x": 1842.0, "y": 850.0}, "sw": {"x": 1832.0, "y": 840.0}, "nw": {"x": 1842.0, "y": 840.0}}, "position": {"x": 1837.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7832, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119670, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 836.0}, "se": {"x": 1842.0, "y": 836.0}, "sw": {"x": 1832.0, "y": 826.0}, "nw": {"x": 1842.0, "y": 826.0}}, "position": {"x": 1837.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7833, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119671, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 822.0}, "se": {"x": 1842.0, "y": 822.0}, "sw": {"x": 1832.0, "y": 812.0}, "nw": {"x": 1842.0, "y": 812.0}}, "position": {"x": 1837.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7834, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119677, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1018.0}, "se": {"x": 1856.0, "y": 1018.0}, "sw": {"x": 1846.0, "y": 1008.0}, "nw": {"x": 1856.0, "y": 1008.0}}, "position": {"x": 1851.0, "y": 1013.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7907, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119678, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1004.0}, "se": {"x": 1856.0, "y": 1004.0}, "sw": {"x": 1846.0, "y": 994.0}, "nw": {"x": 1856.0, "y": 994.0}}, "position": {"x": 1851.0, "y": 999.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7908, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119679, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 990.0}, "se": {"x": 1856.0, "y": 990.0}, "sw": {"x": 1846.0, "y": 980.0}, "nw": {"x": 1856.0, "y": 980.0}}, "position": {"x": 1851.0, "y": 985.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7909, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119680, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 976.0}, "se": {"x": 1856.0, "y": 976.0}, "sw": {"x": 1846.0, "y": 966.0}, "nw": {"x": 1856.0, "y": 966.0}}, "position": {"x": 1851.0, "y": 971.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7910, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119681, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 962.0}, "se": {"x": 1856.0, "y": 962.0}, "sw": {"x": 1846.0, "y": 952.0}, "nw": {"x": 1856.0, "y": 952.0}}, "position": {"x": 1851.0, "y": 957.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7911, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119682, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 948.0}, "se": {"x": 1856.0, "y": 948.0}, "sw": {"x": 1846.0, "y": 938.0}, "nw": {"x": 1856.0, "y": 938.0}}, "position": {"x": 1851.0, "y": 943.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7912, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119683, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 934.0}, "se": {"x": 1856.0, "y": 934.0}, "sw": {"x": 1846.0, "y": 924.0}, "nw": {"x": 1856.0, "y": 924.0}}, "position": {"x": 1851.0, "y": 929.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7913, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119684, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 920.0}, "se": {"x": 1856.0, "y": 920.0}, "sw": {"x": 1846.0, "y": 910.0}, "nw": {"x": 1856.0, "y": 910.0}}, "position": {"x": 1851.0, "y": 915.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7914, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119685, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 906.0}, "se": {"x": 1856.0, "y": 906.0}, "sw": {"x": 1846.0, "y": 896.0}, "nw": {"x": 1856.0, "y": 896.0}}, "position": {"x": 1851.0, "y": 901.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7915, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119686, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 892.0}, "se": {"x": 1856.0, "y": 892.0}, "sw": {"x": 1846.0, "y": 882.0}, "nw": {"x": 1856.0, "y": 882.0}}, "position": {"x": 1851.0, "y": 887.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7916, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119687, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 878.0}, "se": {"x": 1856.0, "y": 878.0}, "sw": {"x": 1846.0, "y": 868.0}, "nw": {"x": 1856.0, "y": 868.0}}, "position": {"x": 1851.0, "y": 873.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7917, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119688, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 864.0}, "se": {"x": 1856.0, "y": 864.0}, "sw": {"x": 1846.0, "y": 854.0}, "nw": {"x": 1856.0, "y": 854.0}}, "position": {"x": 1851.0, "y": 859.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7918, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119689, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 850.0}, "se": {"x": 1856.0, "y": 850.0}, "sw": {"x": 1846.0, "y": 840.0}, "nw": {"x": 1856.0, "y": 840.0}}, "position": {"x": 1851.0, "y": 845.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7919, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119690, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 836.0}, "se": {"x": 1856.0, "y": 836.0}, "sw": {"x": 1846.0, "y": 826.0}, "nw": {"x": 1856.0, "y": 826.0}}, "position": {"x": 1851.0, "y": 831.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7920, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119691, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 822.0}, "se": {"x": 1856.0, "y": 822.0}, "sw": {"x": 1846.0, "y": 812.0}, "nw": {"x": 1856.0, "y": 812.0}}, "position": {"x": 1851.0, "y": 817.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7921, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 3}, "waitingLinkedId": null, "sectionId": 59711}], "4:6": [{"logicalSeatId": 1537120852, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1719.0}, "se": {"x": 1024.0, "y": 1729.0}, "sw": {"x": 1034.0, "y": 1719.0}, "nw": {"x": 1034.0, "y": 1729.0}}, "position": {"x": 1029.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2991, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120853, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1719.0}, "se": {"x": 1038.0, "y": 1729.0}, "sw": {"x": 1048.0, "y": 1719.0}, "nw": {"x": 1048.0, "y": 1729.0}}, "position": {"x": 1043.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3071, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120854, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1719.0}, "se": {"x": 1052.0, "y": 1729.0}, "sw": {"x": 1062.0, "y": 1719.0}, "nw": {"x": 1062.0, "y": 1729.0}}, "position": {"x": 1057.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3151, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120855, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1719.0}, "se": {"x": 1066.0, "y": 1729.0}, "sw": {"x": 1076.0, "y": 1719.0}, "nw": {"x": 1076.0, "y": 1729.0}}, "position": {"x": 1071.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3206, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120856, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1719.0}, "se": {"x": 1080.0, "y": 1729.0}, "sw": {"x": 1090.0, "y": 1719.0}, "nw": {"x": 1090.0, "y": 1729.0}}, "position": {"x": 1085.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3255, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120857, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1719.0}, "se": {"x": 1094.0, "y": 1729.0}, "sw": {"x": 1104.0, "y": 1719.0}, "nw": {"x": 1104.0, "y": 1729.0}}, "position": {"x": 1099.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3304, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120858, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1719.0}, "se": {"x": 1108.0, "y": 1729.0}, "sw": {"x": 1118.0, "y": 1719.0}, "nw": {"x": 1118.0, "y": 1729.0}}, "position": {"x": 1113.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3353, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120859, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1719.0}, "se": {"x": 1122.0, "y": 1729.0}, "sw": {"x": 1132.0, "y": 1719.0}, "nw": {"x": 1132.0, "y": 1729.0}}, "position": {"x": 1127.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3402, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120860, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1719.0}, "se": {"x": 1136.0, "y": 1729.0}, "sw": {"x": 1146.0, "y": 1719.0}, "nw": {"x": 1146.0, "y": 1729.0}}, "position": {"x": 1141.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3451, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120861, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1719.0}, "se": {"x": 1150.0, "y": 1729.0}, "sw": {"x": 1160.0, "y": 1719.0}, "nw": {"x": 1160.0, "y": 1729.0}}, "position": {"x": 1155.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3500, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120862, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1719.0}, "se": {"x": 1164.0, "y": 1729.0}, "sw": {"x": 1174.0, "y": 1719.0}, "nw": {"x": 1174.0, "y": 1729.0}}, "position": {"x": 1169.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3549, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120863, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1719.0}, "se": {"x": 1227.0, "y": 1729.0}, "sw": {"x": 1237.0, "y": 1719.0}, "nw": {"x": 1237.0, "y": 1729.0}}, "position": {"x": 1232.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3949, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120864, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1719.0}, "se": {"x": 1241.0, "y": 1729.0}, "sw": {"x": 1251.0, "y": 1719.0}, "nw": {"x": 1251.0, "y": 1729.0}}, "position": {"x": 1246.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4037, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120865, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1719.0}, "se": {"x": 1255.0, "y": 1729.0}, "sw": {"x": 1265.0, "y": 1719.0}, "nw": {"x": 1265.0, "y": 1729.0}}, "position": {"x": 1260.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4125, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120866, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1719.0}, "se": {"x": 1269.0, "y": 1729.0}, "sw": {"x": 1279.0, "y": 1719.0}, "nw": {"x": 1279.0, "y": 1729.0}}, "position": {"x": 1274.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4213, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120890, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1733.0}, "se": {"x": 1024.0, "y": 1743.0}, "sw": {"x": 1034.0, "y": 1733.0}, "nw": {"x": 1034.0, "y": 1743.0}}, "position": {"x": 1029.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2990, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120891, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1733.0}, "se": {"x": 1038.0, "y": 1743.0}, "sw": {"x": 1048.0, "y": 1733.0}, "nw": {"x": 1048.0, "y": 1743.0}}, "position": {"x": 1043.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3070, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120892, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1733.0}, "se": {"x": 1052.0, "y": 1743.0}, "sw": {"x": 1062.0, "y": 1733.0}, "nw": {"x": 1062.0, "y": 1743.0}}, "position": {"x": 1057.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3150, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120893, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1733.0}, "se": {"x": 1066.0, "y": 1743.0}, "sw": {"x": 1076.0, "y": 1733.0}, "nw": {"x": 1076.0, "y": 1743.0}}, "position": {"x": 1071.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3205, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120894, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1733.0}, "se": {"x": 1080.0, "y": 1743.0}, "sw": {"x": 1090.0, "y": 1733.0}, "nw": {"x": 1090.0, "y": 1743.0}}, "position": {"x": 1085.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3254, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120895, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1733.0}, "se": {"x": 1094.0, "y": 1743.0}, "sw": {"x": 1104.0, "y": 1733.0}, "nw": {"x": 1104.0, "y": 1743.0}}, "position": {"x": 1099.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3303, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120896, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1733.0}, "se": {"x": 1108.0, "y": 1743.0}, "sw": {"x": 1118.0, "y": 1733.0}, "nw": {"x": 1118.0, "y": 1743.0}}, "position": {"x": 1113.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3352, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120897, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1733.0}, "se": {"x": 1122.0, "y": 1743.0}, "sw": {"x": 1132.0, "y": 1733.0}, "nw": {"x": 1132.0, "y": 1743.0}}, "position": {"x": 1127.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3401, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120898, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1733.0}, "se": {"x": 1136.0, "y": 1743.0}, "sw": {"x": 1146.0, "y": 1733.0}, "nw": {"x": 1146.0, "y": 1743.0}}, "position": {"x": 1141.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3450, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120899, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1733.0}, "se": {"x": 1150.0, "y": 1743.0}, "sw": {"x": 1160.0, "y": 1733.0}, "nw": {"x": 1160.0, "y": 1743.0}}, "position": {"x": 1155.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3499, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120900, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1733.0}, "se": {"x": 1164.0, "y": 1743.0}, "sw": {"x": 1174.0, "y": 1733.0}, "nw": {"x": 1174.0, "y": 1743.0}}, "position": {"x": 1169.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3548, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120901, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1733.0}, "se": {"x": 1227.0, "y": 1743.0}, "sw": {"x": 1237.0, "y": 1733.0}, "nw": {"x": 1237.0, "y": 1743.0}}, "position": {"x": 1232.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3948, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120902, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1733.0}, "se": {"x": 1241.0, "y": 1743.0}, "sw": {"x": 1251.0, "y": 1733.0}, "nw": {"x": 1251.0, "y": 1743.0}}, "position": {"x": 1246.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4036, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120903, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1733.0}, "se": {"x": 1255.0, "y": 1743.0}, "sw": {"x": 1265.0, "y": 1733.0}, "nw": {"x": 1265.0, "y": 1743.0}}, "position": {"x": 1260.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4124, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120904, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1733.0}, "se": {"x": 1269.0, "y": 1743.0}, "sw": {"x": 1279.0, "y": 1733.0}, "nw": {"x": 1279.0, "y": 1743.0}}, "position": {"x": 1274.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4212, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120928, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1747.0}, "se": {"x": 1024.0, "y": 1757.0}, "sw": {"x": 1034.0, "y": 1747.0}, "nw": {"x": 1034.0, "y": 1757.0}}, "position": {"x": 1029.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2989, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120929, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1747.0}, "se": {"x": 1038.0, "y": 1757.0}, "sw": {"x": 1048.0, "y": 1747.0}, "nw": {"x": 1048.0, "y": 1757.0}}, "position": {"x": 1043.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3069, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120930, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1747.0}, "se": {"x": 1052.0, "y": 1757.0}, "sw": {"x": 1062.0, "y": 1747.0}, "nw": {"x": 1062.0, "y": 1757.0}}, "position": {"x": 1057.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3149, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120931, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1747.0}, "se": {"x": 1066.0, "y": 1757.0}, "sw": {"x": 1076.0, "y": 1747.0}, "nw": {"x": 1076.0, "y": 1757.0}}, "position": {"x": 1071.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3204, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120932, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1747.0}, "se": {"x": 1080.0, "y": 1757.0}, "sw": {"x": 1090.0, "y": 1747.0}, "nw": {"x": 1090.0, "y": 1757.0}}, "position": {"x": 1085.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3253, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120933, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1747.0}, "se": {"x": 1094.0, "y": 1757.0}, "sw": {"x": 1104.0, "y": 1747.0}, "nw": {"x": 1104.0, "y": 1757.0}}, "position": {"x": 1099.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3302, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120934, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1747.0}, "se": {"x": 1108.0, "y": 1757.0}, "sw": {"x": 1118.0, "y": 1747.0}, "nw": {"x": 1118.0, "y": 1757.0}}, "position": {"x": 1113.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3351, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120935, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1747.0}, "se": {"x": 1122.0, "y": 1757.0}, "sw": {"x": 1132.0, "y": 1747.0}, "nw": {"x": 1132.0, "y": 1757.0}}, "position": {"x": 1127.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3400, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120936, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1747.0}, "se": {"x": 1136.0, "y": 1757.0}, "sw": {"x": 1146.0, "y": 1747.0}, "nw": {"x": 1146.0, "y": 1757.0}}, "position": {"x": 1141.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3449, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120937, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1747.0}, "se": {"x": 1150.0, "y": 1757.0}, "sw": {"x": 1160.0, "y": 1747.0}, "nw": {"x": 1160.0, "y": 1757.0}}, "position": {"x": 1155.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3498, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120938, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1747.0}, "se": {"x": 1164.0, "y": 1757.0}, "sw": {"x": 1174.0, "y": 1747.0}, "nw": {"x": 1174.0, "y": 1757.0}}, "position": {"x": 1169.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3547, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120939, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1747.0}, "se": {"x": 1227.0, "y": 1757.0}, "sw": {"x": 1237.0, "y": 1747.0}, "nw": {"x": 1237.0, "y": 1757.0}}, "position": {"x": 1232.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3947, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120940, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1747.0}, "se": {"x": 1241.0, "y": 1757.0}, "sw": {"x": 1251.0, "y": 1747.0}, "nw": {"x": 1251.0, "y": 1757.0}}, "position": {"x": 1246.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4035, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120941, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1747.0}, "se": {"x": 1255.0, "y": 1757.0}, "sw": {"x": 1265.0, "y": 1747.0}, "nw": {"x": 1265.0, "y": 1757.0}}, "position": {"x": 1260.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4123, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120942, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1747.0}, "se": {"x": 1269.0, "y": 1757.0}, "sw": {"x": 1279.0, "y": 1747.0}, "nw": {"x": 1279.0, "y": 1757.0}}, "position": {"x": 1274.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4211, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120966, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1761.0}, "se": {"x": 1024.0, "y": 1771.0}, "sw": {"x": 1034.0, "y": 1761.0}, "nw": {"x": 1034.0, "y": 1771.0}}, "position": {"x": 1029.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158278, "gate": "", "blockId": null, "orderNum": 2988, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120967, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1761.0}, "se": {"x": 1038.0, "y": 1771.0}, "sw": {"x": 1048.0, "y": 1761.0}, "nw": {"x": 1048.0, "y": 1771.0}}, "position": {"x": 1043.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158279, "gate": "", "blockId": null, "orderNum": 3068, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120968, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1761.0}, "se": {"x": 1052.0, "y": 1771.0}, "sw": {"x": 1062.0, "y": 1761.0}, "nw": {"x": 1062.0, "y": 1771.0}}, "position": {"x": 1057.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158280, "gate": "", "blockId": null, "orderNum": 3148, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120969, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1761.0}, "se": {"x": 1066.0, "y": 1771.0}, "sw": {"x": 1076.0, "y": 1761.0}, "nw": {"x": 1076.0, "y": 1771.0}}, "position": {"x": 1071.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158281, "gate": "", "blockId": null, "orderNum": 3203, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120970, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1761.0}, "se": {"x": 1080.0, "y": 1771.0}, "sw": {"x": 1090.0, "y": 1761.0}, "nw": {"x": 1090.0, "y": 1771.0}}, "position": {"x": 1085.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158282, "gate": "", "blockId": null, "orderNum": 3252, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120971, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1761.0}, "se": {"x": 1094.0, "y": 1771.0}, "sw": {"x": 1104.0, "y": 1761.0}, "nw": {"x": 1104.0, "y": 1771.0}}, "position": {"x": 1099.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158283, "gate": "", "blockId": null, "orderNum": 3301, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120972, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1761.0}, "se": {"x": 1108.0, "y": 1771.0}, "sw": {"x": 1118.0, "y": 1761.0}, "nw": {"x": 1118.0, "y": 1771.0}}, "position": {"x": 1113.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158284, "gate": "", "blockId": null, "orderNum": 3350, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120973, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1761.0}, "se": {"x": 1122.0, "y": 1771.0}, "sw": {"x": 1132.0, "y": 1761.0}, "nw": {"x": 1132.0, "y": 1771.0}}, "position": {"x": 1127.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158285, "gate": "", "blockId": null, "orderNum": 3399, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120974, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1761.0}, "se": {"x": 1136.0, "y": 1771.0}, "sw": {"x": 1146.0, "y": 1761.0}, "nw": {"x": 1146.0, "y": 1771.0}}, "position": {"x": 1141.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158286, "gate": "", "blockId": null, "orderNum": 3448, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120975, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1761.0}, "se": {"x": 1150.0, "y": 1771.0}, "sw": {"x": 1160.0, "y": 1761.0}, "nw": {"x": 1160.0, "y": 1771.0}}, "position": {"x": 1155.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158287, "gate": "", "blockId": null, "orderNum": 3497, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120976, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1761.0}, "se": {"x": 1164.0, "y": 1771.0}, "sw": {"x": 1174.0, "y": 1761.0}, "nw": {"x": 1174.0, "y": 1771.0}}, "position": {"x": 1169.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158288, "gate": "", "blockId": null, "orderNum": 3546, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120977, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1761.0}, "se": {"x": 1227.0, "y": 1771.0}, "sw": {"x": 1237.0, "y": 1761.0}, "nw": {"x": 1237.0, "y": 1771.0}}, "position": {"x": 1232.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158289, "gate": "", "blockId": null, "orderNum": 3946, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120978, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1761.0}, "se": {"x": 1241.0, "y": 1771.0}, "sw": {"x": 1251.0, "y": 1761.0}, "nw": {"x": 1251.0, "y": 1771.0}}, "position": {"x": 1246.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158290, "gate": "", "blockId": null, "orderNum": 4034, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120979, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1761.0}, "se": {"x": 1255.0, "y": 1771.0}, "sw": {"x": 1265.0, "y": 1761.0}, "nw": {"x": 1265.0, "y": 1771.0}}, "position": {"x": 1260.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158291, "gate": "", "blockId": null, "orderNum": 4122, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120980, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1761.0}, "se": {"x": 1269.0, "y": 1771.0}, "sw": {"x": 1279.0, "y": 1761.0}, "nw": {"x": 1279.0, "y": 1771.0}}, "position": {"x": 1274.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158292, "gate": "", "blockId": null, "orderNum": 4210, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "6:4": [{"logicalSeatId": 1537123954, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1189.0}, "se": {"x": 1535.0, "y": 1199.0}, "sw": {"x": 1545.0, "y": 1189.0}, "nw": {"x": 1545.0, "y": 1199.0}}, "position": {"x": 1540.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123955, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1189.0}, "se": {"x": 1549.0, "y": 1199.0}, "sw": {"x": 1559.0, "y": 1189.0}, "nw": {"x": 1559.0, "y": 1199.0}}, "position": {"x": 1554.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123956, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1189.0}, "se": {"x": 1563.0, "y": 1199.0}, "sw": {"x": 1573.0, "y": 1189.0}, "nw": {"x": 1573.0, "y": 1199.0}}, "position": {"x": 1568.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123957, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1189.0}, "se": {"x": 1577.0, "y": 1199.0}, "sw": {"x": 1587.0, "y": 1189.0}, "nw": {"x": 1587.0, "y": 1199.0}}, "position": {"x": 1582.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123958, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1189.0}, "se": {"x": 1591.0, "y": 1199.0}, "sw": {"x": 1601.0, "y": 1189.0}, "nw": {"x": 1601.0, "y": 1199.0}}, "position": {"x": 1596.0, "y": 1194.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 1\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "1\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00001\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123964, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1203.0}, "se": {"x": 1535.0, "y": 1213.0}, "sw": {"x": 1545.0, "y": 1203.0}, "nw": {"x": 1545.0, "y": 1213.0}}, "position": {"x": 1540.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123965, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1203.0}, "se": {"x": 1549.0, "y": 1213.0}, "sw": {"x": 1559.0, "y": 1203.0}, "nw": {"x": 1559.0, "y": 1213.0}}, "position": {"x": 1554.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123966, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1203.0}, "se": {"x": 1563.0, "y": 1213.0}, "sw": {"x": 1573.0, "y": 1203.0}, "nw": {"x": 1573.0, "y": 1213.0}}, "position": {"x": 1568.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123967, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1203.0}, "se": {"x": 1577.0, "y": 1213.0}, "sw": {"x": 1587.0, "y": 1203.0}, "nw": {"x": 1587.0, "y": 1213.0}}, "position": {"x": 1582.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123968, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1203.0}, "se": {"x": 1591.0, "y": 1213.0}, "sw": {"x": 1601.0, "y": 1203.0}, "nw": {"x": 1601.0, "y": 1213.0}}, "position": {"x": 1596.0, "y": 1208.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123974, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1217.0}, "se": {"x": 1535.0, "y": 1227.0}, "sw": {"x": 1545.0, "y": 1217.0}, "nw": {"x": 1545.0, "y": 1227.0}}, "position": {"x": 1540.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123975, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1217.0}, "se": {"x": 1549.0, "y": 1227.0}, "sw": {"x": 1559.0, "y": 1217.0}, "nw": {"x": 1559.0, "y": 1227.0}}, "position": {"x": 1554.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123976, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1217.0}, "se": {"x": 1563.0, "y": 1227.0}, "sw": {"x": 1573.0, "y": 1217.0}, "nw": {"x": 1573.0, "y": 1227.0}}, "position": {"x": 1568.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123977, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1217.0}, "se": {"x": 1577.0, "y": 1227.0}, "sw": {"x": 1587.0, "y": 1217.0}, "nw": {"x": 1587.0, "y": 1227.0}}, "position": {"x": 1582.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123978, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1217.0}, "se": {"x": 1591.0, "y": 1227.0}, "sw": {"x": 1601.0, "y": 1217.0}, "nw": {"x": 1601.0, "y": 1227.0}}, "position": {"x": 1596.0, "y": 1222.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123984, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1231.0}, "se": {"x": 1535.0, "y": 1241.0}, "sw": {"x": 1545.0, "y": 1231.0}, "nw": {"x": 1545.0, "y": 1241.0}}, "position": {"x": 1540.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123985, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1231.0}, "se": {"x": 1549.0, "y": 1241.0}, "sw": {"x": 1559.0, "y": 1231.0}, "nw": {"x": 1559.0, "y": 1241.0}}, "position": {"x": 1554.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123986, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1231.0}, "se": {"x": 1563.0, "y": 1241.0}, "sw": {"x": 1573.0, "y": 1231.0}, "nw": {"x": 1573.0, "y": 1241.0}}, "position": {"x": 1568.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123987, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1231.0}, "se": {"x": 1577.0, "y": 1241.0}, "sw": {"x": 1587.0, "y": 1231.0}, "nw": {"x": 1587.0, "y": 1241.0}}, "position": {"x": 1582.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123988, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1231.0}, "se": {"x": 1591.0, "y": 1241.0}, "sw": {"x": 1601.0, "y": 1231.0}, "nw": {"x": 1601.0, "y": 1241.0}}, "position": {"x": 1596.0, "y": 1236.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123994, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1245.0}, "se": {"x": 1535.0, "y": 1255.0}, "sw": {"x": 1545.0, "y": 1245.0}, "nw": {"x": 1545.0, "y": 1255.0}}, "position": {"x": 1540.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123995, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1245.0}, "se": {"x": 1549.0, "y": 1255.0}, "sw": {"x": 1559.0, "y": 1245.0}, "nw": {"x": 1559.0, "y": 1255.0}}, "position": {"x": 1554.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123996, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1245.0}, "se": {"x": 1563.0, "y": 1255.0}, "sw": {"x": 1573.0, "y": 1245.0}, "nw": {"x": 1573.0, "y": 1255.0}}, "position": {"x": 1568.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123997, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1245.0}, "se": {"x": 1577.0, "y": 1255.0}, "sw": {"x": 1587.0, "y": 1245.0}, "nw": {"x": 1587.0, "y": 1255.0}}, "position": {"x": 1582.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537123998, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1245.0}, "se": {"x": 1591.0, "y": 1255.0}, "sw": {"x": 1601.0, "y": 1245.0}, "nw": {"x": 1601.0, "y": 1255.0}}, "position": {"x": 1596.0, "y": 1250.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124004, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1259.0}, "se": {"x": 1535.0, "y": 1269.0}, "sw": {"x": 1545.0, "y": 1259.0}, "nw": {"x": 1545.0, "y": 1269.0}}, "position": {"x": 1540.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124005, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1259.0}, "se": {"x": 1549.0, "y": 1269.0}, "sw": {"x": 1559.0, "y": 1259.0}, "nw": {"x": 1559.0, "y": 1269.0}}, "position": {"x": 1554.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124006, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1259.0}, "se": {"x": 1563.0, "y": 1269.0}, "sw": {"x": 1573.0, "y": 1259.0}, "nw": {"x": 1573.0, "y": 1269.0}}, "position": {"x": 1568.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124007, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1259.0}, "se": {"x": 1577.0, "y": 1269.0}, "sw": {"x": 1587.0, "y": 1259.0}, "nw": {"x": 1587.0, "y": 1269.0}}, "position": {"x": 1582.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124008, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1259.0}, "se": {"x": 1591.0, "y": 1269.0}, "sw": {"x": 1601.0, "y": 1259.0}, "nw": {"x": 1601.0, "y": 1269.0}}, "position": {"x": 1596.0, "y": 1264.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 6\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "6\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00006\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124014, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1273.0}, "se": {"x": 1535.0, "y": 1283.0}, "sw": {"x": 1545.0, "y": 1273.0}, "nw": {"x": 1545.0, "y": 1283.0}}, "position": {"x": 1540.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124015, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1273.0}, "se": {"x": 1549.0, "y": 1283.0}, "sw": {"x": 1559.0, "y": 1273.0}, "nw": {"x": 1559.0, "y": 1283.0}}, "position": {"x": 1554.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124016, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1273.0}, "se": {"x": 1563.0, "y": 1283.0}, "sw": {"x": 1573.0, "y": 1273.0}, "nw": {"x": 1573.0, "y": 1283.0}}, "position": {"x": 1568.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124017, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1273.0}, "se": {"x": 1577.0, "y": 1283.0}, "sw": {"x": 1587.0, "y": 1273.0}, "nw": {"x": 1587.0, "y": 1283.0}}, "position": {"x": 1582.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124018, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1273.0}, "se": {"x": 1591.0, "y": 1283.0}, "sw": {"x": 1601.0, "y": 1273.0}, "nw": {"x": 1601.0, "y": 1283.0}}, "position": {"x": 1596.0, "y": 1278.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59712}], "5:6": [{"logicalSeatId": 1537120867, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1719.0}, "se": {"x": 1283.0, "y": 1729.0}, "sw": {"x": 1293.0, "y": 1719.0}, "nw": {"x": 1293.0, "y": 1729.0}}, "position": {"x": 1288.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4301, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120868, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1719.0}, "se": {"x": 1297.0, "y": 1729.0}, "sw": {"x": 1307.0, "y": 1719.0}, "nw": {"x": 1307.0, "y": 1729.0}}, "position": {"x": 1302.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4413, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120869, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1719.0}, "se": {"x": 1311.0, "y": 1729.0}, "sw": {"x": 1321.0, "y": 1719.0}, "nw": {"x": 1321.0, "y": 1729.0}}, "position": {"x": 1316.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4525, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120870, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1719.0}, "se": {"x": 1325.0, "y": 1729.0}, "sw": {"x": 1335.0, "y": 1719.0}, "nw": {"x": 1335.0, "y": 1729.0}}, "position": {"x": 1330.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4643, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120871, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1719.0}, "se": {"x": 1339.0, "y": 1729.0}, "sw": {"x": 1349.0, "y": 1719.0}, "nw": {"x": 1349.0, "y": 1729.0}}, "position": {"x": 1344.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4761, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120872, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1719.0}, "se": {"x": 1353.0, "y": 1729.0}, "sw": {"x": 1363.0, "y": 1719.0}, "nw": {"x": 1363.0, "y": 1729.0}}, "position": {"x": 1358.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4929, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120873, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1719.0}, "se": {"x": 1367.0, "y": 1729.0}, "sw": {"x": 1377.0, "y": 1719.0}, "nw": {"x": 1377.0, "y": 1729.0}}, "position": {"x": 1372.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5097, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120874, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1719.0}, "se": {"x": 1381.0, "y": 1729.0}, "sw": {"x": 1391.0, "y": 1719.0}, "nw": {"x": 1391.0, "y": 1729.0}}, "position": {"x": 1386.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5265, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120875, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1719.0}, "se": {"x": 1395.0, "y": 1729.0}, "sw": {"x": 1405.0, "y": 1719.0}, "nw": {"x": 1405.0, "y": 1729.0}}, "position": {"x": 1400.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5433, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120876, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1719.0}, "se": {"x": 1409.0, "y": 1729.0}, "sw": {"x": 1419.0, "y": 1719.0}, "nw": {"x": 1419.0, "y": 1729.0}}, "position": {"x": 1414.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5601, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120877, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1719.0}, "se": {"x": 1423.0, "y": 1729.0}, "sw": {"x": 1433.0, "y": 1719.0}, "nw": {"x": 1433.0, "y": 1729.0}}, "position": {"x": 1428.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5791, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120878, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1719.0}, "se": {"x": 1437.0, "y": 1729.0}, "sw": {"x": 1447.0, "y": 1719.0}, "nw": {"x": 1447.0, "y": 1729.0}}, "position": {"x": 1442.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5981, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120879, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1719.0}, "se": {"x": 1451.0, "y": 1729.0}, "sw": {"x": 1461.0, "y": 1719.0}, "nw": {"x": 1461.0, "y": 1729.0}}, "position": {"x": 1456.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6171, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120880, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1719.0}, "se": {"x": 1465.0, "y": 1729.0}, "sw": {"x": 1475.0, "y": 1719.0}, "nw": {"x": 1475.0, "y": 1729.0}}, "position": {"x": 1470.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6361, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120881, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1719.0}, "se": {"x": 1479.0, "y": 1729.0}, "sw": {"x": 1489.0, "y": 1719.0}, "nw": {"x": 1489.0, "y": 1729.0}}, "position": {"x": 1484.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 2\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6551, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "2\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00002\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120905, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1733.0}, "se": {"x": 1283.0, "y": 1743.0}, "sw": {"x": 1293.0, "y": 1733.0}, "nw": {"x": 1293.0, "y": 1743.0}}, "position": {"x": 1288.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4300, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120906, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1733.0}, "se": {"x": 1297.0, "y": 1743.0}, "sw": {"x": 1307.0, "y": 1733.0}, "nw": {"x": 1307.0, "y": 1743.0}}, "position": {"x": 1302.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4412, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120907, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1733.0}, "se": {"x": 1311.0, "y": 1743.0}, "sw": {"x": 1321.0, "y": 1733.0}, "nw": {"x": 1321.0, "y": 1743.0}}, "position": {"x": 1316.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4524, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120908, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1733.0}, "se": {"x": 1325.0, "y": 1743.0}, "sw": {"x": 1335.0, "y": 1733.0}, "nw": {"x": 1335.0, "y": 1743.0}}, "position": {"x": 1330.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4642, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120909, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1733.0}, "se": {"x": 1339.0, "y": 1743.0}, "sw": {"x": 1349.0, "y": 1733.0}, "nw": {"x": 1349.0, "y": 1743.0}}, "position": {"x": 1344.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4760, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120910, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1733.0}, "se": {"x": 1353.0, "y": 1743.0}, "sw": {"x": 1363.0, "y": 1733.0}, "nw": {"x": 1363.0, "y": 1743.0}}, "position": {"x": 1358.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4928, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120911, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1733.0}, "se": {"x": 1367.0, "y": 1743.0}, "sw": {"x": 1377.0, "y": 1733.0}, "nw": {"x": 1377.0, "y": 1743.0}}, "position": {"x": 1372.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5096, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120912, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1733.0}, "se": {"x": 1381.0, "y": 1743.0}, "sw": {"x": 1391.0, "y": 1733.0}, "nw": {"x": 1391.0, "y": 1743.0}}, "position": {"x": 1386.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5264, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120913, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1733.0}, "se": {"x": 1395.0, "y": 1743.0}, "sw": {"x": 1405.0, "y": 1733.0}, "nw": {"x": 1405.0, "y": 1743.0}}, "position": {"x": 1400.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5432, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120914, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1733.0}, "se": {"x": 1409.0, "y": 1743.0}, "sw": {"x": 1419.0, "y": 1733.0}, "nw": {"x": 1419.0, "y": 1743.0}}, "position": {"x": 1414.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5600, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120915, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1733.0}, "se": {"x": 1423.0, "y": 1743.0}, "sw": {"x": 1433.0, "y": 1733.0}, "nw": {"x": 1433.0, "y": 1743.0}}, "position": {"x": 1428.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5790, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120916, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1733.0}, "se": {"x": 1437.0, "y": 1743.0}, "sw": {"x": 1447.0, "y": 1733.0}, "nw": {"x": 1447.0, "y": 1743.0}}, "position": {"x": 1442.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5980, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120917, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1733.0}, "se": {"x": 1451.0, "y": 1743.0}, "sw": {"x": 1461.0, "y": 1733.0}, "nw": {"x": 1461.0, "y": 1743.0}}, "position": {"x": 1456.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6170, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120918, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1733.0}, "se": {"x": 1465.0, "y": 1743.0}, "sw": {"x": 1475.0, "y": 1733.0}, "nw": {"x": 1475.0, "y": 1743.0}}, "position": {"x": 1470.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6360, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120919, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1733.0}, "se": {"x": 1479.0, "y": 1743.0}, "sw": {"x": 1489.0, "y": 1733.0}, "nw": {"x": 1489.0, "y": 1743.0}}, "position": {"x": 1484.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 3\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6550, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "3\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00003\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120943, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1747.0}, "se": {"x": 1283.0, "y": 1757.0}, "sw": {"x": 1293.0, "y": 1747.0}, "nw": {"x": 1293.0, "y": 1757.0}}, "position": {"x": 1288.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4299, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120944, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1747.0}, "se": {"x": 1297.0, "y": 1757.0}, "sw": {"x": 1307.0, "y": 1747.0}, "nw": {"x": 1307.0, "y": 1757.0}}, "position": {"x": 1302.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4411, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120945, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1747.0}, "se": {"x": 1311.0, "y": 1757.0}, "sw": {"x": 1321.0, "y": 1747.0}, "nw": {"x": 1321.0, "y": 1757.0}}, "position": {"x": 1316.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4523, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120946, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1747.0}, "se": {"x": 1325.0, "y": 1757.0}, "sw": {"x": 1335.0, "y": 1747.0}, "nw": {"x": 1335.0, "y": 1757.0}}, "position": {"x": 1330.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4641, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120947, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1747.0}, "se": {"x": 1339.0, "y": 1757.0}, "sw": {"x": 1349.0, "y": 1747.0}, "nw": {"x": 1349.0, "y": 1757.0}}, "position": {"x": 1344.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4759, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120948, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1747.0}, "se": {"x": 1353.0, "y": 1757.0}, "sw": {"x": 1363.0, "y": 1747.0}, "nw": {"x": 1363.0, "y": 1757.0}}, "position": {"x": 1358.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4927, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120949, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1747.0}, "se": {"x": 1367.0, "y": 1757.0}, "sw": {"x": 1377.0, "y": 1747.0}, "nw": {"x": 1377.0, "y": 1757.0}}, "position": {"x": 1372.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5095, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120950, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1747.0}, "se": {"x": 1381.0, "y": 1757.0}, "sw": {"x": 1391.0, "y": 1747.0}, "nw": {"x": 1391.0, "y": 1757.0}}, "position": {"x": 1386.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5263, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120951, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1747.0}, "se": {"x": 1395.0, "y": 1757.0}, "sw": {"x": 1405.0, "y": 1747.0}, "nw": {"x": 1405.0, "y": 1757.0}}, "position": {"x": 1400.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5431, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120952, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1747.0}, "se": {"x": 1409.0, "y": 1757.0}, "sw": {"x": 1419.0, "y": 1747.0}, "nw": {"x": 1419.0, "y": 1757.0}}, "position": {"x": 1414.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5599, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120953, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1747.0}, "se": {"x": 1423.0, "y": 1757.0}, "sw": {"x": 1433.0, "y": 1747.0}, "nw": {"x": 1433.0, "y": 1757.0}}, "position": {"x": 1428.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5789, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120954, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1747.0}, "se": {"x": 1437.0, "y": 1757.0}, "sw": {"x": 1447.0, "y": 1747.0}, "nw": {"x": 1447.0, "y": 1757.0}}, "position": {"x": 1442.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5979, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120955, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1747.0}, "se": {"x": 1451.0, "y": 1757.0}, "sw": {"x": 1461.0, "y": 1747.0}, "nw": {"x": 1461.0, "y": 1757.0}}, "position": {"x": 1456.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6169, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120956, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1747.0}, "se": {"x": 1465.0, "y": 1757.0}, "sw": {"x": 1475.0, "y": 1747.0}, "nw": {"x": 1475.0, "y": 1757.0}}, "position": {"x": 1470.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6359, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120957, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1747.0}, "se": {"x": 1479.0, "y": 1757.0}, "sw": {"x": 1489.0, "y": 1747.0}, "nw": {"x": 1489.0, "y": 1757.0}}, "position": {"x": 1484.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 4\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6549, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "4\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00004\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120981, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1761.0}, "se": {"x": 1283.0, "y": 1771.0}, "sw": {"x": 1293.0, "y": 1761.0}, "nw": {"x": 1293.0, "y": 1771.0}}, "position": {"x": 1288.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158293, "gate": "", "blockId": null, "orderNum": 4298, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120982, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1761.0}, "se": {"x": 1297.0, "y": 1771.0}, "sw": {"x": 1307.0, "y": 1761.0}, "nw": {"x": 1307.0, "y": 1771.0}}, "position": {"x": 1302.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158294, "gate": "", "blockId": null, "orderNum": 4410, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120983, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1761.0}, "se": {"x": 1311.0, "y": 1771.0}, "sw": {"x": 1321.0, "y": 1761.0}, "nw": {"x": 1321.0, "y": 1771.0}}, "position": {"x": 1316.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158295, "gate": "", "blockId": null, "orderNum": 4522, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120984, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1761.0}, "se": {"x": 1325.0, "y": 1771.0}, "sw": {"x": 1335.0, "y": 1761.0}, "nw": {"x": 1335.0, "y": 1771.0}}, "position": {"x": 1330.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158296, "gate": "", "blockId": null, "orderNum": 4640, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120985, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1761.0}, "se": {"x": 1339.0, "y": 1771.0}, "sw": {"x": 1349.0, "y": 1761.0}, "nw": {"x": 1349.0, "y": 1771.0}}, "position": {"x": 1344.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158297, "gate": "", "blockId": null, "orderNum": 4758, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120986, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1761.0}, "se": {"x": 1353.0, "y": 1771.0}, "sw": {"x": 1363.0, "y": 1761.0}, "nw": {"x": 1363.0, "y": 1771.0}}, "position": {"x": 1358.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158298, "gate": "", "blockId": null, "orderNum": 4926, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120987, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1761.0}, "se": {"x": 1367.0, "y": 1771.0}, "sw": {"x": 1377.0, "y": 1761.0}, "nw": {"x": 1377.0, "y": 1771.0}}, "position": {"x": 1372.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158299, "gate": "", "blockId": null, "orderNum": 5094, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120988, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1761.0}, "se": {"x": 1381.0, "y": 1771.0}, "sw": {"x": 1391.0, "y": 1761.0}, "nw": {"x": 1391.0, "y": 1771.0}}, "position": {"x": 1386.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158300, "gate": "", "blockId": null, "orderNum": 5262, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120989, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1761.0}, "se": {"x": 1395.0, "y": 1771.0}, "sw": {"x": 1405.0, "y": 1761.0}, "nw": {"x": 1405.0, "y": 1771.0}}, "position": {"x": 1400.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158301, "gate": "", "blockId": null, "orderNum": 5430, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120990, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1761.0}, "se": {"x": 1409.0, "y": 1771.0}, "sw": {"x": 1419.0, "y": 1761.0}, "nw": {"x": 1419.0, "y": 1771.0}}, "position": {"x": 1414.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158302, "gate": "", "blockId": null, "orderNum": 5598, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120991, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1761.0}, "se": {"x": 1423.0, "y": 1771.0}, "sw": {"x": 1433.0, "y": 1761.0}, "nw": {"x": 1433.0, "y": 1771.0}}, "position": {"x": 1428.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158303, "gate": "", "blockId": null, "orderNum": 5788, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120992, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1761.0}, "se": {"x": 1437.0, "y": 1771.0}, "sw": {"x": 1447.0, "y": 1761.0}, "nw": {"x": 1447.0, "y": 1771.0}}, "position": {"x": 1442.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158304, "gate": "", "blockId": null, "orderNum": 5978, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120993, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1761.0}, "se": {"x": 1451.0, "y": 1771.0}, "sw": {"x": 1461.0, "y": 1761.0}, "nw": {"x": 1461.0, "y": 1771.0}}, "position": {"x": 1456.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158305, "gate": "", "blockId": null, "orderNum": 6168, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120994, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1761.0}, "se": {"x": 1465.0, "y": 1771.0}, "sw": {"x": 1475.0, "y": 1761.0}, "nw": {"x": 1475.0, "y": 1771.0}}, "position": {"x": 1470.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158306, "gate": "", "blockId": null, "orderNum": 6358, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120995, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1761.0}, "se": {"x": 1479.0, "y": 1771.0}, "sw": {"x": 1489.0, "y": 1761.0}, "nw": {"x": 1489.0, "y": 1771.0}}, "position": {"x": 1484.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158307, "gate": "", "blockId": null, "orderNum": 6548, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "7:4": [{"logicalSeatId": 1537119612, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1088.0}, "se": {"x": 1814.0, "y": 1088.0}, "sw": {"x": 1804.0, "y": 1078.0}, "nw": {"x": 1814.0, "y": 1078.0}}, "position": {"x": 1809.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7641, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119613, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1074.0}, "se": {"x": 1814.0, "y": 1074.0}, "sw": {"x": 1804.0, "y": 1064.0}, "nw": {"x": 1814.0, "y": 1064.0}}, "position": {"x": 1809.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7642, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119614, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1060.0}, "se": {"x": 1814.0, "y": 1060.0}, "sw": {"x": 1804.0, "y": 1050.0}, "nw": {"x": 1814.0, "y": 1050.0}}, "position": {"x": 1809.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7643, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119615, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1046.0}, "se": {"x": 1814.0, "y": 1046.0}, "sw": {"x": 1804.0, "y": 1036.0}, "nw": {"x": 1814.0, "y": 1036.0}}, "position": {"x": 1809.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7644, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119616, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1032.0}, "se": {"x": 1814.0, "y": 1032.0}, "sw": {"x": 1804.0, "y": 1022.0}, "nw": {"x": 1814.0, "y": 1022.0}}, "position": {"x": 1809.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156906, "gate": "", "blockId": null, "orderNum": 7645, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119632, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1088.0}, "se": {"x": 1828.0, "y": 1088.0}, "sw": {"x": 1818.0, "y": 1078.0}, "nw": {"x": 1828.0, "y": 1078.0}}, "position": {"x": 1823.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7728, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119633, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1074.0}, "se": {"x": 1828.0, "y": 1074.0}, "sw": {"x": 1818.0, "y": 1064.0}, "nw": {"x": 1828.0, "y": 1064.0}}, "position": {"x": 1823.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7729, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119634, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1060.0}, "se": {"x": 1828.0, "y": 1060.0}, "sw": {"x": 1818.0, "y": 1050.0}, "nw": {"x": 1828.0, "y": 1050.0}}, "position": {"x": 1823.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7730, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119635, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1046.0}, "se": {"x": 1828.0, "y": 1046.0}, "sw": {"x": 1818.0, "y": 1036.0}, "nw": {"x": 1828.0, "y": 1036.0}}, "position": {"x": 1823.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7731, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119636, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1032.0}, "se": {"x": 1828.0, "y": 1032.0}, "sw": {"x": 1818.0, "y": 1022.0}, "nw": {"x": 1828.0, "y": 1022.0}}, "position": {"x": 1823.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156926, "gate": "", "blockId": null, "orderNum": 7732, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119652, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1088.0}, "se": {"x": 1842.0, "y": 1088.0}, "sw": {"x": 1832.0, "y": 1078.0}, "nw": {"x": 1842.0, "y": 1078.0}}, "position": {"x": 1837.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7815, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119653, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1074.0}, "se": {"x": 1842.0, "y": 1074.0}, "sw": {"x": 1832.0, "y": 1064.0}, "nw": {"x": 1842.0, "y": 1064.0}}, "position": {"x": 1837.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7816, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119654, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1060.0}, "se": {"x": 1842.0, "y": 1060.0}, "sw": {"x": 1832.0, "y": 1050.0}, "nw": {"x": 1842.0, "y": 1050.0}}, "position": {"x": 1837.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7817, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119655, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1046.0}, "se": {"x": 1842.0, "y": 1046.0}, "sw": {"x": 1832.0, "y": 1036.0}, "nw": {"x": 1842.0, "y": 1036.0}}, "position": {"x": 1837.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7818, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119656, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1032.0}, "se": {"x": 1842.0, "y": 1032.0}, "sw": {"x": 1832.0, "y": 1022.0}, "nw": {"x": 1842.0, "y": 1022.0}}, "position": {"x": 1837.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156946, "gate": "", "blockId": null, "orderNum": 7819, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119672, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1088.0}, "se": {"x": 1856.0, "y": 1088.0}, "sw": {"x": 1846.0, "y": 1078.0}, "nw": {"x": 1856.0, "y": 1078.0}}, "position": {"x": 1851.0, "y": 1083.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7902, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119673, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1074.0}, "se": {"x": 1856.0, "y": 1074.0}, "sw": {"x": 1846.0, "y": 1064.0}, "nw": {"x": 1856.0, "y": 1064.0}}, "position": {"x": 1851.0, "y": 1069.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7903, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119674, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1060.0}, "se": {"x": 1856.0, "y": 1060.0}, "sw": {"x": 1846.0, "y": 1050.0}, "nw": {"x": 1856.0, "y": 1050.0}}, "position": {"x": 1851.0, "y": 1055.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7904, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119675, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1046.0}, "se": {"x": 1856.0, "y": 1046.0}, "sw": {"x": 1846.0, "y": 1036.0}, "nw": {"x": 1856.0, "y": 1036.0}}, "position": {"x": 1851.0, "y": 1041.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7905, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537119676, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1032.0}, "se": {"x": 1856.0, "y": 1032.0}, "sw": {"x": 1846.0, "y": 1022.0}, "nw": {"x": 1856.0, "y": 1022.0}}, "position": {"x": 1851.0, "y": 1027.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 E\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49156966, "gate": "", "blockId": null, "orderNum": 7906, "attributes": ["", "", "2\uce35", "E\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35E\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 4}, "waitingLinkedId": null, "sectionId": 59711}], "4:7": [{"logicalSeatId": 1537121028, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1803.0}, "se": {"x": 1024.0, "y": 1813.0}, "sw": {"x": 1034.0, "y": 1803.0}, "nw": {"x": 1034.0, "y": 1813.0}}, "position": {"x": 1029.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2986, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121029, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1803.0}, "se": {"x": 1038.0, "y": 1813.0}, "sw": {"x": 1048.0, "y": 1803.0}, "nw": {"x": 1048.0, "y": 1813.0}}, "position": {"x": 1043.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3066, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121030, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1803.0}, "se": {"x": 1052.0, "y": 1813.0}, "sw": {"x": 1062.0, "y": 1803.0}, "nw": {"x": 1062.0, "y": 1813.0}}, "position": {"x": 1057.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3146, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121031, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1803.0}, "se": {"x": 1066.0, "y": 1813.0}, "sw": {"x": 1076.0, "y": 1803.0}, "nw": {"x": 1076.0, "y": 1813.0}}, "position": {"x": 1071.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3201, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121052, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1817.0}, "se": {"x": 1024.0, "y": 1827.0}, "sw": {"x": 1034.0, "y": 1817.0}, "nw": {"x": 1034.0, "y": 1827.0}}, "position": {"x": 1029.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2985, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121053, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1817.0}, "se": {"x": 1038.0, "y": 1827.0}, "sw": {"x": 1048.0, "y": 1817.0}, "nw": {"x": 1048.0, "y": 1827.0}}, "position": {"x": 1043.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3065, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121054, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1817.0}, "se": {"x": 1052.0, "y": 1827.0}, "sw": {"x": 1062.0, "y": 1817.0}, "nw": {"x": 1062.0, "y": 1827.0}}, "position": {"x": 1057.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3145, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121055, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1817.0}, "se": {"x": 1066.0, "y": 1827.0}, "sw": {"x": 1076.0, "y": 1817.0}, "nw": {"x": 1076.0, "y": 1827.0}}, "position": {"x": 1071.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3200, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121076, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1831.0}, "se": {"x": 1024.0, "y": 1841.0}, "sw": {"x": 1034.0, "y": 1831.0}, "nw": {"x": 1034.0, "y": 1841.0}}, "position": {"x": 1029.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2984, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121077, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1831.0}, "se": {"x": 1038.0, "y": 1841.0}, "sw": {"x": 1048.0, "y": 1831.0}, "nw": {"x": 1048.0, "y": 1841.0}}, "position": {"x": 1043.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3064, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121078, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1831.0}, "se": {"x": 1052.0, "y": 1841.0}, "sw": {"x": 1062.0, "y": 1831.0}, "nw": {"x": 1062.0, "y": 1841.0}}, "position": {"x": 1057.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3144, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121079, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1831.0}, "se": {"x": 1066.0, "y": 1841.0}, "sw": {"x": 1076.0, "y": 1831.0}, "nw": {"x": 1076.0, "y": 1841.0}}, "position": {"x": 1071.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3199, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121100, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1845.0}, "se": {"x": 1024.0, "y": 1855.0}, "sw": {"x": 1034.0, "y": 1845.0}, "nw": {"x": 1034.0, "y": 1855.0}}, "position": {"x": 1029.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2983, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121101, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1845.0}, "se": {"x": 1038.0, "y": 1855.0}, "sw": {"x": 1048.0, "y": 1845.0}, "nw": {"x": 1048.0, "y": 1855.0}}, "position": {"x": 1043.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3063, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121102, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1845.0}, "se": {"x": 1052.0, "y": 1855.0}, "sw": {"x": 1062.0, "y": 1845.0}, "nw": {"x": 1062.0, "y": 1855.0}}, "position": {"x": 1057.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3143, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121103, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1845.0}, "se": {"x": 1066.0, "y": 1855.0}, "sw": {"x": 1076.0, "y": 1845.0}, "nw": {"x": 1076.0, "y": 1855.0}}, "position": {"x": 1071.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3198, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121124, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1859.0}, "se": {"x": 1024.0, "y": 1869.0}, "sw": {"x": 1034.0, "y": 1859.0}, "nw": {"x": 1034.0, "y": 1869.0}}, "position": {"x": 1029.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2982, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121125, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1859.0}, "se": {"x": 1038.0, "y": 1869.0}, "sw": {"x": 1048.0, "y": 1859.0}, "nw": {"x": 1048.0, "y": 1869.0}}, "position": {"x": 1043.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3062, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121126, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1859.0}, "se": {"x": 1052.0, "y": 1869.0}, "sw": {"x": 1062.0, "y": 1859.0}, "nw": {"x": 1062.0, "y": 1869.0}}, "position": {"x": 1057.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3142, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121127, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1859.0}, "se": {"x": 1066.0, "y": 1869.0}, "sw": {"x": 1076.0, "y": 1859.0}, "nw": {"x": 1076.0, "y": 1869.0}}, "position": {"x": 1071.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3197, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121148, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1873.0}, "se": {"x": 1024.0, "y": 1883.0}, "sw": {"x": 1034.0, "y": 1873.0}, "nw": {"x": 1034.0, "y": 1883.0}}, "position": {"x": 1029.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2981, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121149, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1873.0}, "se": {"x": 1038.0, "y": 1883.0}, "sw": {"x": 1048.0, "y": 1873.0}, "nw": {"x": 1048.0, "y": 1883.0}}, "position": {"x": 1043.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3061, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121150, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1873.0}, "se": {"x": 1052.0, "y": 1883.0}, "sw": {"x": 1062.0, "y": 1873.0}, "nw": {"x": 1062.0, "y": 1883.0}}, "position": {"x": 1057.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3141, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121151, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1873.0}, "se": {"x": 1066.0, "y": 1883.0}, "sw": {"x": 1076.0, "y": 1873.0}, "nw": {"x": 1076.0, "y": 1883.0}}, "position": {"x": 1071.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3196, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121152, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1873.0}, "se": {"x": 1080.0, "y": 1883.0}, "sw": {"x": 1090.0, "y": 1873.0}, "nw": {"x": 1090.0, "y": 1883.0}}, "position": {"x": 1085.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3251, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121153, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1873.0}, "se": {"x": 1094.0, "y": 1883.0}, "sw": {"x": 1104.0, "y": 1873.0}, "nw": {"x": 1104.0, "y": 1883.0}}, "position": {"x": 1099.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3300, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121154, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1873.0}, "se": {"x": 1108.0, "y": 1883.0}, "sw": {"x": 1118.0, "y": 1873.0}, "nw": {"x": 1118.0, "y": 1883.0}}, "position": {"x": 1113.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3349, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121155, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1873.0}, "se": {"x": 1122.0, "y": 1883.0}, "sw": {"x": 1132.0, "y": 1873.0}, "nw": {"x": 1132.0, "y": 1883.0}}, "position": {"x": 1127.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3398, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121156, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1873.0}, "se": {"x": 1136.0, "y": 1883.0}, "sw": {"x": 1146.0, "y": 1873.0}, "nw": {"x": 1146.0, "y": 1883.0}}, "position": {"x": 1141.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3447, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121157, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1873.0}, "se": {"x": 1150.0, "y": 1883.0}, "sw": {"x": 1160.0, "y": 1873.0}, "nw": {"x": 1160.0, "y": 1883.0}}, "position": {"x": 1155.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3496, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121158, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1873.0}, "se": {"x": 1164.0, "y": 1883.0}, "sw": {"x": 1174.0, "y": 1873.0}, "nw": {"x": 1174.0, "y": 1883.0}}, "position": {"x": 1169.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3545, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121159, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1873.0}, "se": {"x": 1227.0, "y": 1883.0}, "sw": {"x": 1237.0, "y": 1873.0}, "nw": {"x": 1237.0, "y": 1883.0}}, "position": {"x": 1232.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3945, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121160, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1873.0}, "se": {"x": 1241.0, "y": 1883.0}, "sw": {"x": 1251.0, "y": 1873.0}, "nw": {"x": 1251.0, "y": 1883.0}}, "position": {"x": 1246.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4033, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121161, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1873.0}, "se": {"x": 1255.0, "y": 1883.0}, "sw": {"x": 1265.0, "y": 1873.0}, "nw": {"x": 1265.0, "y": 1883.0}}, "position": {"x": 1260.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4121, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121162, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1873.0}, "se": {"x": 1269.0, "y": 1883.0}, "sw": {"x": 1279.0, "y": 1873.0}, "nw": {"x": 1279.0, "y": 1883.0}}, "position": {"x": 1274.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4209, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121186, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1887.0}, "se": {"x": 1024.0, "y": 1897.0}, "sw": {"x": 1034.0, "y": 1887.0}, "nw": {"x": 1034.0, "y": 1897.0}}, "position": {"x": 1029.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2980, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121187, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1887.0}, "se": {"x": 1038.0, "y": 1897.0}, "sw": {"x": 1048.0, "y": 1887.0}, "nw": {"x": 1048.0, "y": 1897.0}}, "position": {"x": 1043.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3060, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121188, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1887.0}, "se": {"x": 1052.0, "y": 1897.0}, "sw": {"x": 1062.0, "y": 1887.0}, "nw": {"x": 1062.0, "y": 1897.0}}, "position": {"x": 1057.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3140, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121189, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1887.0}, "se": {"x": 1066.0, "y": 1897.0}, "sw": {"x": 1076.0, "y": 1887.0}, "nw": {"x": 1076.0, "y": 1897.0}}, "position": {"x": 1071.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3195, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121190, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1887.0}, "se": {"x": 1080.0, "y": 1897.0}, "sw": {"x": 1090.0, "y": 1887.0}, "nw": {"x": 1090.0, "y": 1897.0}}, "position": {"x": 1085.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3250, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121191, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1887.0}, "se": {"x": 1094.0, "y": 1897.0}, "sw": {"x": 1104.0, "y": 1887.0}, "nw": {"x": 1104.0, "y": 1897.0}}, "position": {"x": 1099.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3299, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121192, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1887.0}, "se": {"x": 1108.0, "y": 1897.0}, "sw": {"x": 1118.0, "y": 1887.0}, "nw": {"x": 1118.0, "y": 1897.0}}, "position": {"x": 1113.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3348, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121193, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1887.0}, "se": {"x": 1122.0, "y": 1897.0}, "sw": {"x": 1132.0, "y": 1887.0}, "nw": {"x": 1132.0, "y": 1897.0}}, "position": {"x": 1127.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3397, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121194, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1887.0}, "se": {"x": 1136.0, "y": 1897.0}, "sw": {"x": 1146.0, "y": 1887.0}, "nw": {"x": 1146.0, "y": 1897.0}}, "position": {"x": 1141.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3446, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121195, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1887.0}, "se": {"x": 1150.0, "y": 1897.0}, "sw": {"x": 1160.0, "y": 1887.0}, "nw": {"x": 1160.0, "y": 1897.0}}, "position": {"x": 1155.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3495, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121196, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1887.0}, "se": {"x": 1164.0, "y": 1897.0}, "sw": {"x": 1174.0, "y": 1887.0}, "nw": {"x": 1174.0, "y": 1897.0}}, "position": {"x": 1169.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3544, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121197, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1887.0}, "se": {"x": 1227.0, "y": 1897.0}, "sw": {"x": 1237.0, "y": 1887.0}, "nw": {"x": 1237.0, "y": 1897.0}}, "position": {"x": 1232.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3944, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121198, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1887.0}, "se": {"x": 1241.0, "y": 1897.0}, "sw": {"x": 1251.0, "y": 1887.0}, "nw": {"x": 1251.0, "y": 1897.0}}, "position": {"x": 1246.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4032, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121199, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1887.0}, "se": {"x": 1255.0, "y": 1897.0}, "sw": {"x": 1265.0, "y": 1887.0}, "nw": {"x": 1265.0, "y": 1897.0}}, "position": {"x": 1260.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4120, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121200, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1887.0}, "se": {"x": 1269.0, "y": 1897.0}, "sw": {"x": 1279.0, "y": 1887.0}, "nw": {"x": 1279.0, "y": 1897.0}}, "position": {"x": 1274.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4208, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121224, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1901.0}, "se": {"x": 1024.0, "y": 1911.0}, "sw": {"x": 1034.0, "y": 1901.0}, "nw": {"x": 1034.0, "y": 1911.0}}, "position": {"x": 1029.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2979, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121225, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1901.0}, "se": {"x": 1038.0, "y": 1911.0}, "sw": {"x": 1048.0, "y": 1901.0}, "nw": {"x": 1048.0, "y": 1911.0}}, "position": {"x": 1043.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3059, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121226, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1901.0}, "se": {"x": 1052.0, "y": 1911.0}, "sw": {"x": 1062.0, "y": 1901.0}, "nw": {"x": 1062.0, "y": 1911.0}}, "position": {"x": 1057.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3139, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121227, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1901.0}, "se": {"x": 1066.0, "y": 1911.0}, "sw": {"x": 1076.0, "y": 1901.0}, "nw": {"x": 1076.0, "y": 1911.0}}, "position": {"x": 1071.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3194, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121228, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1901.0}, "se": {"x": 1080.0, "y": 1911.0}, "sw": {"x": 1090.0, "y": 1901.0}, "nw": {"x": 1090.0, "y": 1911.0}}, "position": {"x": 1085.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3249, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121229, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1901.0}, "se": {"x": 1094.0, "y": 1911.0}, "sw": {"x": 1104.0, "y": 1901.0}, "nw": {"x": 1104.0, "y": 1911.0}}, "position": {"x": 1099.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3298, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121230, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1901.0}, "se": {"x": 1108.0, "y": 1911.0}, "sw": {"x": 1118.0, "y": 1901.0}, "nw": {"x": 1118.0, "y": 1911.0}}, "position": {"x": 1113.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3347, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121231, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1901.0}, "se": {"x": 1122.0, "y": 1911.0}, "sw": {"x": 1132.0, "y": 1901.0}, "nw": {"x": 1132.0, "y": 1911.0}}, "position": {"x": 1127.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3396, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121232, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1901.0}, "se": {"x": 1136.0, "y": 1911.0}, "sw": {"x": 1146.0, "y": 1901.0}, "nw": {"x": 1146.0, "y": 1911.0}}, "position": {"x": 1141.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3445, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121233, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1901.0}, "se": {"x": 1150.0, "y": 1911.0}, "sw": {"x": 1160.0, "y": 1901.0}, "nw": {"x": 1160.0, "y": 1911.0}}, "position": {"x": 1155.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3494, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121234, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1901.0}, "se": {"x": 1164.0, "y": 1911.0}, "sw": {"x": 1174.0, "y": 1901.0}, "nw": {"x": 1174.0, "y": 1911.0}}, "position": {"x": 1169.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3543, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121235, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1901.0}, "se": {"x": 1227.0, "y": 1911.0}, "sw": {"x": 1237.0, "y": 1901.0}, "nw": {"x": 1237.0, "y": 1911.0}}, "position": {"x": 1232.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3943, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121236, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1901.0}, "se": {"x": 1241.0, "y": 1911.0}, "sw": {"x": 1251.0, "y": 1901.0}, "nw": {"x": 1251.0, "y": 1911.0}}, "position": {"x": 1246.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4031, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121237, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1901.0}, "se": {"x": 1255.0, "y": 1911.0}, "sw": {"x": 1265.0, "y": 1901.0}, "nw": {"x": 1265.0, "y": 1911.0}}, "position": {"x": 1260.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4119, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121238, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1901.0}, "se": {"x": 1269.0, "y": 1911.0}, "sw": {"x": 1279.0, "y": 1901.0}, "nw": {"x": 1279.0, "y": 1911.0}}, "position": {"x": 1274.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4207, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121262, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1915.0}, "se": {"x": 1024.0, "y": 1925.0}, "sw": {"x": 1034.0, "y": 1915.0}, "nw": {"x": 1034.0, "y": 1925.0}}, "position": {"x": 1029.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2978, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121263, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1915.0}, "se": {"x": 1038.0, "y": 1925.0}, "sw": {"x": 1048.0, "y": 1915.0}, "nw": {"x": 1048.0, "y": 1925.0}}, "position": {"x": 1043.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3058, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121264, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1915.0}, "se": {"x": 1052.0, "y": 1925.0}, "sw": {"x": 1062.0, "y": 1915.0}, "nw": {"x": 1062.0, "y": 1925.0}}, "position": {"x": 1057.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3138, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121265, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1915.0}, "se": {"x": 1066.0, "y": 1925.0}, "sw": {"x": 1076.0, "y": 1915.0}, "nw": {"x": 1076.0, "y": 1925.0}}, "position": {"x": 1071.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3193, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121266, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1915.0}, "se": {"x": 1080.0, "y": 1925.0}, "sw": {"x": 1090.0, "y": 1915.0}, "nw": {"x": 1090.0, "y": 1925.0}}, "position": {"x": 1085.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3248, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121267, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1915.0}, "se": {"x": 1094.0, "y": 1925.0}, "sw": {"x": 1104.0, "y": 1915.0}, "nw": {"x": 1104.0, "y": 1925.0}}, "position": {"x": 1099.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3297, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121268, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1915.0}, "se": {"x": 1108.0, "y": 1925.0}, "sw": {"x": 1118.0, "y": 1915.0}, "nw": {"x": 1118.0, "y": 1925.0}}, "position": {"x": 1113.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3346, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121269, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1915.0}, "se": {"x": 1122.0, "y": 1925.0}, "sw": {"x": 1132.0, "y": 1915.0}, "nw": {"x": 1132.0, "y": 1925.0}}, "position": {"x": 1127.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3395, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121270, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1915.0}, "se": {"x": 1136.0, "y": 1925.0}, "sw": {"x": 1146.0, "y": 1915.0}, "nw": {"x": 1146.0, "y": 1925.0}}, "position": {"x": 1141.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3444, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121271, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1915.0}, "se": {"x": 1150.0, "y": 1925.0}, "sw": {"x": 1160.0, "y": 1915.0}, "nw": {"x": 1160.0, "y": 1925.0}}, "position": {"x": 1155.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3493, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121272, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1915.0}, "se": {"x": 1164.0, "y": 1925.0}, "sw": {"x": 1174.0, "y": 1915.0}, "nw": {"x": 1174.0, "y": 1925.0}}, "position": {"x": 1169.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3542, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121273, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1915.0}, "se": {"x": 1227.0, "y": 1925.0}, "sw": {"x": 1237.0, "y": 1915.0}, "nw": {"x": 1237.0, "y": 1925.0}}, "position": {"x": 1232.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3942, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121274, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1915.0}, "se": {"x": 1241.0, "y": 1925.0}, "sw": {"x": 1251.0, "y": 1915.0}, "nw": {"x": 1251.0, "y": 1925.0}}, "position": {"x": 1246.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4030, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121275, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1915.0}, "se": {"x": 1255.0, "y": 1925.0}, "sw": {"x": 1265.0, "y": 1915.0}, "nw": {"x": 1265.0, "y": 1925.0}}, "position": {"x": 1260.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4118, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121276, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1915.0}, "se": {"x": 1269.0, "y": 1925.0}, "sw": {"x": 1279.0, "y": 1915.0}, "nw": {"x": 1279.0, "y": 1925.0}}, "position": {"x": 1274.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4206, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121300, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1024.0, "y": 1929.0}, "se": {"x": 1024.0, "y": 1939.0}, "sw": {"x": 1034.0, "y": 1929.0}, "nw": {"x": 1034.0, "y": 1939.0}}, "position": {"x": 1029.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158612, "gate": "", "blockId": null, "orderNum": 2977, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121301, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1038.0, "y": 1929.0}, "se": {"x": 1038.0, "y": 1939.0}, "sw": {"x": 1048.0, "y": 1929.0}, "nw": {"x": 1048.0, "y": 1939.0}}, "position": {"x": 1043.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158613, "gate": "", "blockId": null, "orderNum": 3057, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121302, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1052.0, "y": 1929.0}, "se": {"x": 1052.0, "y": 1939.0}, "sw": {"x": 1062.0, "y": 1929.0}, "nw": {"x": 1062.0, "y": 1939.0}}, "position": {"x": 1057.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158614, "gate": "", "blockId": null, "orderNum": 3137, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121303, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1066.0, "y": 1929.0}, "se": {"x": 1066.0, "y": 1939.0}, "sw": {"x": 1076.0, "y": 1929.0}, "nw": {"x": 1076.0, "y": 1939.0}}, "position": {"x": 1071.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158615, "gate": "", "blockId": null, "orderNum": 3192, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121304, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1080.0, "y": 1929.0}, "se": {"x": 1080.0, "y": 1939.0}, "sw": {"x": 1090.0, "y": 1929.0}, "nw": {"x": 1090.0, "y": 1939.0}}, "position": {"x": 1085.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158616, "gate": "", "blockId": null, "orderNum": 3247, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121305, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1094.0, "y": 1929.0}, "se": {"x": 1094.0, "y": 1939.0}, "sw": {"x": 1104.0, "y": 1929.0}, "nw": {"x": 1104.0, "y": 1939.0}}, "position": {"x": 1099.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158617, "gate": "", "blockId": null, "orderNum": 3296, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121306, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1108.0, "y": 1929.0}, "se": {"x": 1108.0, "y": 1939.0}, "sw": {"x": 1118.0, "y": 1929.0}, "nw": {"x": 1118.0, "y": 1939.0}}, "position": {"x": 1113.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158618, "gate": "", "blockId": null, "orderNum": 3345, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121307, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1122.0, "y": 1929.0}, "se": {"x": 1122.0, "y": 1939.0}, "sw": {"x": 1132.0, "y": 1929.0}, "nw": {"x": 1132.0, "y": 1939.0}}, "position": {"x": 1127.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158619, "gate": "", "blockId": null, "orderNum": 3394, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121308, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1136.0, "y": 1929.0}, "se": {"x": 1136.0, "y": 1939.0}, "sw": {"x": 1146.0, "y": 1929.0}, "nw": {"x": 1146.0, "y": 1939.0}}, "position": {"x": 1141.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158620, "gate": "", "blockId": null, "orderNum": 3443, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121309, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1150.0, "y": 1929.0}, "se": {"x": 1150.0, "y": 1939.0}, "sw": {"x": 1160.0, "y": 1929.0}, "nw": {"x": 1160.0, "y": 1939.0}}, "position": {"x": 1155.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158621, "gate": "", "blockId": null, "orderNum": 3492, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121310, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1164.0, "y": 1929.0}, "se": {"x": 1164.0, "y": 1939.0}, "sw": {"x": 1174.0, "y": 1929.0}, "nw": {"x": 1174.0, "y": 1939.0}}, "position": {"x": 1169.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 N\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158622, "gate": "", "blockId": null, "orderNum": 3541, "attributes": ["", "", "2\uce35", "N\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35N\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121311, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1227.0, "y": 1929.0}, "se": {"x": 1227.0, "y": 1939.0}, "sw": {"x": 1237.0, "y": 1929.0}, "nw": {"x": 1237.0, "y": 1939.0}}, "position": {"x": 1232.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158623, "gate": "", "blockId": null, "orderNum": 3941, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121312, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1241.0, "y": 1929.0}, "se": {"x": 1241.0, "y": 1939.0}, "sw": {"x": 1251.0, "y": 1929.0}, "nw": {"x": 1251.0, "y": 1939.0}}, "position": {"x": 1246.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158624, "gate": "", "blockId": null, "orderNum": 4029, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121313, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1255.0, "y": 1929.0}, "se": {"x": 1255.0, "y": 1939.0}, "sw": {"x": 1265.0, "y": 1929.0}, "nw": {"x": 1265.0, "y": 1939.0}}, "position": {"x": 1260.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158625, "gate": "", "blockId": null, "orderNum": 4117, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121314, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1269.0, "y": 1929.0}, "se": {"x": 1269.0, "y": 1939.0}, "sw": {"x": 1279.0, "y": 1929.0}, "nw": {"x": 1279.0, "y": 1939.0}}, "position": {"x": 1274.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158626, "gate": "", "blockId": null, "orderNum": 4205, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 4, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "6:5": [{"logicalSeatId": 1537124024, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1535.0, "y": 1287.0}, "se": {"x": 1535.0, "y": 1297.0}, "sw": {"x": 1545.0, "y": 1287.0}, "nw": {"x": 1545.0, "y": 1297.0}}, "position": {"x": 1540.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124025, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1549.0, "y": 1287.0}, "se": {"x": 1549.0, "y": 1297.0}, "sw": {"x": 1559.0, "y": 1287.0}, "nw": {"x": 1559.0, "y": 1297.0}}, "position": {"x": 1554.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124026, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1563.0, "y": 1287.0}, "se": {"x": 1563.0, "y": 1297.0}, "sw": {"x": 1573.0, "y": 1287.0}, "nw": {"x": 1573.0, "y": 1297.0}}, "position": {"x": 1568.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124027, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1577.0, "y": 1287.0}, "se": {"x": 1577.0, "y": 1297.0}, "sw": {"x": 1587.0, "y": 1287.0}, "nw": {"x": 1587.0, "y": 1297.0}}, "position": {"x": 1582.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}, {"logicalSeatId": 1537124028, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1591.0, "y": 1287.0}, "se": {"x": 1591.0, "y": 1297.0}, "sw": {"x": 1601.0, "y": 1287.0}, "nw": {"x": 1601.0, "y": 1297.0}}, "position": {"x": 1596.0, "y": 1292.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "1\uce35 4\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": -1, "gate": "", "blockId": null, "orderNum": 0, "attributes": ["", "", "1\uce35", "4\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00001\uce3500004\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59712}], "5:7": [{"logicalSeatId": 1537121032, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1803.0}, "se": {"x": 1325.0, "y": 1813.0}, "sw": {"x": 1335.0, "y": 1803.0}, "nw": {"x": 1335.0, "y": 1813.0}}, "position": {"x": 1330.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4638, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121033, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1803.0}, "se": {"x": 1339.0, "y": 1813.0}, "sw": {"x": 1349.0, "y": 1803.0}, "nw": {"x": 1349.0, "y": 1813.0}}, "position": {"x": 1344.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4756, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121034, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1803.0}, "se": {"x": 1353.0, "y": 1813.0}, "sw": {"x": 1363.0, "y": 1803.0}, "nw": {"x": 1363.0, "y": 1813.0}}, "position": {"x": 1358.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4924, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121035, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1803.0}, "se": {"x": 1367.0, "y": 1813.0}, "sw": {"x": 1377.0, "y": 1803.0}, "nw": {"x": 1377.0, "y": 1813.0}}, "position": {"x": 1372.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5092, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121036, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1803.0}, "se": {"x": 1381.0, "y": 1813.0}, "sw": {"x": 1391.0, "y": 1803.0}, "nw": {"x": 1391.0, "y": 1813.0}}, "position": {"x": 1386.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5260, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121037, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1803.0}, "se": {"x": 1395.0, "y": 1813.0}, "sw": {"x": 1405.0, "y": 1803.0}, "nw": {"x": 1405.0, "y": 1813.0}}, "position": {"x": 1400.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5428, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121038, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1803.0}, "se": {"x": 1409.0, "y": 1813.0}, "sw": {"x": 1419.0, "y": 1803.0}, "nw": {"x": 1419.0, "y": 1813.0}}, "position": {"x": 1414.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5596, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121039, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1803.0}, "se": {"x": 1423.0, "y": 1813.0}, "sw": {"x": 1433.0, "y": 1803.0}, "nw": {"x": 1433.0, "y": 1813.0}}, "position": {"x": 1428.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5786, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121040, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1803.0}, "se": {"x": 1437.0, "y": 1813.0}, "sw": {"x": 1447.0, "y": 1803.0}, "nw": {"x": 1447.0, "y": 1813.0}}, "position": {"x": 1442.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5976, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121041, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1803.0}, "se": {"x": 1451.0, "y": 1813.0}, "sw": {"x": 1461.0, "y": 1803.0}, "nw": {"x": 1461.0, "y": 1813.0}}, "position": {"x": 1456.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6166, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121042, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1803.0}, "se": {"x": 1465.0, "y": 1813.0}, "sw": {"x": 1475.0, "y": 1803.0}, "nw": {"x": 1475.0, "y": 1813.0}}, "position": {"x": 1470.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6356, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121043, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1803.0}, "se": {"x": 1479.0, "y": 1813.0}, "sw": {"x": 1489.0, "y": 1803.0}, "nw": {"x": 1489.0, "y": 1813.0}}, "position": {"x": 1484.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6546, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121056, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1817.0}, "se": {"x": 1325.0, "y": 1827.0}, "sw": {"x": 1335.0, "y": 1817.0}, "nw": {"x": 1335.0, "y": 1827.0}}, "position": {"x": 1330.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4637, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121057, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1817.0}, "se": {"x": 1339.0, "y": 1827.0}, "sw": {"x": 1349.0, "y": 1817.0}, "nw": {"x": 1349.0, "y": 1827.0}}, "position": {"x": 1344.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4755, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121058, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1817.0}, "se": {"x": 1353.0, "y": 1827.0}, "sw": {"x": 1363.0, "y": 1817.0}, "nw": {"x": 1363.0, "y": 1827.0}}, "position": {"x": 1358.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4923, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121059, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1817.0}, "se": {"x": 1367.0, "y": 1827.0}, "sw": {"x": 1377.0, "y": 1817.0}, "nw": {"x": 1377.0, "y": 1827.0}}, "position": {"x": 1372.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5091, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121060, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1817.0}, "se": {"x": 1381.0, "y": 1827.0}, "sw": {"x": 1391.0, "y": 1817.0}, "nw": {"x": 1391.0, "y": 1827.0}}, "position": {"x": 1386.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5259, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121061, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1817.0}, "se": {"x": 1395.0, "y": 1827.0}, "sw": {"x": 1405.0, "y": 1817.0}, "nw": {"x": 1405.0, "y": 1827.0}}, "position": {"x": 1400.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5427, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121062, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1817.0}, "se": {"x": 1409.0, "y": 1827.0}, "sw": {"x": 1419.0, "y": 1817.0}, "nw": {"x": 1419.0, "y": 1827.0}}, "position": {"x": 1414.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5595, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121063, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1817.0}, "se": {"x": 1423.0, "y": 1827.0}, "sw": {"x": 1433.0, "y": 1817.0}, "nw": {"x": 1433.0, "y": 1827.0}}, "position": {"x": 1428.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5785, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121064, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1817.0}, "se": {"x": 1437.0, "y": 1827.0}, "sw": {"x": 1447.0, "y": 1817.0}, "nw": {"x": 1447.0, "y": 1827.0}}, "position": {"x": 1442.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5975, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121065, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1817.0}, "se": {"x": 1451.0, "y": 1827.0}, "sw": {"x": 1461.0, "y": 1817.0}, "nw": {"x": 1461.0, "y": 1827.0}}, "position": {"x": 1456.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6165, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121066, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1817.0}, "se": {"x": 1465.0, "y": 1827.0}, "sw": {"x": 1475.0, "y": 1817.0}, "nw": {"x": 1475.0, "y": 1827.0}}, "position": {"x": 1470.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6355, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121067, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1817.0}, "se": {"x": 1479.0, "y": 1827.0}, "sw": {"x": 1489.0, "y": 1817.0}, "nw": {"x": 1489.0, "y": 1827.0}}, "position": {"x": 1484.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6545, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121080, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1831.0}, "se": {"x": 1325.0, "y": 1841.0}, "sw": {"x": 1335.0, "y": 1831.0}, "nw": {"x": 1335.0, "y": 1841.0}}, "position": {"x": 1330.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4636, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121081, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1831.0}, "se": {"x": 1339.0, "y": 1841.0}, "sw": {"x": 1349.0, "y": 1831.0}, "nw": {"x": 1349.0, "y": 1841.0}}, "position": {"x": 1344.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4754, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121082, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1831.0}, "se": {"x": 1353.0, "y": 1841.0}, "sw": {"x": 1363.0, "y": 1831.0}, "nw": {"x": 1363.0, "y": 1841.0}}, "position": {"x": 1358.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4922, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121083, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1831.0}, "se": {"x": 1367.0, "y": 1841.0}, "sw": {"x": 1377.0, "y": 1831.0}, "nw": {"x": 1377.0, "y": 1841.0}}, "position": {"x": 1372.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5090, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121084, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1831.0}, "se": {"x": 1381.0, "y": 1841.0}, "sw": {"x": 1391.0, "y": 1831.0}, "nw": {"x": 1391.0, "y": 1841.0}}, "position": {"x": 1386.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5258, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121085, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1831.0}, "se": {"x": 1395.0, "y": 1841.0}, "sw": {"x": 1405.0, "y": 1831.0}, "nw": {"x": 1405.0, "y": 1841.0}}, "position": {"x": 1400.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5426, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121086, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1831.0}, "se": {"x": 1409.0, "y": 1841.0}, "sw": {"x": 1419.0, "y": 1831.0}, "nw": {"x": 1419.0, "y": 1841.0}}, "position": {"x": 1414.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5594, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121087, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1831.0}, "se": {"x": 1423.0, "y": 1841.0}, "sw": {"x": 1433.0, "y": 1831.0}, "nw": {"x": 1433.0, "y": 1841.0}}, "position": {"x": 1428.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5784, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121088, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1831.0}, "se": {"x": 1437.0, "y": 1841.0}, "sw": {"x": 1447.0, "y": 1831.0}, "nw": {"x": 1447.0, "y": 1841.0}}, "position": {"x": 1442.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5974, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121089, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1831.0}, "se": {"x": 1451.0, "y": 1841.0}, "sw": {"x": 1461.0, "y": 1831.0}, "nw": {"x": 1461.0, "y": 1841.0}}, "position": {"x": 1456.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6164, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121090, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1831.0}, "se": {"x": 1465.0, "y": 1841.0}, "sw": {"x": 1475.0, "y": 1831.0}, "nw": {"x": 1475.0, "y": 1841.0}}, "position": {"x": 1470.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6354, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121091, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1831.0}, "se": {"x": 1479.0, "y": 1841.0}, "sw": {"x": 1489.0, "y": 1831.0}, "nw": {"x": 1489.0, "y": 1841.0}}, "position": {"x": 1484.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6544, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121104, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1845.0}, "se": {"x": 1325.0, "y": 1855.0}, "sw": {"x": 1335.0, "y": 1845.0}, "nw": {"x": 1335.0, "y": 1855.0}}, "position": {"x": 1330.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4635, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121105, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1845.0}, "se": {"x": 1339.0, "y": 1855.0}, "sw": {"x": 1349.0, "y": 1845.0}, "nw": {"x": 1349.0, "y": 1855.0}}, "position": {"x": 1344.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4753, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121106, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1845.0}, "se": {"x": 1353.0, "y": 1855.0}, "sw": {"x": 1363.0, "y": 1845.0}, "nw": {"x": 1363.0, "y": 1855.0}}, "position": {"x": 1358.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4921, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121107, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1845.0}, "se": {"x": 1367.0, "y": 1855.0}, "sw": {"x": 1377.0, "y": 1845.0}, "nw": {"x": 1377.0, "y": 1855.0}}, "position": {"x": 1372.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5089, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121108, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1845.0}, "se": {"x": 1381.0, "y": 1855.0}, "sw": {"x": 1391.0, "y": 1845.0}, "nw": {"x": 1391.0, "y": 1855.0}}, "position": {"x": 1386.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5257, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121109, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1845.0}, "se": {"x": 1395.0, "y": 1855.0}, "sw": {"x": 1405.0, "y": 1845.0}, "nw": {"x": 1405.0, "y": 1855.0}}, "position": {"x": 1400.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5425, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121110, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1845.0}, "se": {"x": 1409.0, "y": 1855.0}, "sw": {"x": 1419.0, "y": 1845.0}, "nw": {"x": 1419.0, "y": 1855.0}}, "position": {"x": 1414.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5593, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121111, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1845.0}, "se": {"x": 1423.0, "y": 1855.0}, "sw": {"x": 1433.0, "y": 1845.0}, "nw": {"x": 1433.0, "y": 1855.0}}, "position": {"x": 1428.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5783, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121112, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1845.0}, "se": {"x": 1437.0, "y": 1855.0}, "sw": {"x": 1447.0, "y": 1845.0}, "nw": {"x": 1447.0, "y": 1855.0}}, "position": {"x": 1442.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5973, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121113, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1845.0}, "se": {"x": 1451.0, "y": 1855.0}, "sw": {"x": 1461.0, "y": 1845.0}, "nw": {"x": 1461.0, "y": 1855.0}}, "position": {"x": 1456.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6163, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121114, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1845.0}, "se": {"x": 1465.0, "y": 1855.0}, "sw": {"x": 1475.0, "y": 1845.0}, "nw": {"x": 1475.0, "y": 1855.0}}, "position": {"x": 1470.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6353, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121115, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1845.0}, "se": {"x": 1479.0, "y": 1855.0}, "sw": {"x": 1489.0, "y": 1845.0}, "nw": {"x": 1489.0, "y": 1855.0}}, "position": {"x": 1484.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6543, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121128, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1859.0}, "se": {"x": 1325.0, "y": 1869.0}, "sw": {"x": 1335.0, "y": 1859.0}, "nw": {"x": 1335.0, "y": 1869.0}}, "position": {"x": 1330.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4634, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121129, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1859.0}, "se": {"x": 1339.0, "y": 1869.0}, "sw": {"x": 1349.0, "y": 1859.0}, "nw": {"x": 1349.0, "y": 1869.0}}, "position": {"x": 1344.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4752, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121130, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1859.0}, "se": {"x": 1353.0, "y": 1869.0}, "sw": {"x": 1363.0, "y": 1859.0}, "nw": {"x": 1363.0, "y": 1869.0}}, "position": {"x": 1358.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4920, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121131, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1859.0}, "se": {"x": 1367.0, "y": 1869.0}, "sw": {"x": 1377.0, "y": 1859.0}, "nw": {"x": 1377.0, "y": 1869.0}}, "position": {"x": 1372.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5088, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121132, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1859.0}, "se": {"x": 1381.0, "y": 1869.0}, "sw": {"x": 1391.0, "y": 1859.0}, "nw": {"x": 1391.0, "y": 1869.0}}, "position": {"x": 1386.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5256, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121133, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1859.0}, "se": {"x": 1395.0, "y": 1869.0}, "sw": {"x": 1405.0, "y": 1859.0}, "nw": {"x": 1405.0, "y": 1869.0}}, "position": {"x": 1400.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5424, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121134, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1859.0}, "se": {"x": 1409.0, "y": 1869.0}, "sw": {"x": 1419.0, "y": 1859.0}, "nw": {"x": 1419.0, "y": 1869.0}}, "position": {"x": 1414.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5592, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121135, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1859.0}, "se": {"x": 1423.0, "y": 1869.0}, "sw": {"x": 1433.0, "y": 1859.0}, "nw": {"x": 1433.0, "y": 1869.0}}, "position": {"x": 1428.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5782, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121136, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1859.0}, "se": {"x": 1437.0, "y": 1869.0}, "sw": {"x": 1447.0, "y": 1859.0}, "nw": {"x": 1447.0, "y": 1869.0}}, "position": {"x": 1442.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5972, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121137, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1859.0}, "se": {"x": 1451.0, "y": 1869.0}, "sw": {"x": 1461.0, "y": 1859.0}, "nw": {"x": 1461.0, "y": 1869.0}}, "position": {"x": 1456.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6162, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121138, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1859.0}, "se": {"x": 1465.0, "y": 1869.0}, "sw": {"x": 1475.0, "y": 1859.0}, "nw": {"x": 1475.0, "y": 1869.0}}, "position": {"x": 1470.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6352, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121139, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1859.0}, "se": {"x": 1479.0, "y": 1869.0}, "sw": {"x": 1489.0, "y": 1859.0}, "nw": {"x": 1489.0, "y": 1869.0}}, "position": {"x": 1484.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6542, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121163, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1873.0}, "se": {"x": 1283.0, "y": 1883.0}, "sw": {"x": 1293.0, "y": 1873.0}, "nw": {"x": 1293.0, "y": 1883.0}}, "position": {"x": 1288.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4297, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121164, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1873.0}, "se": {"x": 1297.0, "y": 1883.0}, "sw": {"x": 1307.0, "y": 1873.0}, "nw": {"x": 1307.0, "y": 1883.0}}, "position": {"x": 1302.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4409, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121165, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1873.0}, "se": {"x": 1311.0, "y": 1883.0}, "sw": {"x": 1321.0, "y": 1873.0}, "nw": {"x": 1321.0, "y": 1883.0}}, "position": {"x": 1316.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4521, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121166, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1873.0}, "se": {"x": 1325.0, "y": 1883.0}, "sw": {"x": 1335.0, "y": 1873.0}, "nw": {"x": 1335.0, "y": 1883.0}}, "position": {"x": 1330.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4633, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121167, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1873.0}, "se": {"x": 1339.0, "y": 1883.0}, "sw": {"x": 1349.0, "y": 1873.0}, "nw": {"x": 1349.0, "y": 1883.0}}, "position": {"x": 1344.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4751, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121168, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1873.0}, "se": {"x": 1353.0, "y": 1883.0}, "sw": {"x": 1363.0, "y": 1873.0}, "nw": {"x": 1363.0, "y": 1883.0}}, "position": {"x": 1358.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4919, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121169, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1873.0}, "se": {"x": 1367.0, "y": 1883.0}, "sw": {"x": 1377.0, "y": 1873.0}, "nw": {"x": 1377.0, "y": 1883.0}}, "position": {"x": 1372.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5087, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121170, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1873.0}, "se": {"x": 1381.0, "y": 1883.0}, "sw": {"x": 1391.0, "y": 1873.0}, "nw": {"x": 1391.0, "y": 1883.0}}, "position": {"x": 1386.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5255, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121171, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1873.0}, "se": {"x": 1395.0, "y": 1883.0}, "sw": {"x": 1405.0, "y": 1873.0}, "nw": {"x": 1405.0, "y": 1883.0}}, "position": {"x": 1400.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5423, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121172, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1873.0}, "se": {"x": 1409.0, "y": 1883.0}, "sw": {"x": 1419.0, "y": 1873.0}, "nw": {"x": 1419.0, "y": 1883.0}}, "position": {"x": 1414.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5591, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121173, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1873.0}, "se": {"x": 1423.0, "y": 1883.0}, "sw": {"x": 1433.0, "y": 1873.0}, "nw": {"x": 1433.0, "y": 1883.0}}, "position": {"x": 1428.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5781, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121174, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1873.0}, "se": {"x": 1437.0, "y": 1883.0}, "sw": {"x": 1447.0, "y": 1873.0}, "nw": {"x": 1447.0, "y": 1883.0}}, "position": {"x": 1442.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5971, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121175, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1873.0}, "se": {"x": 1451.0, "y": 1883.0}, "sw": {"x": 1461.0, "y": 1873.0}, "nw": {"x": 1461.0, "y": 1883.0}}, "position": {"x": 1456.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6161, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121176, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1873.0}, "se": {"x": 1465.0, "y": 1883.0}, "sw": {"x": 1475.0, "y": 1873.0}, "nw": {"x": 1475.0, "y": 1883.0}}, "position": {"x": 1470.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6351, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121177, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1873.0}, "se": {"x": 1479.0, "y": 1883.0}, "sw": {"x": 1489.0, "y": 1873.0}, "nw": {"x": 1489.0, "y": 1883.0}}, "position": {"x": 1484.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 12\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6541, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "12\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00012\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121201, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1887.0}, "se": {"x": 1283.0, "y": 1897.0}, "sw": {"x": 1293.0, "y": 1887.0}, "nw": {"x": 1293.0, "y": 1897.0}}, "position": {"x": 1288.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4296, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121202, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1887.0}, "se": {"x": 1297.0, "y": 1897.0}, "sw": {"x": 1307.0, "y": 1887.0}, "nw": {"x": 1307.0, "y": 1897.0}}, "position": {"x": 1302.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4408, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121203, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1887.0}, "se": {"x": 1311.0, "y": 1897.0}, "sw": {"x": 1321.0, "y": 1887.0}, "nw": {"x": 1321.0, "y": 1897.0}}, "position": {"x": 1316.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4520, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121204, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1887.0}, "se": {"x": 1325.0, "y": 1897.0}, "sw": {"x": 1335.0, "y": 1887.0}, "nw": {"x": 1335.0, "y": 1897.0}}, "position": {"x": 1330.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4632, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121205, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1887.0}, "se": {"x": 1339.0, "y": 1897.0}, "sw": {"x": 1349.0, "y": 1887.0}, "nw": {"x": 1349.0, "y": 1897.0}}, "position": {"x": 1344.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4750, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121206, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1887.0}, "se": {"x": 1353.0, "y": 1897.0}, "sw": {"x": 1363.0, "y": 1887.0}, "nw": {"x": 1363.0, "y": 1897.0}}, "position": {"x": 1358.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4918, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121207, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1887.0}, "se": {"x": 1367.0, "y": 1897.0}, "sw": {"x": 1377.0, "y": 1887.0}, "nw": {"x": 1377.0, "y": 1897.0}}, "position": {"x": 1372.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5086, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121208, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1887.0}, "se": {"x": 1381.0, "y": 1897.0}, "sw": {"x": 1391.0, "y": 1887.0}, "nw": {"x": 1391.0, "y": 1897.0}}, "position": {"x": 1386.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5254, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121209, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1887.0}, "se": {"x": 1395.0, "y": 1897.0}, "sw": {"x": 1405.0, "y": 1887.0}, "nw": {"x": 1405.0, "y": 1897.0}}, "position": {"x": 1400.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5422, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121210, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1887.0}, "se": {"x": 1409.0, "y": 1897.0}, "sw": {"x": 1419.0, "y": 1887.0}, "nw": {"x": 1419.0, "y": 1897.0}}, "position": {"x": 1414.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5590, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121211, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1887.0}, "se": {"x": 1423.0, "y": 1897.0}, "sw": {"x": 1433.0, "y": 1887.0}, "nw": {"x": 1433.0, "y": 1897.0}}, "position": {"x": 1428.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5780, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121212, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1887.0}, "se": {"x": 1437.0, "y": 1897.0}, "sw": {"x": 1447.0, "y": 1887.0}, "nw": {"x": 1447.0, "y": 1897.0}}, "position": {"x": 1442.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5970, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121213, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1887.0}, "se": {"x": 1451.0, "y": 1897.0}, "sw": {"x": 1461.0, "y": 1887.0}, "nw": {"x": 1461.0, "y": 1897.0}}, "position": {"x": 1456.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6160, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121214, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1887.0}, "se": {"x": 1465.0, "y": 1897.0}, "sw": {"x": 1475.0, "y": 1887.0}, "nw": {"x": 1475.0, "y": 1897.0}}, "position": {"x": 1470.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6350, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121215, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1887.0}, "se": {"x": 1479.0, "y": 1897.0}, "sw": {"x": 1489.0, "y": 1887.0}, "nw": {"x": 1489.0, "y": 1897.0}}, "position": {"x": 1484.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 13\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6540, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "13\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00013\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121239, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1901.0}, "se": {"x": 1283.0, "y": 1911.0}, "sw": {"x": 1293.0, "y": 1901.0}, "nw": {"x": 1293.0, "y": 1911.0}}, "position": {"x": 1288.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4295, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121240, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1901.0}, "se": {"x": 1297.0, "y": 1911.0}, "sw": {"x": 1307.0, "y": 1901.0}, "nw": {"x": 1307.0, "y": 1911.0}}, "position": {"x": 1302.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4407, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121241, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1901.0}, "se": {"x": 1311.0, "y": 1911.0}, "sw": {"x": 1321.0, "y": 1901.0}, "nw": {"x": 1321.0, "y": 1911.0}}, "position": {"x": 1316.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4519, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121242, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1901.0}, "se": {"x": 1325.0, "y": 1911.0}, "sw": {"x": 1335.0, "y": 1901.0}, "nw": {"x": 1335.0, "y": 1911.0}}, "position": {"x": 1330.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4631, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121243, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1901.0}, "se": {"x": 1339.0, "y": 1911.0}, "sw": {"x": 1349.0, "y": 1901.0}, "nw": {"x": 1349.0, "y": 1911.0}}, "position": {"x": 1344.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4749, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121244, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1901.0}, "se": {"x": 1353.0, "y": 1911.0}, "sw": {"x": 1363.0, "y": 1901.0}, "nw": {"x": 1363.0, "y": 1911.0}}, "position": {"x": 1358.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4917, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121245, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1901.0}, "se": {"x": 1367.0, "y": 1911.0}, "sw": {"x": 1377.0, "y": 1901.0}, "nw": {"x": 1377.0, "y": 1911.0}}, "position": {"x": 1372.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5085, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121246, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1901.0}, "se": {"x": 1381.0, "y": 1911.0}, "sw": {"x": 1391.0, "y": 1901.0}, "nw": {"x": 1391.0, "y": 1911.0}}, "position": {"x": 1386.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5253, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121247, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1901.0}, "se": {"x": 1395.0, "y": 1911.0}, "sw": {"x": 1405.0, "y": 1901.0}, "nw": {"x": 1405.0, "y": 1911.0}}, "position": {"x": 1400.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5421, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121248, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1901.0}, "se": {"x": 1409.0, "y": 1911.0}, "sw": {"x": 1419.0, "y": 1901.0}, "nw": {"x": 1419.0, "y": 1911.0}}, "position": {"x": 1414.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5589, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121249, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1901.0}, "se": {"x": 1423.0, "y": 1911.0}, "sw": {"x": 1433.0, "y": 1901.0}, "nw": {"x": 1433.0, "y": 1911.0}}, "position": {"x": 1428.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5779, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121250, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1901.0}, "se": {"x": 1437.0, "y": 1911.0}, "sw": {"x": 1447.0, "y": 1901.0}, "nw": {"x": 1447.0, "y": 1911.0}}, "position": {"x": 1442.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5969, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121251, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1901.0}, "se": {"x": 1451.0, "y": 1911.0}, "sw": {"x": 1461.0, "y": 1901.0}, "nw": {"x": 1461.0, "y": 1911.0}}, "position": {"x": 1456.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6159, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121252, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1901.0}, "se": {"x": 1465.0, "y": 1911.0}, "sw": {"x": 1475.0, "y": 1901.0}, "nw": {"x": 1475.0, "y": 1911.0}}, "position": {"x": 1470.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6349, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121253, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1901.0}, "se": {"x": 1479.0, "y": 1911.0}, "sw": {"x": 1489.0, "y": 1901.0}, "nw": {"x": 1489.0, "y": 1911.0}}, "position": {"x": 1484.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 14\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6539, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "14\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00014\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121277, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1915.0}, "se": {"x": 1283.0, "y": 1925.0}, "sw": {"x": 1293.0, "y": 1915.0}, "nw": {"x": 1293.0, "y": 1925.0}}, "position": {"x": 1288.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4294, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121278, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1915.0}, "se": {"x": 1297.0, "y": 1925.0}, "sw": {"x": 1307.0, "y": 1915.0}, "nw": {"x": 1307.0, "y": 1925.0}}, "position": {"x": 1302.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4406, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121279, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1915.0}, "se": {"x": 1311.0, "y": 1925.0}, "sw": {"x": 1321.0, "y": 1915.0}, "nw": {"x": 1321.0, "y": 1925.0}}, "position": {"x": 1316.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4518, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121280, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1915.0}, "se": {"x": 1325.0, "y": 1925.0}, "sw": {"x": 1335.0, "y": 1915.0}, "nw": {"x": 1335.0, "y": 1925.0}}, "position": {"x": 1330.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4630, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121281, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1915.0}, "se": {"x": 1339.0, "y": 1925.0}, "sw": {"x": 1349.0, "y": 1915.0}, "nw": {"x": 1349.0, "y": 1925.0}}, "position": {"x": 1344.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4748, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121282, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1915.0}, "se": {"x": 1353.0, "y": 1925.0}, "sw": {"x": 1363.0, "y": 1915.0}, "nw": {"x": 1363.0, "y": 1925.0}}, "position": {"x": 1358.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4916, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121283, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1915.0}, "se": {"x": 1367.0, "y": 1925.0}, "sw": {"x": 1377.0, "y": 1915.0}, "nw": {"x": 1377.0, "y": 1925.0}}, "position": {"x": 1372.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5084, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121284, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1915.0}, "se": {"x": 1381.0, "y": 1925.0}, "sw": {"x": 1391.0, "y": 1915.0}, "nw": {"x": 1391.0, "y": 1925.0}}, "position": {"x": 1386.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5252, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121285, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1915.0}, "se": {"x": 1395.0, "y": 1925.0}, "sw": {"x": 1405.0, "y": 1915.0}, "nw": {"x": 1405.0, "y": 1925.0}}, "position": {"x": 1400.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5420, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121286, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1915.0}, "se": {"x": 1409.0, "y": 1925.0}, "sw": {"x": 1419.0, "y": 1915.0}, "nw": {"x": 1419.0, "y": 1925.0}}, "position": {"x": 1414.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5588, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121287, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1915.0}, "se": {"x": 1423.0, "y": 1925.0}, "sw": {"x": 1433.0, "y": 1915.0}, "nw": {"x": 1433.0, "y": 1925.0}}, "position": {"x": 1428.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5778, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121288, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1915.0}, "se": {"x": 1437.0, "y": 1925.0}, "sw": {"x": 1447.0, "y": 1915.0}, "nw": {"x": 1447.0, "y": 1925.0}}, "position": {"x": 1442.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5968, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121289, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1915.0}, "se": {"x": 1451.0, "y": 1925.0}, "sw": {"x": 1461.0, "y": 1915.0}, "nw": {"x": 1461.0, "y": 1925.0}}, "position": {"x": 1456.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6158, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121290, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1915.0}, "se": {"x": 1465.0, "y": 1925.0}, "sw": {"x": 1475.0, "y": 1915.0}, "nw": {"x": 1475.0, "y": 1925.0}}, "position": {"x": 1470.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6348, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121291, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1915.0}, "se": {"x": 1479.0, "y": 1925.0}, "sw": {"x": 1489.0, "y": 1915.0}, "nw": {"x": 1489.0, "y": 1925.0}}, "position": {"x": 1484.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6538, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121315, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1283.0, "y": 1929.0}, "se": {"x": 1283.0, "y": 1939.0}, "sw": {"x": 1293.0, "y": 1929.0}, "nw": {"x": 1293.0, "y": 1939.0}}, "position": {"x": 1288.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158627, "gate": "", "blockId": null, "orderNum": 4293, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121316, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1297.0, "y": 1929.0}, "se": {"x": 1297.0, "y": 1939.0}, "sw": {"x": 1307.0, "y": 1929.0}, "nw": {"x": 1307.0, "y": 1939.0}}, "position": {"x": 1302.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158628, "gate": "", "blockId": null, "orderNum": 4405, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121317, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1311.0, "y": 1929.0}, "se": {"x": 1311.0, "y": 1939.0}, "sw": {"x": 1321.0, "y": 1929.0}, "nw": {"x": 1321.0, "y": 1939.0}}, "position": {"x": 1316.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158629, "gate": "", "blockId": null, "orderNum": 4517, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121318, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1325.0, "y": 1929.0}, "se": {"x": 1325.0, "y": 1939.0}, "sw": {"x": 1335.0, "y": 1929.0}, "nw": {"x": 1335.0, "y": 1939.0}}, "position": {"x": 1330.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158630, "gate": "", "blockId": null, "orderNum": 4629, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121319, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1339.0, "y": 1929.0}, "se": {"x": 1339.0, "y": 1939.0}, "sw": {"x": 1349.0, "y": 1929.0}, "nw": {"x": 1349.0, "y": 1939.0}}, "position": {"x": 1344.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158631, "gate": "", "blockId": null, "orderNum": 4747, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121320, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1353.0, "y": 1929.0}, "se": {"x": 1353.0, "y": 1939.0}, "sw": {"x": 1363.0, "y": 1929.0}, "nw": {"x": 1363.0, "y": 1939.0}}, "position": {"x": 1358.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158632, "gate": "", "blockId": null, "orderNum": 4915, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121321, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1367.0, "y": 1929.0}, "se": {"x": 1367.0, "y": 1939.0}, "sw": {"x": 1377.0, "y": 1929.0}, "nw": {"x": 1377.0, "y": 1939.0}}, "position": {"x": 1372.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158633, "gate": "", "blockId": null, "orderNum": 5083, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121322, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1381.0, "y": 1929.0}, "se": {"x": 1381.0, "y": 1939.0}, "sw": {"x": 1391.0, "y": 1929.0}, "nw": {"x": 1391.0, "y": 1939.0}}, "position": {"x": 1386.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158634, "gate": "", "blockId": null, "orderNum": 5251, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121323, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1395.0, "y": 1929.0}, "se": {"x": 1395.0, "y": 1939.0}, "sw": {"x": 1405.0, "y": 1929.0}, "nw": {"x": 1405.0, "y": 1939.0}}, "position": {"x": 1400.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158635, "gate": "", "blockId": null, "orderNum": 5419, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121324, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1409.0, "y": 1929.0}, "se": {"x": 1409.0, "y": 1939.0}, "sw": {"x": 1419.0, "y": 1929.0}, "nw": {"x": 1419.0, "y": 1939.0}}, "position": {"x": 1414.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158636, "gate": "", "blockId": null, "orderNum": 5587, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121325, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1423.0, "y": 1929.0}, "se": {"x": 1423.0, "y": 1939.0}, "sw": {"x": 1433.0, "y": 1929.0}, "nw": {"x": 1433.0, "y": 1939.0}}, "position": {"x": 1428.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158637, "gate": "", "blockId": null, "orderNum": 5777, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121326, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1437.0, "y": 1929.0}, "se": {"x": 1437.0, "y": 1939.0}, "sw": {"x": 1447.0, "y": 1929.0}, "nw": {"x": 1447.0, "y": 1939.0}}, "position": {"x": 1442.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158638, "gate": "", "blockId": null, "orderNum": 5967, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121327, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1451.0, "y": 1929.0}, "se": {"x": 1451.0, "y": 1939.0}, "sw": {"x": 1461.0, "y": 1929.0}, "nw": {"x": 1461.0, "y": 1939.0}}, "position": {"x": 1456.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158639, "gate": "", "blockId": null, "orderNum": 6157, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121328, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1465.0, "y": 1929.0}, "se": {"x": 1465.0, "y": 1939.0}, "sw": {"x": 1475.0, "y": 1929.0}, "nw": {"x": 1475.0, "y": 1939.0}}, "position": {"x": 1470.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158640, "gate": "", "blockId": null, "orderNum": 6347, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537121329, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1479.0, "y": 1929.0}, "se": {"x": 1479.0, "y": 1939.0}, "sw": {"x": 1489.0, "y": 1929.0}, "nw": {"x": 1489.0, "y": 1939.0}}, "position": {"x": 1484.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 A\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158641, "gate": "", "blockId": null, "orderNum": 6537, "attributes": ["", "", "2\uce35", "A\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35A\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 5, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "7:5": [{"logicalSeatId": 1537120244, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1533.0}, "se": {"x": 1814.0, "y": 1533.0}, "sw": {"x": 1804.0, "y": 1523.0}, "nw": {"x": 1814.0, "y": 1523.0}}, "position": {"x": 1809.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7636, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120245, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1519.0}, "se": {"x": 1814.0, "y": 1519.0}, "sw": {"x": 1804.0, "y": 1509.0}, "nw": {"x": 1814.0, "y": 1509.0}}, "position": {"x": 1809.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7637, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120246, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1505.0}, "se": {"x": 1814.0, "y": 1505.0}, "sw": {"x": 1804.0, "y": 1495.0}, "nw": {"x": 1814.0, "y": 1495.0}}, "position": {"x": 1809.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7638, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120247, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1491.0}, "se": {"x": 1814.0, "y": 1491.0}, "sw": {"x": 1804.0, "y": 1481.0}, "nw": {"x": 1814.0, "y": 1481.0}}, "position": {"x": 1809.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7639, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120248, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1477.0}, "se": {"x": 1814.0, "y": 1477.0}, "sw": {"x": 1804.0, "y": 1467.0}, "nw": {"x": 1814.0, "y": 1467.0}}, "position": {"x": 1809.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7640, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120261, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1533.0}, "se": {"x": 1828.0, "y": 1533.0}, "sw": {"x": 1818.0, "y": 1523.0}, "nw": {"x": 1828.0, "y": 1523.0}}, "position": {"x": 1823.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7723, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120262, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1519.0}, "se": {"x": 1828.0, "y": 1519.0}, "sw": {"x": 1818.0, "y": 1509.0}, "nw": {"x": 1828.0, "y": 1509.0}}, "position": {"x": 1823.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7724, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120263, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1505.0}, "se": {"x": 1828.0, "y": 1505.0}, "sw": {"x": 1818.0, "y": 1495.0}, "nw": {"x": 1828.0, "y": 1495.0}}, "position": {"x": 1823.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7725, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120264, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1491.0}, "se": {"x": 1828.0, "y": 1491.0}, "sw": {"x": 1818.0, "y": 1481.0}, "nw": {"x": 1828.0, "y": 1481.0}}, "position": {"x": 1823.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7726, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120265, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1477.0}, "se": {"x": 1828.0, "y": 1477.0}, "sw": {"x": 1818.0, "y": 1467.0}, "nw": {"x": 1828.0, "y": 1467.0}}, "position": {"x": 1823.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7727, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120279, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1533.0}, "se": {"x": 1842.0, "y": 1533.0}, "sw": {"x": 1832.0, "y": 1523.0}, "nw": {"x": 1842.0, "y": 1523.0}}, "position": {"x": 1837.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7810, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120280, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1519.0}, "se": {"x": 1842.0, "y": 1519.0}, "sw": {"x": 1832.0, "y": 1509.0}, "nw": {"x": 1842.0, "y": 1509.0}}, "position": {"x": 1837.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7811, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120281, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1505.0}, "se": {"x": 1842.0, "y": 1505.0}, "sw": {"x": 1832.0, "y": 1495.0}, "nw": {"x": 1842.0, "y": 1495.0}}, "position": {"x": 1837.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7812, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120282, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1491.0}, "se": {"x": 1842.0, "y": 1491.0}, "sw": {"x": 1832.0, "y": 1481.0}, "nw": {"x": 1842.0, "y": 1481.0}}, "position": {"x": 1837.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7813, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120283, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1477.0}, "se": {"x": 1842.0, "y": 1477.0}, "sw": {"x": 1832.0, "y": 1467.0}, "nw": {"x": 1842.0, "y": 1467.0}}, "position": {"x": 1837.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7814, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120298, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1533.0}, "se": {"x": 1856.0, "y": 1533.0}, "sw": {"x": 1846.0, "y": 1523.0}, "nw": {"x": 1856.0, "y": 1523.0}}, "position": {"x": 1851.0, "y": 1528.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7897, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400015\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120299, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1519.0}, "se": {"x": 1856.0, "y": 1519.0}, "sw": {"x": 1846.0, "y": 1509.0}, "nw": {"x": 1856.0, "y": 1509.0}}, "position": {"x": 1851.0, "y": 1514.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7898, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400016\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120300, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1505.0}, "se": {"x": 1856.0, "y": 1505.0}, "sw": {"x": 1846.0, "y": 1495.0}, "nw": {"x": 1856.0, "y": 1495.0}}, "position": {"x": 1851.0, "y": 1500.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7899, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400017\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120301, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1491.0}, "se": {"x": 1856.0, "y": 1491.0}, "sw": {"x": 1846.0, "y": 1481.0}, "nw": {"x": 1856.0, "y": 1481.0}}, "position": {"x": 1851.0, "y": 1486.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7900, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120302, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1477.0}, "se": {"x": 1856.0, "y": 1477.0}, "sw": {"x": 1846.0, "y": 1467.0}, "nw": {"x": 1856.0, "y": 1467.0}}, "position": {"x": 1851.0, "y": 1472.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7901, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 5}, "waitingLinkedId": null, "sectionId": 59711}], "6:6": [{"logicalSeatId": 1537120527, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1719.0}, "se": {"x": 1547.0, "y": 1729.0}, "sw": {"x": 1557.0, "y": 1719.0}, "nw": {"x": 1557.0, "y": 1729.0}}, "position": {"x": 1552.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7242, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120528, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1719.0}, "se": {"x": 1561.0, "y": 1729.0}, "sw": {"x": 1571.0, "y": 1719.0}, "nw": {"x": 1571.0, "y": 1729.0}}, "position": {"x": 1566.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7421, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120529, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1719.0}, "se": {"x": 1575.0, "y": 1729.0}, "sw": {"x": 1585.0, "y": 1719.0}, "nw": {"x": 1585.0, "y": 1729.0}}, "position": {"x": 1580.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7426, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120530, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1719.0}, "se": {"x": 1589.0, "y": 1729.0}, "sw": {"x": 1599.0, "y": 1719.0}, "nw": {"x": 1599.0, "y": 1729.0}}, "position": {"x": 1594.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7431, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120531, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1719.0}, "se": {"x": 1603.0, "y": 1729.0}, "sw": {"x": 1613.0, "y": 1719.0}, "nw": {"x": 1613.0, "y": 1729.0}}, "position": {"x": 1608.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7436, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120532, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1719.0}, "se": {"x": 1617.0, "y": 1729.0}, "sw": {"x": 1627.0, "y": 1719.0}, "nw": {"x": 1627.0, "y": 1729.0}}, "position": {"x": 1622.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7452, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120533, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1719.0}, "se": {"x": 1631.0, "y": 1729.0}, "sw": {"x": 1641.0, "y": 1719.0}, "nw": {"x": 1641.0, "y": 1729.0}}, "position": {"x": 1636.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7468, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120534, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1719.0}, "se": {"x": 1645.0, "y": 1729.0}, "sw": {"x": 1655.0, "y": 1719.0}, "nw": {"x": 1655.0, "y": 1729.0}}, "position": {"x": 1650.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7484, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120535, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1719.0}, "se": {"x": 1659.0, "y": 1729.0}, "sw": {"x": 1669.0, "y": 1719.0}, "nw": {"x": 1669.0, "y": 1729.0}}, "position": {"x": 1664.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7500, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120536, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1719.0}, "se": {"x": 1673.0, "y": 1729.0}, "sw": {"x": 1683.0, "y": 1719.0}, "nw": {"x": 1683.0, "y": 1729.0}}, "position": {"x": 1678.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7516, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120537, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1733.0}, "se": {"x": 1547.0, "y": 1743.0}, "sw": {"x": 1557.0, "y": 1733.0}, "nw": {"x": 1557.0, "y": 1743.0}}, "position": {"x": 1552.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7241, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120538, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1733.0}, "se": {"x": 1561.0, "y": 1743.0}, "sw": {"x": 1571.0, "y": 1733.0}, "nw": {"x": 1571.0, "y": 1743.0}}, "position": {"x": 1566.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7420, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120539, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1733.0}, "se": {"x": 1575.0, "y": 1743.0}, "sw": {"x": 1585.0, "y": 1733.0}, "nw": {"x": 1585.0, "y": 1743.0}}, "position": {"x": 1580.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7425, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120540, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1733.0}, "se": {"x": 1589.0, "y": 1743.0}, "sw": {"x": 1599.0, "y": 1733.0}, "nw": {"x": 1599.0, "y": 1743.0}}, "position": {"x": 1594.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7430, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120541, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1733.0}, "se": {"x": 1603.0, "y": 1743.0}, "sw": {"x": 1613.0, "y": 1733.0}, "nw": {"x": 1613.0, "y": 1743.0}}, "position": {"x": 1608.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7435, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120542, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1733.0}, "se": {"x": 1617.0, "y": 1743.0}, "sw": {"x": 1627.0, "y": 1733.0}, "nw": {"x": 1627.0, "y": 1743.0}}, "position": {"x": 1622.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7451, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120543, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1733.0}, "se": {"x": 1631.0, "y": 1743.0}, "sw": {"x": 1641.0, "y": 1733.0}, "nw": {"x": 1641.0, "y": 1743.0}}, "position": {"x": 1636.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7467, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120544, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1733.0}, "se": {"x": 1645.0, "y": 1743.0}, "sw": {"x": 1655.0, "y": 1733.0}, "nw": {"x": 1655.0, "y": 1743.0}}, "position": {"x": 1650.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7483, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120545, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1733.0}, "se": {"x": 1659.0, "y": 1743.0}, "sw": {"x": 1669.0, "y": 1733.0}, "nw": {"x": 1669.0, "y": 1743.0}}, "position": {"x": 1664.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7499, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120546, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1733.0}, "se": {"x": 1673.0, "y": 1743.0}, "sw": {"x": 1683.0, "y": 1733.0}, "nw": {"x": 1683.0, "y": 1743.0}}, "position": {"x": 1678.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7515, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120547, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1733.0}, "se": {"x": 1701.0, "y": 1743.0}, "sw": {"x": 1711.0, "y": 1733.0}, "nw": {"x": 1711.0, "y": 1743.0}}, "position": {"x": 1706.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157859, "gate": "", "blockId": null, "orderNum": 7542, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120548, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1747.0}, "se": {"x": 1547.0, "y": 1757.0}, "sw": {"x": 1557.0, "y": 1747.0}, "nw": {"x": 1557.0, "y": 1757.0}}, "position": {"x": 1552.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7240, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120549, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1747.0}, "se": {"x": 1561.0, "y": 1757.0}, "sw": {"x": 1571.0, "y": 1747.0}, "nw": {"x": 1571.0, "y": 1757.0}}, "position": {"x": 1566.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7419, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120550, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1747.0}, "se": {"x": 1575.0, "y": 1757.0}, "sw": {"x": 1585.0, "y": 1747.0}, "nw": {"x": 1585.0, "y": 1757.0}}, "position": {"x": 1580.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7424, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120551, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1747.0}, "se": {"x": 1589.0, "y": 1757.0}, "sw": {"x": 1599.0, "y": 1747.0}, "nw": {"x": 1599.0, "y": 1757.0}}, "position": {"x": 1594.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7429, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120552, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1747.0}, "se": {"x": 1603.0, "y": 1757.0}, "sw": {"x": 1613.0, "y": 1747.0}, "nw": {"x": 1613.0, "y": 1757.0}}, "position": {"x": 1608.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7434, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120553, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1747.0}, "se": {"x": 1617.0, "y": 1757.0}, "sw": {"x": 1627.0, "y": 1747.0}, "nw": {"x": 1627.0, "y": 1757.0}}, "position": {"x": 1622.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7450, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120554, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1747.0}, "se": {"x": 1631.0, "y": 1757.0}, "sw": {"x": 1641.0, "y": 1747.0}, "nw": {"x": 1641.0, "y": 1757.0}}, "position": {"x": 1636.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7466, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120555, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1747.0}, "se": {"x": 1645.0, "y": 1757.0}, "sw": {"x": 1655.0, "y": 1747.0}, "nw": {"x": 1655.0, "y": 1757.0}}, "position": {"x": 1650.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7482, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120556, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1747.0}, "se": {"x": 1659.0, "y": 1757.0}, "sw": {"x": 1669.0, "y": 1747.0}, "nw": {"x": 1669.0, "y": 1757.0}}, "position": {"x": 1664.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7498, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120557, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1747.0}, "se": {"x": 1673.0, "y": 1757.0}, "sw": {"x": 1683.0, "y": 1747.0}, "nw": {"x": 1683.0, "y": 1757.0}}, "position": {"x": 1678.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7514, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120558, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1747.0}, "se": {"x": 1687.0, "y": 1757.0}, "sw": {"x": 1697.0, "y": 1747.0}, "nw": {"x": 1697.0, "y": 1757.0}}, "position": {"x": 1692.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157883, "gate": "", "blockId": null, "orderNum": 7529, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120559, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1747.0}, "se": {"x": 1715.0, "y": 1757.0}, "sw": {"x": 1725.0, "y": 1747.0}, "nw": {"x": 1725.0, "y": 1757.0}}, "position": {"x": 1720.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157871, "gate": "", "blockId": null, "orderNum": 7625, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120560, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1747.0}, "se": {"x": 1729.0, "y": 1757.0}, "sw": {"x": 1739.0, "y": 1747.0}, "nw": {"x": 1739.0, "y": 1757.0}}, "position": {"x": 1734.0, "y": 1752.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157885, "gate": "", "blockId": null, "orderNum": 7710, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120561, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1761.0}, "se": {"x": 1547.0, "y": 1771.0}, "sw": {"x": 1557.0, "y": 1761.0}, "nw": {"x": 1557.0, "y": 1771.0}}, "position": {"x": 1552.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157873, "gate": "", "blockId": null, "orderNum": 7239, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120562, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1761.0}, "se": {"x": 1561.0, "y": 1771.0}, "sw": {"x": 1571.0, "y": 1761.0}, "nw": {"x": 1571.0, "y": 1771.0}}, "position": {"x": 1566.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157874, "gate": "", "blockId": null, "orderNum": 7418, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120563, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1761.0}, "se": {"x": 1575.0, "y": 1771.0}, "sw": {"x": 1585.0, "y": 1761.0}, "nw": {"x": 1585.0, "y": 1771.0}}, "position": {"x": 1580.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157875, "gate": "", "blockId": null, "orderNum": 7423, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120564, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1761.0}, "se": {"x": 1589.0, "y": 1771.0}, "sw": {"x": 1599.0, "y": 1761.0}, "nw": {"x": 1599.0, "y": 1771.0}}, "position": {"x": 1594.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157876, "gate": "", "blockId": null, "orderNum": 7428, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120565, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1761.0}, "se": {"x": 1603.0, "y": 1771.0}, "sw": {"x": 1613.0, "y": 1761.0}, "nw": {"x": 1613.0, "y": 1771.0}}, "position": {"x": 1608.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157877, "gate": "", "blockId": null, "orderNum": 7433, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120566, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1761.0}, "se": {"x": 1617.0, "y": 1771.0}, "sw": {"x": 1627.0, "y": 1761.0}, "nw": {"x": 1627.0, "y": 1771.0}}, "position": {"x": 1622.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157878, "gate": "", "blockId": null, "orderNum": 7449, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120567, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1761.0}, "se": {"x": 1631.0, "y": 1771.0}, "sw": {"x": 1641.0, "y": 1761.0}, "nw": {"x": 1641.0, "y": 1771.0}}, "position": {"x": 1636.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157879, "gate": "", "blockId": null, "orderNum": 7465, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120568, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1761.0}, "se": {"x": 1645.0, "y": 1771.0}, "sw": {"x": 1655.0, "y": 1761.0}, "nw": {"x": 1655.0, "y": 1771.0}}, "position": {"x": 1650.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157880, "gate": "", "blockId": null, "orderNum": 7481, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120569, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1761.0}, "se": {"x": 1659.0, "y": 1771.0}, "sw": {"x": 1669.0, "y": 1761.0}, "nw": {"x": 1669.0, "y": 1771.0}}, "position": {"x": 1664.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157881, "gate": "", "blockId": null, "orderNum": 7497, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120570, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1761.0}, "se": {"x": 1673.0, "y": 1771.0}, "sw": {"x": 1683.0, "y": 1761.0}, "nw": {"x": 1683.0, "y": 1771.0}}, "position": {"x": 1678.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157882, "gate": "", "blockId": null, "orderNum": 7513, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120571, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1761.0}, "se": {"x": 1687.0, "y": 1771.0}, "sw": {"x": 1697.0, "y": 1761.0}, "nw": {"x": 1697.0, "y": 1771.0}}, "position": {"x": 1692.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157883, "gate": "", "blockId": null, "orderNum": 7528, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120572, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1761.0}, "se": {"x": 1701.0, "y": 1771.0}, "sw": {"x": 1711.0, "y": 1761.0}, "nw": {"x": 1711.0, "y": 1771.0}}, "position": {"x": 1706.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157884, "gate": "", "blockId": null, "orderNum": 7541, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120573, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1761.0}, "se": {"x": 1729.0, "y": 1771.0}, "sw": {"x": 1739.0, "y": 1761.0}, "nw": {"x": 1739.0, "y": 1771.0}}, "position": {"x": 1734.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157885, "gate": "", "blockId": null, "orderNum": 7709, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120574, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1761.0}, "se": {"x": 1743.0, "y": 1771.0}, "sw": {"x": 1753.0, "y": 1761.0}, "nw": {"x": 1753.0, "y": 1771.0}}, "position": {"x": 1748.0, "y": 1766.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157886, "gate": "", "blockId": null, "orderNum": 7796, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "7:6": [{"logicalSeatId": 1537120234, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1673.0}, "se": {"x": 1814.0, "y": 1673.0}, "sw": {"x": 1804.0, "y": 1663.0}, "nw": {"x": 1814.0, "y": 1663.0}}, "position": {"x": 1809.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7626, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120235, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1659.0}, "se": {"x": 1814.0, "y": 1659.0}, "sw": {"x": 1804.0, "y": 1649.0}, "nw": {"x": 1814.0, "y": 1649.0}}, "position": {"x": 1809.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7627, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120236, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1645.0}, "se": {"x": 1814.0, "y": 1645.0}, "sw": {"x": 1804.0, "y": 1635.0}, "nw": {"x": 1814.0, "y": 1635.0}}, "position": {"x": 1809.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7628, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120237, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1631.0}, "se": {"x": 1814.0, "y": 1631.0}, "sw": {"x": 1804.0, "y": 1621.0}, "nw": {"x": 1814.0, "y": 1621.0}}, "position": {"x": 1809.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7629, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120238, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1617.0}, "se": {"x": 1814.0, "y": 1617.0}, "sw": {"x": 1804.0, "y": 1607.0}, "nw": {"x": 1814.0, "y": 1607.0}}, "position": {"x": 1809.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7630, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120239, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1603.0}, "se": {"x": 1814.0, "y": 1603.0}, "sw": {"x": 1804.0, "y": 1593.0}, "nw": {"x": 1814.0, "y": 1593.0}}, "position": {"x": 1809.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7631, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120240, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1589.0}, "se": {"x": 1814.0, "y": 1589.0}, "sw": {"x": 1804.0, "y": 1579.0}, "nw": {"x": 1814.0, "y": 1579.0}}, "position": {"x": 1809.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7632, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120241, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1575.0}, "se": {"x": 1814.0, "y": 1575.0}, "sw": {"x": 1804.0, "y": 1565.0}, "nw": {"x": 1814.0, "y": 1565.0}}, "position": {"x": 1809.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7633, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120242, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1561.0}, "se": {"x": 1814.0, "y": 1561.0}, "sw": {"x": 1804.0, "y": 1551.0}, "nw": {"x": 1814.0, "y": 1551.0}}, "position": {"x": 1809.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7634, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120243, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1804.0, "y": 1547.0}, "se": {"x": 1814.0, "y": 1547.0}, "sw": {"x": 1804.0, "y": 1537.0}, "nw": {"x": 1814.0, "y": 1537.0}}, "position": {"x": 1809.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 2\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157546, "gate": "", "blockId": null, "orderNum": 7635, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "2\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00002\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120249, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1715.0}, "se": {"x": 1828.0, "y": 1715.0}, "sw": {"x": 1818.0, "y": 1705.0}, "nw": {"x": 1828.0, "y": 1705.0}}, "position": {"x": 1823.0, "y": 1710.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157561, "gate": "", "blockId": null, "orderNum": 7711, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120250, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1687.0}, "se": {"x": 1828.0, "y": 1687.0}, "sw": {"x": 1818.0, "y": 1677.0}, "nw": {"x": 1828.0, "y": 1677.0}}, "position": {"x": 1823.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7712, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120251, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1673.0}, "se": {"x": 1828.0, "y": 1673.0}, "sw": {"x": 1818.0, "y": 1663.0}, "nw": {"x": 1828.0, "y": 1663.0}}, "position": {"x": 1823.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7713, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120252, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1659.0}, "se": {"x": 1828.0, "y": 1659.0}, "sw": {"x": 1818.0, "y": 1649.0}, "nw": {"x": 1828.0, "y": 1649.0}}, "position": {"x": 1823.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7714, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120253, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1645.0}, "se": {"x": 1828.0, "y": 1645.0}, "sw": {"x": 1818.0, "y": 1635.0}, "nw": {"x": 1828.0, "y": 1635.0}}, "position": {"x": 1823.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7715, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120254, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1631.0}, "se": {"x": 1828.0, "y": 1631.0}, "sw": {"x": 1818.0, "y": 1621.0}, "nw": {"x": 1828.0, "y": 1621.0}}, "position": {"x": 1823.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7716, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120255, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1617.0}, "se": {"x": 1828.0, "y": 1617.0}, "sw": {"x": 1818.0, "y": 1607.0}, "nw": {"x": 1828.0, "y": 1607.0}}, "position": {"x": 1823.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7717, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120256, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1603.0}, "se": {"x": 1828.0, "y": 1603.0}, "sw": {"x": 1818.0, "y": 1593.0}, "nw": {"x": 1828.0, "y": 1593.0}}, "position": {"x": 1823.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7718, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120257, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1589.0}, "se": {"x": 1828.0, "y": 1589.0}, "sw": {"x": 1818.0, "y": 1579.0}, "nw": {"x": 1828.0, "y": 1579.0}}, "position": {"x": 1823.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7719, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120258, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1575.0}, "se": {"x": 1828.0, "y": 1575.0}, "sw": {"x": 1818.0, "y": 1565.0}, "nw": {"x": 1828.0, "y": 1565.0}}, "position": {"x": 1823.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7720, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120259, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1561.0}, "se": {"x": 1828.0, "y": 1561.0}, "sw": {"x": 1818.0, "y": 1551.0}, "nw": {"x": 1828.0, "y": 1551.0}}, "position": {"x": 1823.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7721, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120260, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1818.0, "y": 1547.0}, "se": {"x": 1828.0, "y": 1547.0}, "sw": {"x": 1818.0, "y": 1537.0}, "nw": {"x": 1828.0, "y": 1537.0}}, "position": {"x": 1823.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 3\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157562, "gate": "", "blockId": null, "orderNum": 7722, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "3\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00003\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120266, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1729.0}, "se": {"x": 1842.0, "y": 1729.0}, "sw": {"x": 1832.0, "y": 1719.0}, "nw": {"x": 1842.0, "y": 1719.0}}, "position": {"x": 1837.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157578, "gate": "", "blockId": null, "orderNum": 7797, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120267, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1715.0}, "se": {"x": 1842.0, "y": 1715.0}, "sw": {"x": 1832.0, "y": 1705.0}, "nw": {"x": 1842.0, "y": 1705.0}}, "position": {"x": 1837.0, "y": 1710.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157578, "gate": "", "blockId": null, "orderNum": 7798, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120268, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1687.0}, "se": {"x": 1842.0, "y": 1687.0}, "sw": {"x": 1832.0, "y": 1677.0}, "nw": {"x": 1842.0, "y": 1677.0}}, "position": {"x": 1837.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7799, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120269, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1673.0}, "se": {"x": 1842.0, "y": 1673.0}, "sw": {"x": 1832.0, "y": 1663.0}, "nw": {"x": 1842.0, "y": 1663.0}}, "position": {"x": 1837.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7800, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120270, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1659.0}, "se": {"x": 1842.0, "y": 1659.0}, "sw": {"x": 1832.0, "y": 1649.0}, "nw": {"x": 1842.0, "y": 1649.0}}, "position": {"x": 1837.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7801, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120271, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1645.0}, "se": {"x": 1842.0, "y": 1645.0}, "sw": {"x": 1832.0, "y": 1635.0}, "nw": {"x": 1842.0, "y": 1635.0}}, "position": {"x": 1837.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7802, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120272, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1631.0}, "se": {"x": 1842.0, "y": 1631.0}, "sw": {"x": 1832.0, "y": 1621.0}, "nw": {"x": 1842.0, "y": 1621.0}}, "position": {"x": 1837.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7803, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120273, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1617.0}, "se": {"x": 1842.0, "y": 1617.0}, "sw": {"x": 1832.0, "y": 1607.0}, "nw": {"x": 1842.0, "y": 1607.0}}, "position": {"x": 1837.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7804, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120274, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1603.0}, "se": {"x": 1842.0, "y": 1603.0}, "sw": {"x": 1832.0, "y": 1593.0}, "nw": {"x": 1842.0, "y": 1593.0}}, "position": {"x": 1837.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7805, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120275, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1589.0}, "se": {"x": 1842.0, "y": 1589.0}, "sw": {"x": 1832.0, "y": 1579.0}, "nw": {"x": 1842.0, "y": 1579.0}}, "position": {"x": 1837.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7806, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120276, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1575.0}, "se": {"x": 1842.0, "y": 1575.0}, "sw": {"x": 1832.0, "y": 1565.0}, "nw": {"x": 1842.0, "y": 1565.0}}, "position": {"x": 1837.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7807, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120277, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1561.0}, "se": {"x": 1842.0, "y": 1561.0}, "sw": {"x": 1832.0, "y": 1551.0}, "nw": {"x": 1842.0, "y": 1551.0}}, "position": {"x": 1837.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7808, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120278, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1832.0, "y": 1547.0}, "se": {"x": 1842.0, "y": 1547.0}, "sw": {"x": 1832.0, "y": 1537.0}, "nw": {"x": 1842.0, "y": 1537.0}}, "position": {"x": 1837.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 4\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157580, "gate": "", "blockId": null, "orderNum": 7809, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "4\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00004\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120284, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1743.0}, "se": {"x": 1856.0, "y": 1743.0}, "sw": {"x": 1846.0, "y": 1733.0}, "nw": {"x": 1856.0, "y": 1733.0}}, "position": {"x": 1851.0, "y": 1738.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157596, "gate": "", "blockId": null, "orderNum": 7883, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400001\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120285, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1729.0}, "se": {"x": 1856.0, "y": 1729.0}, "sw": {"x": 1846.0, "y": 1719.0}, "nw": {"x": 1856.0, "y": 1719.0}}, "position": {"x": 1851.0, "y": 1724.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157596, "gate": "", "blockId": null, "orderNum": 7884, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400002\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120286, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1701.0}, "se": {"x": 1856.0, "y": 1701.0}, "sw": {"x": 1846.0, "y": 1691.0}, "nw": {"x": 1856.0, "y": 1691.0}}, "position": {"x": 1851.0, "y": 1696.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7885, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400003\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120287, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1687.0}, "se": {"x": 1856.0, "y": 1687.0}, "sw": {"x": 1846.0, "y": 1677.0}, "nw": {"x": 1856.0, "y": 1677.0}}, "position": {"x": 1851.0, "y": 1682.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7886, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400004\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120288, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1673.0}, "se": {"x": 1856.0, "y": 1673.0}, "sw": {"x": 1846.0, "y": 1663.0}, "nw": {"x": 1856.0, "y": 1663.0}}, "position": {"x": 1851.0, "y": 1668.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7887, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400005\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120289, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1659.0}, "se": {"x": 1856.0, "y": 1659.0}, "sw": {"x": 1846.0, "y": 1649.0}, "nw": {"x": 1856.0, "y": 1649.0}}, "position": {"x": 1851.0, "y": 1654.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7888, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400006\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120290, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1645.0}, "se": {"x": 1856.0, "y": 1645.0}, "sw": {"x": 1846.0, "y": 1635.0}, "nw": {"x": 1856.0, "y": 1635.0}}, "position": {"x": 1851.0, "y": 1640.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7889, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400007\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120291, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1631.0}, "se": {"x": 1856.0, "y": 1631.0}, "sw": {"x": 1846.0, "y": 1621.0}, "nw": {"x": 1856.0, "y": 1621.0}}, "position": {"x": 1851.0, "y": 1626.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7890, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400008\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120292, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1617.0}, "se": {"x": 1856.0, "y": 1617.0}, "sw": {"x": 1846.0, "y": 1607.0}, "nw": {"x": 1856.0, "y": 1607.0}}, "position": {"x": 1851.0, "y": 1612.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7891, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400009\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120293, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1603.0}, "se": {"x": 1856.0, "y": 1603.0}, "sw": {"x": 1846.0, "y": 1593.0}, "nw": {"x": 1856.0, "y": 1593.0}}, "position": {"x": 1851.0, "y": 1598.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7892, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400010\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120294, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1589.0}, "se": {"x": 1856.0, "y": 1589.0}, "sw": {"x": 1846.0, "y": 1579.0}, "nw": {"x": 1856.0, "y": 1579.0}}, "position": {"x": 1851.0, "y": 1584.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7893, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400011\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120295, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1575.0}, "se": {"x": 1856.0, "y": 1575.0}, "sw": {"x": 1846.0, "y": 1565.0}, "nw": {"x": 1856.0, "y": 1565.0}}, "position": {"x": 1851.0, "y": 1570.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7894, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400012\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120296, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1561.0}, "se": {"x": 1856.0, "y": 1561.0}, "sw": {"x": 1846.0, "y": 1551.0}, "nw": {"x": 1856.0, "y": 1551.0}}, "position": {"x": 1851.0, "y": 1556.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7895, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400013\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120297, "gradeId": 102832, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1846.0, "y": 1547.0}, "se": {"x": 1856.0, "y": 1547.0}, "sw": {"x": 1846.0, "y": 1537.0}, "nw": {"x": 1856.0, "y": 1537.0}}, "position": {"x": 1851.0, "y": 1542.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 C\uad6c\uc5ed 5\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49157598, "gate": "", "blockId": null, "orderNum": 7896, "attributes": ["", "", "2\uce35", "C\uad6c\uc5ed", "5\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35C\uad6c\uc5ed00005\uc5f400014\ubc88", "area": {"virtualX": 7, "virtualY": 6}, "waitingLinkedId": null, "sectionId": 59711}], "6:7": [{"logicalSeatId": 1537120588, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1803.0}, "se": {"x": 1547.0, "y": 1813.0}, "sw": {"x": 1557.0, "y": 1803.0}, "nw": {"x": 1557.0, "y": 1813.0}}, "position": {"x": 1552.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7447, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120589, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1803.0}, "se": {"x": 1561.0, "y": 1813.0}, "sw": {"x": 1571.0, "y": 1803.0}, "nw": {"x": 1571.0, "y": 1813.0}}, "position": {"x": 1566.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7463, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120590, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1803.0}, "se": {"x": 1575.0, "y": 1813.0}, "sw": {"x": 1585.0, "y": 1803.0}, "nw": {"x": 1585.0, "y": 1813.0}}, "position": {"x": 1580.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7479, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120591, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1803.0}, "se": {"x": 1589.0, "y": 1813.0}, "sw": {"x": 1599.0, "y": 1803.0}, "nw": {"x": 1599.0, "y": 1813.0}}, "position": {"x": 1594.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7495, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120592, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1803.0}, "se": {"x": 1603.0, "y": 1813.0}, "sw": {"x": 1613.0, "y": 1803.0}, "nw": {"x": 1613.0, "y": 1813.0}}, "position": {"x": 1608.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7511, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120593, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1803.0}, "se": {"x": 1617.0, "y": 1813.0}, "sw": {"x": 1627.0, "y": 1803.0}, "nw": {"x": 1627.0, "y": 1813.0}}, "position": {"x": 1622.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7526, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120594, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1803.0}, "se": {"x": 1631.0, "y": 1813.0}, "sw": {"x": 1641.0, "y": 1803.0}, "nw": {"x": 1641.0, "y": 1813.0}}, "position": {"x": 1636.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7539, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120595, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1803.0}, "se": {"x": 1645.0, "y": 1813.0}, "sw": {"x": 1655.0, "y": 1803.0}, "nw": {"x": 1655.0, "y": 1813.0}}, "position": {"x": 1650.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7623, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120596, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1803.0}, "se": {"x": 1659.0, "y": 1813.0}, "sw": {"x": 1669.0, "y": 1803.0}, "nw": {"x": 1669.0, "y": 1813.0}}, "position": {"x": 1664.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7707, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120597, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1803.0}, "se": {"x": 1673.0, "y": 1813.0}, "sw": {"x": 1683.0, "y": 1803.0}, "nw": {"x": 1683.0, "y": 1813.0}}, "position": {"x": 1678.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7794, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120598, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1803.0}, "se": {"x": 1687.0, "y": 1813.0}, "sw": {"x": 1697.0, "y": 1803.0}, "nw": {"x": 1697.0, "y": 1813.0}}, "position": {"x": 1692.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7881, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120599, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1803.0}, "se": {"x": 1701.0, "y": 1813.0}, "sw": {"x": 1711.0, "y": 1803.0}, "nw": {"x": 1711.0, "y": 1813.0}}, "position": {"x": 1706.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7968, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120600, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1803.0}, "se": {"x": 1715.0, "y": 1813.0}, "sw": {"x": 1725.0, "y": 1803.0}, "nw": {"x": 1725.0, "y": 1813.0}}, "position": {"x": 1720.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7979, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120601, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1803.0}, "se": {"x": 1729.0, "y": 1813.0}, "sw": {"x": 1739.0, "y": 1803.0}, "nw": {"x": 1739.0, "y": 1813.0}}, "position": {"x": 1734.0, "y": 1808.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 7\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7990, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "7\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00007\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120603, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1817.0}, "se": {"x": 1547.0, "y": 1827.0}, "sw": {"x": 1557.0, "y": 1817.0}, "nw": {"x": 1557.0, "y": 1827.0}}, "position": {"x": 1552.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7446, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120604, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1817.0}, "se": {"x": 1561.0, "y": 1827.0}, "sw": {"x": 1571.0, "y": 1817.0}, "nw": {"x": 1571.0, "y": 1827.0}}, "position": {"x": 1566.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7462, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120605, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1817.0}, "se": {"x": 1575.0, "y": 1827.0}, "sw": {"x": 1585.0, "y": 1817.0}, "nw": {"x": 1585.0, "y": 1827.0}}, "position": {"x": 1580.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7478, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120606, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1817.0}, "se": {"x": 1589.0, "y": 1827.0}, "sw": {"x": 1599.0, "y": 1817.0}, "nw": {"x": 1599.0, "y": 1827.0}}, "position": {"x": 1594.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7494, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120607, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1817.0}, "se": {"x": 1603.0, "y": 1827.0}, "sw": {"x": 1613.0, "y": 1817.0}, "nw": {"x": 1613.0, "y": 1827.0}}, "position": {"x": 1608.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7510, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120608, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1817.0}, "se": {"x": 1617.0, "y": 1827.0}, "sw": {"x": 1627.0, "y": 1817.0}, "nw": {"x": 1627.0, "y": 1827.0}}, "position": {"x": 1622.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7525, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120609, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1817.0}, "se": {"x": 1631.0, "y": 1827.0}, "sw": {"x": 1641.0, "y": 1817.0}, "nw": {"x": 1641.0, "y": 1827.0}}, "position": {"x": 1636.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7538, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120610, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1817.0}, "se": {"x": 1645.0, "y": 1827.0}, "sw": {"x": 1655.0, "y": 1817.0}, "nw": {"x": 1655.0, "y": 1827.0}}, "position": {"x": 1650.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7622, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120611, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1817.0}, "se": {"x": 1659.0, "y": 1827.0}, "sw": {"x": 1669.0, "y": 1817.0}, "nw": {"x": 1669.0, "y": 1827.0}}, "position": {"x": 1664.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7706, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120612, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1817.0}, "se": {"x": 1673.0, "y": 1827.0}, "sw": {"x": 1683.0, "y": 1817.0}, "nw": {"x": 1683.0, "y": 1827.0}}, "position": {"x": 1678.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7793, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120613, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1817.0}, "se": {"x": 1687.0, "y": 1827.0}, "sw": {"x": 1697.0, "y": 1817.0}, "nw": {"x": 1697.0, "y": 1827.0}}, "position": {"x": 1692.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7880, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120614, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1817.0}, "se": {"x": 1701.0, "y": 1827.0}, "sw": {"x": 1711.0, "y": 1817.0}, "nw": {"x": 1711.0, "y": 1827.0}}, "position": {"x": 1706.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7967, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120615, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1817.0}, "se": {"x": 1715.0, "y": 1827.0}, "sw": {"x": 1725.0, "y": 1817.0}, "nw": {"x": 1725.0, "y": 1827.0}}, "position": {"x": 1720.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7978, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120616, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1817.0}, "se": {"x": 1729.0, "y": 1827.0}, "sw": {"x": 1739.0, "y": 1817.0}, "nw": {"x": 1739.0, "y": 1827.0}}, "position": {"x": 1734.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7989, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120617, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1817.0}, "se": {"x": 1743.0, "y": 1827.0}, "sw": {"x": 1753.0, "y": 1817.0}, "nw": {"x": 1753.0, "y": 1827.0}}, "position": {"x": 1748.0, "y": 1822.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 8\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7999, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "8\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00008\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120619, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1831.0}, "se": {"x": 1547.0, "y": 1841.0}, "sw": {"x": 1557.0, "y": 1831.0}, "nw": {"x": 1557.0, "y": 1841.0}}, "position": {"x": 1552.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7445, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120620, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1831.0}, "se": {"x": 1561.0, "y": 1841.0}, "sw": {"x": 1571.0, "y": 1831.0}, "nw": {"x": 1571.0, "y": 1841.0}}, "position": {"x": 1566.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7461, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120621, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1831.0}, "se": {"x": 1575.0, "y": 1841.0}, "sw": {"x": 1585.0, "y": 1831.0}, "nw": {"x": 1585.0, "y": 1841.0}}, "position": {"x": 1580.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7477, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120622, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1831.0}, "se": {"x": 1589.0, "y": 1841.0}, "sw": {"x": 1599.0, "y": 1831.0}, "nw": {"x": 1599.0, "y": 1841.0}}, "position": {"x": 1594.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7493, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120623, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1831.0}, "se": {"x": 1603.0, "y": 1841.0}, "sw": {"x": 1613.0, "y": 1831.0}, "nw": {"x": 1613.0, "y": 1841.0}}, "position": {"x": 1608.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7509, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120624, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1831.0}, "se": {"x": 1617.0, "y": 1841.0}, "sw": {"x": 1627.0, "y": 1831.0}, "nw": {"x": 1627.0, "y": 1841.0}}, "position": {"x": 1622.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7524, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120625, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1831.0}, "se": {"x": 1631.0, "y": 1841.0}, "sw": {"x": 1641.0, "y": 1831.0}, "nw": {"x": 1641.0, "y": 1841.0}}, "position": {"x": 1636.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7537, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120626, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1831.0}, "se": {"x": 1645.0, "y": 1841.0}, "sw": {"x": 1655.0, "y": 1831.0}, "nw": {"x": 1655.0, "y": 1841.0}}, "position": {"x": 1650.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7621, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120627, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1831.0}, "se": {"x": 1659.0, "y": 1841.0}, "sw": {"x": 1669.0, "y": 1831.0}, "nw": {"x": 1669.0, "y": 1841.0}}, "position": {"x": 1664.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7705, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120628, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1831.0}, "se": {"x": 1673.0, "y": 1841.0}, "sw": {"x": 1683.0, "y": 1831.0}, "nw": {"x": 1683.0, "y": 1841.0}}, "position": {"x": 1678.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7792, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120629, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1831.0}, "se": {"x": 1687.0, "y": 1841.0}, "sw": {"x": 1697.0, "y": 1831.0}, "nw": {"x": 1697.0, "y": 1841.0}}, "position": {"x": 1692.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7879, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120630, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1831.0}, "se": {"x": 1701.0, "y": 1841.0}, "sw": {"x": 1711.0, "y": 1831.0}, "nw": {"x": 1711.0, "y": 1841.0}}, "position": {"x": 1706.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7966, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120631, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1831.0}, "se": {"x": 1715.0, "y": 1841.0}, "sw": {"x": 1725.0, "y": 1831.0}, "nw": {"x": 1725.0, "y": 1841.0}}, "position": {"x": 1720.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7977, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120632, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1831.0}, "se": {"x": 1729.0, "y": 1841.0}, "sw": {"x": 1739.0, "y": 1831.0}, "nw": {"x": 1739.0, "y": 1841.0}}, "position": {"x": 1734.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7988, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120633, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1831.0}, "se": {"x": 1743.0, "y": 1841.0}, "sw": {"x": 1753.0, "y": 1831.0}, "nw": {"x": 1753.0, "y": 1841.0}}, "position": {"x": 1748.0, "y": 1836.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 9\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7998, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "9\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00009\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120636, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1845.0}, "se": {"x": 1547.0, "y": 1855.0}, "sw": {"x": 1557.0, "y": 1845.0}, "nw": {"x": 1557.0, "y": 1855.0}}, "position": {"x": 1552.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7444, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120637, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1845.0}, "se": {"x": 1561.0, "y": 1855.0}, "sw": {"x": 1571.0, "y": 1845.0}, "nw": {"x": 1571.0, "y": 1855.0}}, "position": {"x": 1566.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7460, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120638, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1845.0}, "se": {"x": 1575.0, "y": 1855.0}, "sw": {"x": 1585.0, "y": 1845.0}, "nw": {"x": 1585.0, "y": 1855.0}}, "position": {"x": 1580.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7476, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120639, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1845.0}, "se": {"x": 1589.0, "y": 1855.0}, "sw": {"x": 1599.0, "y": 1845.0}, "nw": {"x": 1599.0, "y": 1855.0}}, "position": {"x": 1594.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7492, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120640, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1845.0}, "se": {"x": 1603.0, "y": 1855.0}, "sw": {"x": 1613.0, "y": 1845.0}, "nw": {"x": 1613.0, "y": 1855.0}}, "position": {"x": 1608.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7508, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120641, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1845.0}, "se": {"x": 1617.0, "y": 1855.0}, "sw": {"x": 1627.0, "y": 1845.0}, "nw": {"x": 1627.0, "y": 1855.0}}, "position": {"x": 1622.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7523, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120642, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1845.0}, "se": {"x": 1631.0, "y": 1855.0}, "sw": {"x": 1641.0, "y": 1845.0}, "nw": {"x": 1641.0, "y": 1855.0}}, "position": {"x": 1636.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7536, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120643, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1845.0}, "se": {"x": 1645.0, "y": 1855.0}, "sw": {"x": 1655.0, "y": 1845.0}, "nw": {"x": 1655.0, "y": 1855.0}}, "position": {"x": 1650.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7620, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120644, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1845.0}, "se": {"x": 1659.0, "y": 1855.0}, "sw": {"x": 1669.0, "y": 1845.0}, "nw": {"x": 1669.0, "y": 1855.0}}, "position": {"x": 1664.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7704, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120645, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1845.0}, "se": {"x": 1673.0, "y": 1855.0}, "sw": {"x": 1683.0, "y": 1845.0}, "nw": {"x": 1683.0, "y": 1855.0}}, "position": {"x": 1678.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7791, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120646, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1845.0}, "se": {"x": 1687.0, "y": 1855.0}, "sw": {"x": 1697.0, "y": 1845.0}, "nw": {"x": 1697.0, "y": 1855.0}}, "position": {"x": 1692.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7878, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120647, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1845.0}, "se": {"x": 1701.0, "y": 1855.0}, "sw": {"x": 1711.0, "y": 1845.0}, "nw": {"x": 1711.0, "y": 1855.0}}, "position": {"x": 1706.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7965, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120648, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1845.0}, "se": {"x": 1715.0, "y": 1855.0}, "sw": {"x": 1725.0, "y": 1845.0}, "nw": {"x": 1725.0, "y": 1855.0}}, "position": {"x": 1720.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7976, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120649, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1845.0}, "se": {"x": 1729.0, "y": 1855.0}, "sw": {"x": 1739.0, "y": 1845.0}, "nw": {"x": 1739.0, "y": 1855.0}}, "position": {"x": 1734.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7987, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120650, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1845.0}, "se": {"x": 1743.0, "y": 1855.0}, "sw": {"x": 1753.0, "y": 1845.0}, "nw": {"x": 1753.0, "y": 1855.0}}, "position": {"x": 1748.0, "y": 1850.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 10\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7997, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "10\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00010\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120654, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1859.0}, "se": {"x": 1547.0, "y": 1869.0}, "sw": {"x": 1557.0, "y": 1859.0}, "nw": {"x": 1557.0, "y": 1869.0}}, "position": {"x": 1552.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7443, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120655, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1859.0}, "se": {"x": 1561.0, "y": 1869.0}, "sw": {"x": 1571.0, "y": 1859.0}, "nw": {"x": 1571.0, "y": 1869.0}}, "position": {"x": 1566.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7459, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120656, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1859.0}, "se": {"x": 1575.0, "y": 1869.0}, "sw": {"x": 1585.0, "y": 1859.0}, "nw": {"x": 1585.0, "y": 1869.0}}, "position": {"x": 1580.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7475, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120657, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1859.0}, "se": {"x": 1589.0, "y": 1869.0}, "sw": {"x": 1599.0, "y": 1859.0}, "nw": {"x": 1599.0, "y": 1869.0}}, "position": {"x": 1594.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7491, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120658, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1859.0}, "se": {"x": 1603.0, "y": 1869.0}, "sw": {"x": 1613.0, "y": 1859.0}, "nw": {"x": 1613.0, "y": 1869.0}}, "position": {"x": 1608.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7507, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120659, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1859.0}, "se": {"x": 1617.0, "y": 1869.0}, "sw": {"x": 1627.0, "y": 1859.0}, "nw": {"x": 1627.0, "y": 1869.0}}, "position": {"x": 1622.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7522, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120660, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1859.0}, "se": {"x": 1631.0, "y": 1869.0}, "sw": {"x": 1641.0, "y": 1859.0}, "nw": {"x": 1641.0, "y": 1869.0}}, "position": {"x": 1636.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7535, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120661, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1859.0}, "se": {"x": 1645.0, "y": 1869.0}, "sw": {"x": 1655.0, "y": 1859.0}, "nw": {"x": 1655.0, "y": 1869.0}}, "position": {"x": 1650.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7619, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120662, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1859.0}, "se": {"x": 1659.0, "y": 1869.0}, "sw": {"x": 1669.0, "y": 1859.0}, "nw": {"x": 1669.0, "y": 1869.0}}, "position": {"x": 1664.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7703, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120663, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1859.0}, "se": {"x": 1673.0, "y": 1869.0}, "sw": {"x": 1683.0, "y": 1859.0}, "nw": {"x": 1683.0, "y": 1869.0}}, "position": {"x": 1678.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7790, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120664, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1859.0}, "se": {"x": 1687.0, "y": 1869.0}, "sw": {"x": 1697.0, "y": 1859.0}, "nw": {"x": 1697.0, "y": 1869.0}}, "position": {"x": 1692.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7877, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120665, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1859.0}, "se": {"x": 1701.0, "y": 1869.0}, "sw": {"x": 1711.0, "y": 1859.0}, "nw": {"x": 1711.0, "y": 1869.0}}, "position": {"x": 1706.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7964, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120666, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1859.0}, "se": {"x": 1715.0, "y": 1869.0}, "sw": {"x": 1725.0, "y": 1859.0}, "nw": {"x": 1725.0, "y": 1869.0}}, "position": {"x": 1720.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7975, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120667, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1859.0}, "se": {"x": 1729.0, "y": 1869.0}, "sw": {"x": 1739.0, "y": 1859.0}, "nw": {"x": 1739.0, "y": 1869.0}}, "position": {"x": 1734.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7986, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120668, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1859.0}, "se": {"x": 1743.0, "y": 1869.0}, "sw": {"x": 1753.0, "y": 1859.0}, "nw": {"x": 1753.0, "y": 1869.0}}, "position": {"x": 1748.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7996, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120669, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1859.0}, "se": {"x": 1757.0, "y": 1869.0}, "sw": {"x": 1767.0, "y": 1859.0}, "nw": {"x": 1767.0, "y": 1869.0}}, "position": {"x": 1762.0, "y": 1864.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 11\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8005, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "11\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00011\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120673, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1873.0}, "se": {"x": 1547.0, "y": 1883.0}, "sw": {"x": 1557.0, "y": 1873.0}, "nw": {"x": 1557.0, "y": 1883.0}}, "position": {"x": 1552.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7442, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120674, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1873.0}, "se": {"x": 1561.0, "y": 1883.0}, "sw": {"x": 1571.0, "y": 1873.0}, "nw": {"x": 1571.0, "y": 1883.0}}, "position": {"x": 1566.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7458, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120675, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1873.0}, "se": {"x": 1575.0, "y": 1883.0}, "sw": {"x": 1585.0, "y": 1873.0}, "nw": {"x": 1585.0, "y": 1883.0}}, "position": {"x": 1580.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7474, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120676, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1873.0}, "se": {"x": 1589.0, "y": 1883.0}, "sw": {"x": 1599.0, "y": 1873.0}, "nw": {"x": 1599.0, "y": 1883.0}}, "position": {"x": 1594.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7490, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120677, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1873.0}, "se": {"x": 1603.0, "y": 1883.0}, "sw": {"x": 1613.0, "y": 1873.0}, "nw": {"x": 1613.0, "y": 1883.0}}, "position": {"x": 1608.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7506, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120678, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1873.0}, "se": {"x": 1617.0, "y": 1883.0}, "sw": {"x": 1627.0, "y": 1873.0}, "nw": {"x": 1627.0, "y": 1883.0}}, "position": {"x": 1622.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7521, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120679, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1873.0}, "se": {"x": 1631.0, "y": 1883.0}, "sw": {"x": 1641.0, "y": 1873.0}, "nw": {"x": 1641.0, "y": 1883.0}}, "position": {"x": 1636.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7534, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120680, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1873.0}, "se": {"x": 1645.0, "y": 1883.0}, "sw": {"x": 1655.0, "y": 1873.0}, "nw": {"x": 1655.0, "y": 1883.0}}, "position": {"x": 1650.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7618, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120681, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1873.0}, "se": {"x": 1659.0, "y": 1883.0}, "sw": {"x": 1669.0, "y": 1873.0}, "nw": {"x": 1669.0, "y": 1883.0}}, "position": {"x": 1664.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7702, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120682, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1873.0}, "se": {"x": 1673.0, "y": 1883.0}, "sw": {"x": 1683.0, "y": 1873.0}, "nw": {"x": 1683.0, "y": 1883.0}}, "position": {"x": 1678.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7789, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120683, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1873.0}, "se": {"x": 1687.0, "y": 1883.0}, "sw": {"x": 1697.0, "y": 1873.0}, "nw": {"x": 1697.0, "y": 1883.0}}, "position": {"x": 1692.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7876, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120684, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1873.0}, "se": {"x": 1701.0, "y": 1883.0}, "sw": {"x": 1711.0, "y": 1873.0}, "nw": {"x": 1711.0, "y": 1883.0}}, "position": {"x": 1706.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7963, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120685, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1873.0}, "se": {"x": 1715.0, "y": 1883.0}, "sw": {"x": 1725.0, "y": 1873.0}, "nw": {"x": 1725.0, "y": 1883.0}}, "position": {"x": 1720.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7974, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120686, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1873.0}, "se": {"x": 1729.0, "y": 1883.0}, "sw": {"x": 1739.0, "y": 1873.0}, "nw": {"x": 1739.0, "y": 1883.0}}, "position": {"x": 1734.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7985, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120687, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1873.0}, "se": {"x": 1743.0, "y": 1883.0}, "sw": {"x": 1753.0, "y": 1873.0}, "nw": {"x": 1753.0, "y": 1883.0}}, "position": {"x": 1748.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7995, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120688, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1873.0}, "se": {"x": 1757.0, "y": 1883.0}, "sw": {"x": 1767.0, "y": 1873.0}, "nw": {"x": 1767.0, "y": 1883.0}}, "position": {"x": 1762.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8004, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120689, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1873.0}, "se": {"x": 1785.0, "y": 1883.0}, "sw": {"x": 1795.0, "y": 1873.0}, "nw": {"x": 1795.0, "y": 1883.0}}, "position": {"x": 1790.0, "y": 1878.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 12\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8011, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "12\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00012\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120698, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1887.0}, "se": {"x": 1547.0, "y": 1897.0}, "sw": {"x": 1557.0, "y": 1887.0}, "nw": {"x": 1557.0, "y": 1897.0}}, "position": {"x": 1552.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7441, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120699, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1887.0}, "se": {"x": 1561.0, "y": 1897.0}, "sw": {"x": 1571.0, "y": 1887.0}, "nw": {"x": 1571.0, "y": 1897.0}}, "position": {"x": 1566.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7457, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120700, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1887.0}, "se": {"x": 1575.0, "y": 1897.0}, "sw": {"x": 1585.0, "y": 1887.0}, "nw": {"x": 1585.0, "y": 1897.0}}, "position": {"x": 1580.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7473, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120701, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1887.0}, "se": {"x": 1589.0, "y": 1897.0}, "sw": {"x": 1599.0, "y": 1887.0}, "nw": {"x": 1599.0, "y": 1897.0}}, "position": {"x": 1594.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7489, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120702, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1887.0}, "se": {"x": 1603.0, "y": 1897.0}, "sw": {"x": 1613.0, "y": 1887.0}, "nw": {"x": 1613.0, "y": 1897.0}}, "position": {"x": 1608.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7505, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120703, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1887.0}, "se": {"x": 1617.0, "y": 1897.0}, "sw": {"x": 1627.0, "y": 1887.0}, "nw": {"x": 1627.0, "y": 1897.0}}, "position": {"x": 1622.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7520, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120704, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1887.0}, "se": {"x": 1631.0, "y": 1897.0}, "sw": {"x": 1641.0, "y": 1887.0}, "nw": {"x": 1641.0, "y": 1897.0}}, "position": {"x": 1636.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7533, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120705, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1887.0}, "se": {"x": 1645.0, "y": 1897.0}, "sw": {"x": 1655.0, "y": 1887.0}, "nw": {"x": 1655.0, "y": 1897.0}}, "position": {"x": 1650.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7617, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120706, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1887.0}, "se": {"x": 1659.0, "y": 1897.0}, "sw": {"x": 1669.0, "y": 1887.0}, "nw": {"x": 1669.0, "y": 1897.0}}, "position": {"x": 1664.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7701, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120707, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1887.0}, "se": {"x": 1673.0, "y": 1897.0}, "sw": {"x": 1683.0, "y": 1887.0}, "nw": {"x": 1683.0, "y": 1897.0}}, "position": {"x": 1678.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7788, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120708, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1887.0}, "se": {"x": 1687.0, "y": 1897.0}, "sw": {"x": 1697.0, "y": 1887.0}, "nw": {"x": 1697.0, "y": 1897.0}}, "position": {"x": 1692.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7875, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120709, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1887.0}, "se": {"x": 1701.0, "y": 1897.0}, "sw": {"x": 1711.0, "y": 1887.0}, "nw": {"x": 1711.0, "y": 1897.0}}, "position": {"x": 1706.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7962, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120710, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1887.0}, "se": {"x": 1715.0, "y": 1897.0}, "sw": {"x": 1725.0, "y": 1887.0}, "nw": {"x": 1725.0, "y": 1897.0}}, "position": {"x": 1720.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7973, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120711, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1887.0}, "se": {"x": 1729.0, "y": 1897.0}, "sw": {"x": 1739.0, "y": 1887.0}, "nw": {"x": 1739.0, "y": 1897.0}}, "position": {"x": 1734.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7984, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120712, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1887.0}, "se": {"x": 1743.0, "y": 1897.0}, "sw": {"x": 1753.0, "y": 1887.0}, "nw": {"x": 1753.0, "y": 1897.0}}, "position": {"x": 1748.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7994, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120713, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1887.0}, "se": {"x": 1757.0, "y": 1897.0}, "sw": {"x": 1767.0, "y": 1887.0}, "nw": {"x": 1767.0, "y": 1897.0}}, "position": {"x": 1762.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8003, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120714, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1887.0}, "se": {"x": 1785.0, "y": 1897.0}, "sw": {"x": 1795.0, "y": 1887.0}, "nw": {"x": 1795.0, "y": 1897.0}}, "position": {"x": 1790.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8010, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120724, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1901.0}, "se": {"x": 1547.0, "y": 1911.0}, "sw": {"x": 1557.0, "y": 1901.0}, "nw": {"x": 1557.0, "y": 1911.0}}, "position": {"x": 1552.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7440, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120725, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1901.0}, "se": {"x": 1561.0, "y": 1911.0}, "sw": {"x": 1571.0, "y": 1901.0}, "nw": {"x": 1571.0, "y": 1911.0}}, "position": {"x": 1566.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7456, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120726, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1901.0}, "se": {"x": 1575.0, "y": 1911.0}, "sw": {"x": 1585.0, "y": 1901.0}, "nw": {"x": 1585.0, "y": 1911.0}}, "position": {"x": 1580.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7472, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120727, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1901.0}, "se": {"x": 1589.0, "y": 1911.0}, "sw": {"x": 1599.0, "y": 1901.0}, "nw": {"x": 1599.0, "y": 1911.0}}, "position": {"x": 1594.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7488, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120728, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1901.0}, "se": {"x": 1603.0, "y": 1911.0}, "sw": {"x": 1613.0, "y": 1901.0}, "nw": {"x": 1613.0, "y": 1911.0}}, "position": {"x": 1608.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7504, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120729, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1901.0}, "se": {"x": 1617.0, "y": 1911.0}, "sw": {"x": 1627.0, "y": 1901.0}, "nw": {"x": 1627.0, "y": 1911.0}}, "position": {"x": 1622.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7519, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120730, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1901.0}, "se": {"x": 1631.0, "y": 1911.0}, "sw": {"x": 1641.0, "y": 1901.0}, "nw": {"x": 1641.0, "y": 1911.0}}, "position": {"x": 1636.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7532, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120731, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1901.0}, "se": {"x": 1645.0, "y": 1911.0}, "sw": {"x": 1655.0, "y": 1901.0}, "nw": {"x": 1655.0, "y": 1911.0}}, "position": {"x": 1650.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7616, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120732, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1901.0}, "se": {"x": 1659.0, "y": 1911.0}, "sw": {"x": 1669.0, "y": 1901.0}, "nw": {"x": 1669.0, "y": 1911.0}}, "position": {"x": 1664.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7700, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120733, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1901.0}, "se": {"x": 1673.0, "y": 1911.0}, "sw": {"x": 1683.0, "y": 1901.0}, "nw": {"x": 1683.0, "y": 1911.0}}, "position": {"x": 1678.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7787, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120734, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1901.0}, "se": {"x": 1687.0, "y": 1911.0}, "sw": {"x": 1697.0, "y": 1901.0}, "nw": {"x": 1697.0, "y": 1911.0}}, "position": {"x": 1692.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7874, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120735, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1901.0}, "se": {"x": 1701.0, "y": 1911.0}, "sw": {"x": 1711.0, "y": 1901.0}, "nw": {"x": 1711.0, "y": 1911.0}}, "position": {"x": 1706.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7961, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120736, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1901.0}, "se": {"x": 1715.0, "y": 1911.0}, "sw": {"x": 1725.0, "y": 1901.0}, "nw": {"x": 1725.0, "y": 1911.0}}, "position": {"x": 1720.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7972, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120737, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1901.0}, "se": {"x": 1729.0, "y": 1911.0}, "sw": {"x": 1739.0, "y": 1901.0}, "nw": {"x": 1739.0, "y": 1911.0}}, "position": {"x": 1734.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7983, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120738, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1901.0}, "se": {"x": 1743.0, "y": 1911.0}, "sw": {"x": 1753.0, "y": 1901.0}, "nw": {"x": 1753.0, "y": 1911.0}}, "position": {"x": 1748.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7993, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120739, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1901.0}, "se": {"x": 1757.0, "y": 1911.0}, "sw": {"x": 1767.0, "y": 1901.0}, "nw": {"x": 1767.0, "y": 1911.0}}, "position": {"x": 1762.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8002, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120740, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1901.0}, "se": {"x": 1785.0, "y": 1911.0}, "sw": {"x": 1795.0, "y": 1901.0}, "nw": {"x": 1795.0, "y": 1911.0}}, "position": {"x": 1790.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8009, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120751, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1915.0}, "se": {"x": 1547.0, "y": 1925.0}, "sw": {"x": 1557.0, "y": 1915.0}, "nw": {"x": 1557.0, "y": 1925.0}}, "position": {"x": 1552.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7439, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120752, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1915.0}, "se": {"x": 1561.0, "y": 1925.0}, "sw": {"x": 1571.0, "y": 1915.0}, "nw": {"x": 1571.0, "y": 1925.0}}, "position": {"x": 1566.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7455, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120753, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1915.0}, "se": {"x": 1575.0, "y": 1925.0}, "sw": {"x": 1585.0, "y": 1915.0}, "nw": {"x": 1585.0, "y": 1925.0}}, "position": {"x": 1580.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7471, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120754, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1915.0}, "se": {"x": 1589.0, "y": 1925.0}, "sw": {"x": 1599.0, "y": 1915.0}, "nw": {"x": 1599.0, "y": 1925.0}}, "position": {"x": 1594.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7487, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120755, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1915.0}, "se": {"x": 1603.0, "y": 1925.0}, "sw": {"x": 1613.0, "y": 1915.0}, "nw": {"x": 1613.0, "y": 1925.0}}, "position": {"x": 1608.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7503, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120756, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1915.0}, "se": {"x": 1617.0, "y": 1925.0}, "sw": {"x": 1627.0, "y": 1915.0}, "nw": {"x": 1627.0, "y": 1925.0}}, "position": {"x": 1622.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7518, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120757, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1915.0}, "se": {"x": 1631.0, "y": 1925.0}, "sw": {"x": 1641.0, "y": 1915.0}, "nw": {"x": 1641.0, "y": 1925.0}}, "position": {"x": 1636.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7531, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120758, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1915.0}, "se": {"x": 1645.0, "y": 1925.0}, "sw": {"x": 1655.0, "y": 1915.0}, "nw": {"x": 1655.0, "y": 1925.0}}, "position": {"x": 1650.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7615, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120759, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1915.0}, "se": {"x": 1659.0, "y": 1925.0}, "sw": {"x": 1669.0, "y": 1915.0}, "nw": {"x": 1669.0, "y": 1925.0}}, "position": {"x": 1664.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7699, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120760, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1915.0}, "se": {"x": 1673.0, "y": 1925.0}, "sw": {"x": 1683.0, "y": 1915.0}, "nw": {"x": 1683.0, "y": 1925.0}}, "position": {"x": 1678.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7786, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120761, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1915.0}, "se": {"x": 1687.0, "y": 1925.0}, "sw": {"x": 1697.0, "y": 1915.0}, "nw": {"x": 1697.0, "y": 1925.0}}, "position": {"x": 1692.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7873, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120762, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1915.0}, "se": {"x": 1701.0, "y": 1925.0}, "sw": {"x": 1711.0, "y": 1915.0}, "nw": {"x": 1711.0, "y": 1925.0}}, "position": {"x": 1706.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7960, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120763, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1915.0}, "se": {"x": 1715.0, "y": 1925.0}, "sw": {"x": 1725.0, "y": 1915.0}, "nw": {"x": 1725.0, "y": 1925.0}}, "position": {"x": 1720.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7971, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120764, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1915.0}, "se": {"x": 1729.0, "y": 1925.0}, "sw": {"x": 1739.0, "y": 1915.0}, "nw": {"x": 1739.0, "y": 1925.0}}, "position": {"x": 1734.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7982, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120765, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1915.0}, "se": {"x": 1743.0, "y": 1925.0}, "sw": {"x": 1753.0, "y": 1915.0}, "nw": {"x": 1753.0, "y": 1925.0}}, "position": {"x": 1748.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7992, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120766, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1915.0}, "se": {"x": 1757.0, "y": 1925.0}, "sw": {"x": 1767.0, "y": 1915.0}, "nw": {"x": 1767.0, "y": 1925.0}}, "position": {"x": 1762.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8001, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120767, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1915.0}, "se": {"x": 1785.0, "y": 1925.0}, "sw": {"x": 1795.0, "y": 1915.0}, "nw": {"x": 1795.0, "y": 1925.0}}, "position": {"x": 1790.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8008, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120780, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1547.0, "y": 1929.0}, "se": {"x": 1547.0, "y": 1939.0}, "sw": {"x": 1557.0, "y": 1929.0}, "nw": {"x": 1557.0, "y": 1939.0}}, "position": {"x": 1552.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 1\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158092, "gate": "", "blockId": null, "orderNum": 7438, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "1\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400001\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120781, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1561.0, "y": 1929.0}, "se": {"x": 1561.0, "y": 1939.0}, "sw": {"x": 1571.0, "y": 1929.0}, "nw": {"x": 1571.0, "y": 1939.0}}, "position": {"x": 1566.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 2\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158093, "gate": "", "blockId": null, "orderNum": 7454, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "2\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400002\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120782, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1575.0, "y": 1929.0}, "se": {"x": 1575.0, "y": 1939.0}, "sw": {"x": 1585.0, "y": 1929.0}, "nw": {"x": 1585.0, "y": 1939.0}}, "position": {"x": 1580.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 3\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158094, "gate": "", "blockId": null, "orderNum": 7470, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "3\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400003\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120783, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1589.0, "y": 1929.0}, "se": {"x": 1589.0, "y": 1939.0}, "sw": {"x": 1599.0, "y": 1929.0}, "nw": {"x": 1599.0, "y": 1939.0}}, "position": {"x": 1594.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 4\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158095, "gate": "", "blockId": null, "orderNum": 7486, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "4\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400004\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120784, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1603.0, "y": 1929.0}, "se": {"x": 1603.0, "y": 1939.0}, "sw": {"x": 1613.0, "y": 1929.0}, "nw": {"x": 1613.0, "y": 1939.0}}, "position": {"x": 1608.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 5\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158096, "gate": "", "blockId": null, "orderNum": 7502, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "5\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400005\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120785, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1617.0, "y": 1929.0}, "se": {"x": 1617.0, "y": 1939.0}, "sw": {"x": 1627.0, "y": 1929.0}, "nw": {"x": 1627.0, "y": 1939.0}}, "position": {"x": 1622.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 6\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158097, "gate": "", "blockId": null, "orderNum": 7517, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "6\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400006\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120786, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1631.0, "y": 1929.0}, "se": {"x": 1631.0, "y": 1939.0}, "sw": {"x": 1641.0, "y": 1929.0}, "nw": {"x": 1641.0, "y": 1939.0}}, "position": {"x": 1636.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 7\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158098, "gate": "", "blockId": null, "orderNum": 7530, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "7\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400007\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120787, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1645.0, "y": 1929.0}, "se": {"x": 1645.0, "y": 1939.0}, "sw": {"x": 1655.0, "y": 1929.0}, "nw": {"x": 1655.0, "y": 1939.0}}, "position": {"x": 1650.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 8\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158099, "gate": "", "blockId": null, "orderNum": 7614, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "8\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400008\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120788, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1659.0, "y": 1929.0}, "se": {"x": 1659.0, "y": 1939.0}, "sw": {"x": 1669.0, "y": 1929.0}, "nw": {"x": 1669.0, "y": 1939.0}}, "position": {"x": 1664.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 9\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158100, "gate": "", "blockId": null, "orderNum": 7698, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "9\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400009\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120789, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1673.0, "y": 1929.0}, "se": {"x": 1673.0, "y": 1939.0}, "sw": {"x": 1683.0, "y": 1929.0}, "nw": {"x": 1683.0, "y": 1939.0}}, "position": {"x": 1678.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 10\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158101, "gate": "", "blockId": null, "orderNum": 7785, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "10\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400010\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120790, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1687.0, "y": 1929.0}, "se": {"x": 1687.0, "y": 1939.0}, "sw": {"x": 1697.0, "y": 1929.0}, "nw": {"x": 1697.0, "y": 1939.0}}, "position": {"x": 1692.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 11\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158102, "gate": "", "blockId": null, "orderNum": 7872, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "11\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400011\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120791, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1701.0, "y": 1929.0}, "se": {"x": 1701.0, "y": 1939.0}, "sw": {"x": 1711.0, "y": 1929.0}, "nw": {"x": 1711.0, "y": 1939.0}}, "position": {"x": 1706.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 12\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158103, "gate": "", "blockId": null, "orderNum": 7959, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "12\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400012\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120792, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1715.0, "y": 1929.0}, "se": {"x": 1715.0, "y": 1939.0}, "sw": {"x": 1725.0, "y": 1929.0}, "nw": {"x": 1725.0, "y": 1939.0}}, "position": {"x": 1720.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 13\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158104, "gate": "", "blockId": null, "orderNum": 7970, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "13\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400013\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120793, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1729.0, "y": 1929.0}, "se": {"x": 1729.0, "y": 1939.0}, "sw": {"x": 1739.0, "y": 1929.0}, "nw": {"x": 1739.0, "y": 1939.0}}, "position": {"x": 1734.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 14\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158105, "gate": "", "blockId": null, "orderNum": 7981, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "14\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400014\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120794, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1743.0, "y": 1929.0}, "se": {"x": 1743.0, "y": 1939.0}, "sw": {"x": 1753.0, "y": 1929.0}, "nw": {"x": 1753.0, "y": 1939.0}}, "position": {"x": 1748.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 15\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158106, "gate": "", "blockId": null, "orderNum": 7991, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "15\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400015\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120795, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1757.0, "y": 1929.0}, "se": {"x": 1757.0, "y": 1939.0}, "sw": {"x": 1767.0, "y": 1929.0}, "nw": {"x": 1767.0, "y": 1939.0}}, "position": {"x": 1762.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 16\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158107, "gate": "", "blockId": null, "orderNum": 8000, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "16\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400016\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120796, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1785.0, "y": 1929.0}, "se": {"x": 1785.0, "y": 1939.0}, "sw": {"x": 1795.0, "y": 1929.0}, "nw": {"x": 1795.0, "y": 1939.0}}, "position": {"x": 1790.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 17\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158108, "gate": "", "blockId": null, "orderNum": 8007, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "17\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400017\ubc88", "area": {"virtualX": 6, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}], "7:7": [{"logicalSeatId": 1537120715, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1887.0}, "se": {"x": 1799.0, "y": 1897.0}, "sw": {"x": 1809.0, "y": 1887.0}, "nw": {"x": 1809.0, "y": 1897.0}}, "position": {"x": 1804.0, "y": 1892.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 13\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8018, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "13\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00013\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120741, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1901.0}, "se": {"x": 1799.0, "y": 1911.0}, "sw": {"x": 1809.0, "y": 1901.0}, "nw": {"x": 1809.0, "y": 1911.0}}, "position": {"x": 1804.0, "y": 1906.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 14\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8017, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "14\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00014\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120768, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1915.0}, "se": {"x": 1799.0, "y": 1925.0}, "sw": {"x": 1809.0, "y": 1915.0}, "nw": {"x": 1809.0, "y": 1925.0}}, "position": {"x": 1804.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8016, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120769, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1813.0, "y": 1915.0}, "se": {"x": 1813.0, "y": 1925.0}, "sw": {"x": 1823.0, "y": 1915.0}, "nw": {"x": 1823.0, "y": 1925.0}}, "position": {"x": 1818.0, "y": 1920.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 15\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158110, "gate": "", "blockId": null, "orderNum": 8023, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "15\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00015\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120797, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1799.0, "y": 1929.0}, "se": {"x": 1799.0, "y": 1939.0}, "sw": {"x": 1809.0, "y": 1929.0}, "nw": {"x": 1809.0, "y": 1939.0}}, "position": {"x": 1804.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 18\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158109, "gate": "", "blockId": null, "orderNum": 8015, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "18\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400018\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120798, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1813.0, "y": 1929.0}, "se": {"x": 1813.0, "y": 1939.0}, "sw": {"x": 1823.0, "y": 1929.0}, "nw": {"x": 1823.0, "y": 1939.0}}, "position": {"x": 1818.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 19\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158110, "gate": "", "blockId": null, "orderNum": 8022, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "19\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400019\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}, {"logicalSeatId": 1537120799, "gradeId": 102833, "allotmentCode": "TKL", "cornerPoints": {"ne": {"x": 1827.0, "y": 1929.0}, "se": {"x": 1827.0, "y": 1939.0}, "sw": {"x": 1837.0, "y": 1929.0}, "nw": {"x": 1837.0, "y": 1939.0}}, "position": {"x": 1832.0, "y": 1934.0}, "rowIdx": -1, "colIdx": -1, "mapInfo": "2\uce35 B\uad6c\uc5ed 16\uc5f4 20\ubc88", "seatCount": 1, "groupId": 0, "linkedId": 49158111, "gate": "", "blockId": null, "orderNum": 8027, "attributes": ["", "", "2\uce35", "B\uad6c\uc5ed", "16\uc5f4", "20\ubc88"], "sortMapInfo": "00002\uce35B\uad6c\uc5ed00016\uc5f400020\ubc88", "area": {"virtualX": 7, "virtualY": 7}, "waitingLinkedId": null, "sectionId": 59711}]} \ No newline at end of file diff --git a/data/chromedriver.exe b/data/chromedriver.exe new file mode 100644 index 0000000000000000000000000000000000000000..35e6425018388754b2171b5dcee80d509546548c GIT binary patch literal 17848832 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�mSC#l%dmHvXO)bLHP6L5 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�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­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

cFoKzfo3bsER{LCUsfQ=Ow=*~Ac-_v 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%0A^U{h;4)s2lRO!OZ%U|3uW2W-tem>(=0^nS%A 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