Skip to content

[Samsung Keyboard] Setting a TextEditingValue doesn't work properly on Galaxy S20 #61097

Description

@njovy

Steps to Reproduce

import 'package:flutter/material.dart';

void main() {
  runApp(MaterialApp(title: 'TextField SamsungKeyboard', home: MyApp()));
}

class MyApp extends StatefulWidget {
  // This widget is the root of your application.
  @override
  _MyAppState createState() => _MyAppState();
}

class _MyAppState extends State<MyApp> {
  TextEditingController controller;

  @override
  void initState() {
    super.initState();
    controller = TextEditingController();
  }

  @override
  void dispose() {
    controller.dispose();
    super.dispose();
  }

  void appendHashtag() {
    final selection = controller.selection;
    final text = controller.text;
    controller.value = TextEditingValue(
      text: "$text#",
      selection: selection.copyWith(
        baseOffset: text.length + 1,
        extentOffset: text.length + 1,
      ),
      composing: TextRange.empty,
    );
  }

  @override
  Widget build(BuildContext context) {
    return Scaffold(
      floatingActionButton: FloatingActionButton(
        child: Icon(Icons.add),
        onPressed: appendHashtag,
      ),
      body: Center(
        child: TextField(
          controller: controller,
          maxLines: 10,
          keyboardType: TextInputType.multiline,
        ),
      ),
    );
  }
}

Above is a minimal code that you can reproduce this bug.

ezgif-1-767fceab6820

  1. Press a floating action button, it appends '#' to a TextField.
  2. Type something. For example, flutter.
  3. Press a floating action button again.
  4. Typing any character will replace the appended '#' letter.
  5. Clear the input and repeating these steps still replaces the appended letter.

This issue only appears with a Samsung Keyboard. The bug doesn't appear with a Gboard and SwiftKey keyboard.
This bug only appears with an initial word only. If you input a spacebar, special character, or new line, works as expected with a Samsung keyboard as well.
I tried multiple approaches to update TextEditingValue but the result was same.

@GaryQian

Expected results:
The letter '#' should be appended.

Actual results:
'#' is replaced upon typing a new letter after setting a TextEditingValue.

Logs
[   +9 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[  +45 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] 8fe7655ed20ffd1395f68e30539a847a01a30351
[        ] executing: [/Users/captainpark/Library/Flutter/sdk/] git tag --contains HEAD
[ +257 ms] Exit code 0 from: git tag --contains HEAD
[   +2 ms] 1.19.0-4.3.pre
[   +9 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git rev-parse --abbrev-ref --symbolic @{u}
[  +13 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] origin/beta
[        ] executing: [/Users/captainpark/Library/Flutter/sdk/] git ls-remote --get-url origin
[  +13 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] https://github.com/flutter/flutter.git
[  +58 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git rev-parse --abbrev-ref HEAD
[  +19 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] beta
[   +5 ms] executing: sw_vers -productName
[  +14 ms] Exit code 0 from: sw_vers -productName
[        ] Mac OS X
[        ] executing: sw_vers -productVersion
[  +17 ms] Exit code 0 from: sw_vers -productVersion
[   +1 ms] 10.15.3
[        ] executing: sw_vers -buildVersion
[  +13 ms] Exit code 0 from: sw_vers -buildVersion
[        ] 19D76
[  +39 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +3 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[  +11 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb devices -l
[   +7 ms] executing: /usr/bin/xcode-select --print-path
[   +7 ms] Exit code 0 from: /usr/bin/xcode-select --print-path
[        ] /Applications/Xcode.app/Contents/Developer
[        ] executing: /usr/bin/xcodebuild -version
[+1089 ms] Exit code 0 from: /usr/bin/xcodebuild -version
[        ] Xcode 11.5
           Build version 11E608c
[   +2 ms] executing: xcrun --find xcdevice
[   +7 ms] Exit code 0 from: xcrun --find xcdevice
[        ] /Applications/Xcode.app/Contents/Developer/usr/bin/xcdevice
[        ] executing: xcrun xcdevice list --timeout 2
[   +3 ms] /usr/bin/xcrun simctl list --json devices
[        ] executing: /usr/bin/xcrun simctl list --json devices
[  +30 ms] List of devices attached
           R3CN40AGS3T            device usb:339738624X product:x1qksx model:SM_G981N device:x1q transport_id:1
[  +94 ms] {
             "devices" : {
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/523CD72C-4CCC-4F7E-914A-33DFC2AAD9EC\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/523CD72C-4CCC-4F7E-914A-33DFC2AAD9EC",
                   "udid" : "523CD72C-4CCC-4F7E-914A-33DFC2AAD9EC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/0C89AB70-9630-452A-BFE0-8F0911BBFAEF\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/0C89AB70-9630-452A-BFE0-8F0911BBFAEF",
                   "udid" : "0C89AB70-9630-452A-BFE0-8F0911BBFAEF",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/76D72E82-0878-4BE7-BF34-D5745FAF3C4A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/76D72E82-0878-4BE7-BF34-D5745FAF3C4A",
                   "udid" : "76D72E82-0878-4BE7-BF34-D5745FAF3C4A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-5-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/415F8EAA-51B6-4623-8AA1-10174036A27E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/415F8EAA-51B6-4623-8AA1-10174036A27E",
                   "udid" : "415F8EAA-51B6-4623-8AA1-10174036A27E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4987EB13-4E53-4E36-B25C-B1C1367AD680\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4987EB13-4E53-4E36-B25C-B1C1367AD680",
                   "udid" : "4987EB13-4E53-4E36-B25C-B1C1367AD680",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D8A35600-B111-4ADC-A0F4-8D768F821047\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D8A35600-B111-4ADC-A0F4-8D768F821047",
                   "udid" : "D8A35600-B111-4ADC-A0F4-8D768F821047",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4589A755-DB1C-4CDA-A12D-1AC022DDC425\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4589A755-DB1C-4CDA-A12D-1AC022DDC425",
                   "udid" : "4589A755-DB1C-4CDA-A12D-1AC022DDC425",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4AB3832D-75A5-4109-AC1B-1794263BB1AC\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4AB3832D-75A5-4109-AC1B-1794263BB1AC",
                   "udid" : "4AB3832D-75A5-4109-AC1B-1794263BB1AC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/10297F9C-BCDC-4352-9B1B-240A670A8712\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/10297F9C-BCDC-4352-9B1B-240A670A8712",
                   "udid" : "10297F9C-BCDC-4352-9B1B-240A670A8712",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-10-3" : [
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/01273B5A-F1FF-43E7-8B59-E62F163AAF24\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/01273B5A-F1FF-43E7-8B59-E62F163AAF24",
                   "udid" : "01273B5A-F1FF-43E7-8B59-E62F163AAF24",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
                   "state" : "Shutdown",
                   "name" : "iPhone 5s"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/A4D2DCCA-2BEF-4056-BA49-D08C9EA2491F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/A4D2DCCA-2BEF-4056-BA49-D08C9EA2491F",
                   "udid" : "A4D2DCCA-2BEF-4056-BA49-D08C9EA2491F",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6 Plus"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/9B7CD30B-41B9-4A8A-9A5E-A3C6E8153FBD\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/9B7CD30B-41B9-4A8A-9A5E-A3C6E8153FBD",
                   "udid" : "9B7CD30B-41B9-4A8A-9A5E-A3C6E8153FBD",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
                   "state" : "Shutdown",
                   "name" : "iPhone 6"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C2430A5E-CF75-4191-BA90-F3A7E2D94E01\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C2430A5E-CF75-4191-BA90-F3A7E2D94E01",
                   "udid" : "C2430A5E-CF75-4191-BA90-F3A7E2D94E01",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AFD1C3C1-6B7C-4C38-9ABE-3AB7F482F69A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AFD1C3C1-6B7C-4C38-9ABE-3AB7F482F69A",
                   "udid" : "AFD1C3C1-6B7C-4C38-9ABE-3AB7F482F69A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s Plus"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D926DAA4-A85F-4FC3-8BF9-915DDF12746F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D926DAA4-A85F-4FC3-8BF9-915DDF12746F",
                   "udid" : "D926DAA4-A85F-4FC3-8BF9-915DDF12746F",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (1st generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F2D139F4-DCA9-413C-B815-5049758195BB\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F2D139F4-DCA9-413C-B815-5049758195BB",
                   "udid" : "F2D139F4-DCA9-413C-B815-5049758195BB",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
                   "state" : "Shutdown",
                   "name" : "iPhone 7"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/16EAFA89-97C1-44CD-97B9-A464FE5C3D71\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/16EAFA89-97C1-44CD-97B9-A464FE5C3D71",
                   "udid" : "16EAFA89-97C1-44CD-97B9-A464FE5C3D71",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 7 Plus"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/032C40BD-9E4F-4E70-A5F2-EA4E0A7A851F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/032C40BD-9E4F-4E70-A5F2-EA4E0A7A851F",
                   "udid" : "032C40BD-9E4F-4E70-A5F2-EA4E0A7A851F",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
                   "state" : "Shutdown",
                   "name" : "iPad Air"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7632E483-BB34-4871-9820-67C1B5A58F58\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7632E483-BB34-4871-9820-67C1B5A58F58",
                   "udid" : "7632E483-BB34-4871-9820-67C1B5A58F58",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
                   "state" : "Shutdown",
                   "name" : "iPad Air 2"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/1AA995E2-1B5D-4555-8A87-6A099B545324\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/1AA995E2-1B5D-4555-8A87-6A099B545324",
                   "udid" : "1AA995E2-1B5D-4555-8A87-6A099B545324",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/39B6B315-012E-4B1B-B7C5-34386074A346\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/39B6B315-012E-4B1B-B7C5-34386074A346",
                   "udid" : "39B6B315-012E-4B1B-B7C5-34386074A346",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/657CD366-EA09-4E3D-90B7-373D1B05878B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/657CD366-EA09-4E3D-90B7-373D1B05878B",
                   "udid" : "657CD366-EA09-4E3D-90B7-373D1B05878B",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (5th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/22CA2B44-B78B-4B64-A65A-4002D3C81112\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/22CA2B44-B78B-4B64-A65A-4002D3C81112",
                   "udid" : "22CA2B44-B78B-4B64-A65A-4002D3C81112",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/789BFDF9-FF0A-482F-9FF8-3218C61263D9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/789BFDF9-FF0A-482F-9FF8-3218C61263D9",
                   "udid" : "789BFDF9-FF0A-482F-9FF8-3218C61263D9",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (10.5-inch)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-1" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/2F7D108E-BD7C-4BD7-8E36-8B55490251AE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/2F7D108E-BD7C-4BD7-8E36-8B55490251AE",
                   "udid" : "2F7D108E-BD7C-4BD7-8E36-8B55490251AE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7B224F57-86AE-4DE5-9B81-039CD591C653\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7B224F57-86AE-4DE5-9B81-039CD591C653",
                   "udid" : "7B224F57-86AE-4DE5-9B81-039CD591C653",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/CC32BBE3-E36C-4877-98BE-6530A328CD07\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/CC32BBE3-E36C-4877-98BE-6530A328CD07",
                   "udid" : "CC32BBE3-E36C-4877-98BE-6530A328CD07",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/67E9CDF3-9F3A-4018-B41C-4A2451C0E1C4\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/67E9CDF3-9F3A-4018-B41C-4A2451C0E1C4",
                   "udid" : "67E9CDF3-9F3A-4018-B41C-4A2451C0E1C4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-5" : [
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7DD7653B-B9FF-4D20-AE2C-0A42EFAA0748\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7DD7653B-B9FF-4D20-AE2C-0A42EFAA0748",
                   "udid" : "7DD7653B-B9FF-4D20-AE2C-0A42EFAA0748",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/2D03AC67-DFCF-4216-BB1A-EF59BE9743DD\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/2D03AC67-DFCF-4216-BB1A-EF59BE9743DD",
                   "udid" : "2D03AC67-DFCF-4216-BB1A-EF59BE9743DD",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/8FBE69E8-770A-4C29-B221-F0D38E6F4128\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/8FBE69E8-770A-4C29-B221-F0D38E6F4128",
                   "udid" : "8FBE69E8-770A-4C29-B221-F0D38E6F4128",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B24538E8-1BA8-4A2A-A30C-A39501816DBE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B24538E8-1BA8-4A2A-A30C-A39501816DBE",
                   "udid" : "B24538E8-1BA8-4A2A-A30C-A39501816DBE",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AA76883E-8DAB-40E0-B022-19DA91E404CA\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AA76883E-8DAB-40E0-B022-19DA91E404CA",
                   "udid" : "AA76883E-8DAB-40E0-B022-19DA91E404CA",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/FA467C79-10D4-4343-A890-4F62C581EB5B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/FA467C79-10D4-4343-A890-4F62C581EB5B",
                   "udid" : "FA467C79-10D4-4343-A890-4F62C581EB5B",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE--2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPhone SE (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/0D75F64A-6421-497E-9FBD-A2B861995458\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/0D75F64A-6421-497E-9FBD-A2B861995458",
                   "udid" : "0D75F64A-6421-497E-9FBD-A2B861995458",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/9B3212BA-CCF8-4B6A-9C7A-F235A98F66E3\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/9B3212BA-CCF8-4B6A-9C7A-F235A98F66E3",
                   "udid" : "9B3212BA-CCF8-4B6A-9C7A-F235A98F66E3",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D40CF1B4-00C5-4C6D-84BB-B01C39A6466A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D40CF1B4-00C5-4C6D-84BB-B01C39A6466A",
                   "udid" : "D40CF1B4-00C5-4C6D-84BB-B01C39A6466A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E9AD4757-38B4-451B-A66D-4564CBE5A107\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E9AD4757-38B4-451B-A66D-4564CBE5A107",
                   "udid" : "E9AD4757-38B4-451B-A66D-4564CBE5A107",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F1089704-8E24-46B9-AEE8-797B377FA227\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F1089704-8E24-46B9-AEE8-797B377FA227",
                   "udid" : "F1089704-8E24-46B9-AEE8-797B377FA227",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/A969D734-934D-4C90-A2AA-165FE21AB502\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/A969D734-934D-4C90-A2AA-165FE21AB502",
                   "udid" : "A969D734-934D-4C90-A2AA-165FE21AB502",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
                   "state" : "Shutdown",
                   "name" : "iPhone 7"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/5EE375E8-DA52-402C-83BF-33EC09ADF5F0\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/5EE375E8-DA52-402C-83BF-33EC09ADF5F0",
                   "udid" : "5EE375E8-DA52-402C-83BF-33EC09ADF5F0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AE649A2D-D1BC-4C1F-8B1A-68732C2EA0B9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AE649A2D-D1BC-4C1F-8B1A-68732C2EA0B9",
                   "udid" : "AE649A2D-D1BC-4C1F-8B1A-68732C2EA0B9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/93E3A3CD-D952-4B03-A53E-96AC22E34DE8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/93E3A3CD-D952-4B03-A53E-96AC22E34DE8",
                   "udid" : "93E3A3CD-D952-4B03-A53E-96AC22E34DE8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B86FDD79-8E66-4982-A96C-52098D7CD66F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B86FDD79-8E66-4982-A96C-52098D7CD66F",
                   "udid" : "B86FDD79-8E66-4982-A96C-52098D7CD66F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/544315A3-2DFE-4038-B0A7-707983ABD30E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/544315A3-2DFE-4038-B0A7-707983ABD30E",
                   "udid" : "544315A3-2DFE-4038-B0A7-707983ABD30E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/982641F5-EBE3-44B5-9C82-0E10088CA0D0\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/982641F5-EBE3-44B5-9C82-0E10088CA0D0",
                   "udid" : "982641F5-EBE3-44B5-9C82-0E10088CA0D0",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/0E928EE1-E090-47B2-9D70-CAD773A48B85\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/0E928EE1-E090-47B2-9D70-CAD773A48B85",
                   "udid" : "0E928EE1-E090-47B2-9D70-CAD773A48B85",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/1BB241CB-C7DB-4FF4-8960-068976AD0CE9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/1BB241CB-C7DB-4FF4-8960-068976AD0CE9",
                   "udid" : "1BB241CB-C7DB-4FF4-8960-068976AD0CE9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/06DAC116-D592-46F3-A0DB-11583A277301\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/06DAC116-D592-46F3-A0DB-11583A277301",
                   "udid" : "06DAC116-D592-46F3-A0DB-11583A277301",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---4th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (4th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D6B60C66-EB06-4192-8878-CC5543321056\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D6B60C66-EB06-4192-8878-CC5543321056",
                   "udid" : "D6B60C66-EB06-4192-8878-CC5543321056",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/70667CA8-69E7-4F66-A225-D809E44ECD38\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/70667CA8-69E7-4F66-A225-D809E44ECD38",
                   "udid" : "70667CA8-69E7-4F66-A225-D809E44ECD38",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/BDCCDE78-BA2B-4716-9979-F4B9E41EAE9D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/BDCCDE78-BA2B-4716-9979-F4B9E41EAE9D",
                   "udid" : "BDCCDE78-BA2B-4716-9979-F4B9E41EAE9D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/9D998835-91DF-4C8F-850A-1D0F41B3BBDC\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/9D998835-91DF-4C8F-850A-1D0F41B3BBDC",
                   "udid" : "9D998835-91DF-4C8F-850A-1D0F41B3BBDC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4A9EB420-76BE-40E7-8C19-587F3268D696\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4A9EB420-76BE-40E7-8C19-587F3268D696",
                   "udid" : "4A9EB420-76BE-40E7-8C19-587F3268D696",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/628D767C-28C8-483C-81B6-C215C829D34D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/628D767C-28C8-483C-81B6-C215C829D34D",
                   "udid" : "628D767C-28C8-483C-81B6-C215C829D34D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E95137D4-BC94-428D-B92B-ECD83C43AE90\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E95137D4-BC94-428D-B92B-ECD83C43AE90",
                   "udid" : "E95137D4-BC94-428D-B92B-ECD83C43AE90",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F2D6381E-C69B-4E7C-9D05-D33778C6096B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F2D6381E-C69B-4E7C-9D05-D33778C6096B",
                   "udid" : "F2D6381E-C69B-4E7C-9D05-D33778C6096B",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--7th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (7th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AA0EFF59-35D0-43B0-A11C-E2DC3CE622C8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AA0EFF59-35D0-43B0-A11C-E2DC3CE622C8",
                   "udid" : "AA0EFF59-35D0-43B0-A11C-E2DC3CE622C8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7B8EF030-73D8-43F6-94FD-D6EC6EDFCA98\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7B8EF030-73D8-43F6-94FD-D6EC6EDFCA98",
                   "udid" : "7B8EF030-73D8-43F6-94FD-D6EC6EDFCA98",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D07911C9-04AB-4390-B07F-CA9575292B0A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D07911C9-04AB-4390-B07F-CA9575292B0A",
                   "udid" : "D07911C9-04AB-4390-B07F-CA9575292B0A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-12-1" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F0DE4CB4-D82B-4C8B-BEEF-30FED4182377\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F0DE4CB4-D82B-4C8B-BEEF-30FED4182377",
                   "udid" : "F0DE4CB4-D82B-4C8B-BEEF-30FED4182377",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
                   "state" : "Shutdown",
                   "name" : "iPhone 5s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/A1746ACA-35CC-4217-98AB-47DEC2657CCE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/A1746ACA-35CC-4217-98AB-47DEC2657CCE",
                   "udid" : "A1746ACA-35CC-4217-98AB-47DEC2657CCE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/DF9EBE9D-0747-4AF6-AF1C-F4F32D1FA887\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/DF9EBE9D-0747-4AF6-AF1C-F4F32D1FA887",
                   "udid" : "DF9EBE9D-0747-4AF6-AF1C-F4F32D1FA887",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
                   "state" : "Shutdown",
                   "name" : "iPhone 6"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/30D7726F-31BA-4375-A8C5-B0C15BD58C0B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/30D7726F-31BA-4375-A8C5-B0C15BD58C0B",
                   "udid" : "30D7726F-31BA-4375-A8C5-B0C15BD58C0B",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/60D342CF-A743-421E-8C98-2CF36D852EE3\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/60D342CF-A743-421E-8C98-2CF36D852EE3",
                   "udid" : "60D342CF-A743-421E-8C98-2CF36D852EE3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/EFEADFB4-AB49-4F4B-AE53-F5B703711E9C\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/EFEADFB4-AB49-4F4B-AE53-F5B703711E9C",
                   "udid" : "EFEADFB4-AB49-4F4B-AE53-F5B703711E9C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
                   "state" : "Shutdown",
                   "name" : "iPhone SE"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/56302C0D-ADCB-406A-AFEE-147AA1124627\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/56302C0D-ADCB-406A-AFEE-147AA1124627",
                   "udid" : "56302C0D-ADCB-406A-AFEE-147AA1124627",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
                   "state" : "Shutdown",
                   "name" : "iPhone 7"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/5B346EC1-6114-474E-A833-D1A59B6BB878\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/5B346EC1-6114-474E-A833-D1A59B6BB878",
                   "udid" : "5B346EC1-6114-474E-A833-D1A59B6BB878",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 7 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/69CAA97F-5CB9-4852-8B27-5F6C9804C09C\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/69CAA97F-5CB9-4852-8B27-5F6C9804C09C",
                   "udid" : "69CAA97F-5CB9-4852-8B27-5F6C9804C09C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/A14CDB57-B50B-4DA3-B0C5-5F065DFE132B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/A14CDB57-B50B-4DA3-B0C5-5F065DFE132B",
                   "udid" : "A14CDB57-B50B-4DA3-B0C5-5F065DFE132B",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7B54B5E5-4C67-449C-98EF-E88825DD828F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7B54B5E5-4C67-449C-98EF-E88825DD828F",
                   "udid" : "7B54B5E5-4C67-449C-98EF-E88825DD828F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
                   "state" : "Shutdown",
                   "name" : "iPhone X"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D9D5B461-05EC-46D4-ACDD-3B2125AF4022\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D9D5B461-05EC-46D4-ACDD-3B2125AF4022",
                   "udid" : "D9D5B461-05EC-46D4-ACDD-3B2125AF4022",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
                   "state" : "Shutdown",
                   "name" : "iPhone XS"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/25479401-AD4B-40ED-8D38-160F751BE6B3\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/25479401-AD4B-40ED-8D38-160F751BE6B3",
                   "udid" : "25479401-AD4B-40ED-8D38-160F751BE6B3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone XS Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7740606C-4365-4DC4-9066-F6B6ED653F03\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7740606C-4365-4DC4-9066-F6B6ED653F03",
                   "udid" : "7740606C-4365-4DC4-9066-F6B6ED653F03",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
                   "state" : "Shutdown",
                   "name" : "iPhone XR"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/80FB79B9-1273-4971-8A0F-E353FE59C0BA\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/80FB79B9-1273-4971-8A0F-E353FE59C0BA",
                   "udid" : "80FB79B9-1273-4971-8A0F-E353FE59C0BA",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
                   "state" : "Shutdown",
                   "name" : "iPad Air"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/9BF17C46-7EF8-44B9-9705-7DD30EE18813\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/9BF17C46-7EF8-44B9-9705-7DD30EE18813",
                   "udid" : "9BF17C46-7EF8-44B9-9705-7DD30EE18813",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
                   "state" : "Shutdown",
                   "name" : "iPad Air 2"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/28D261BE-5167-48F3-85F8-4C4D687CE233\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/28D261BE-5167-48F3-85F8-4C4D687CE233",
                   "udid" : "28D261BE-5167-48F3-85F8-4C4D687CE233",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/2DF25646-0780-415B-800D-0E2FF2FBB410\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/2DF25646-0780-415B-800D-0E2FF2FBB410",
                   "udid" : "2DF25646-0780-415B-800D-0E2FF2FBB410",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/9D1A48DC-B956-4A97-BE9C-8C90F33BF459\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/9D1A48DC-B956-4A97-BE9C-8C90F33BF459",
                   "udid" : "9D1A48DC-B956-4A97-BE9C-8C90F33BF459",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (5th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/3B4E9BB3-9D98-489A-B79E-D915DD19E287\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/3B4E9BB3-9D98-489A-B79E-D915DD19E287",
                   "udid" : "3B4E9BB3-9D98-489A-B79E-D915DD19E287",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/53F50F9A-AE96-434D-8A07-199119CCAEB8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/53F50F9A-AE96-434D-8A07-199119CCAEB8",
                   "udid" : "53F50F9A-AE96-434D-8A07-199119CCAEB8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (10.5-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F37EBDC2-8D1F-42DF-94CD-8714D3074FEB\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F37EBDC2-8D1F-42DF-94CD-8714D3074FEB",
                   "udid" : "F37EBDC2-8D1F-42DF-94CD-8714D3074FEB",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (6th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7868AF0F-756C-402B-AF66-92DFB6C86710\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7868AF0F-756C-402B-AF66-92DFB6C86710",
                   "udid" : "7868AF0F-756C-402B-AF66-92DFB6C86710",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/85D543AB-84A4-4E44-A02E-B0391D62DAE5\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/85D543AB-84A4-4E44-A02E-B0391D62DAE5",
                   "udid" : "85D543AB-84A4-4E44-A02E-B0391D62DAE5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-12-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/83876225-F410-46F5-BDD6-B5DEBF8FB925\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/83876225-F410-46F5-BDD6-B5DEBF8FB925",
                   "udid" : "83876225-F410-46F5-BDD6-B5DEBF8FB925",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
                   "state" : "Shutdown",
                   "name" : "iPhone 5s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/1AD50092-0AD9-4BF0-9346-FF690E8C5BB9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/1AD50092-0AD9-4BF0-9346-FF690E8C5BB9",
                   "udid" : "1AD50092-0AD9-4BF0-9346-FF690E8C5BB9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/6B4F4F66-3667-4E1E-9688-EC8996650DE8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/6B4F4F66-3667-4E1E-9688-EC8996650DE8",
                   "udid" : "6B4F4F66-3667-4E1E-9688-EC8996650DE8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
                   "state" : "Shutdown",
                   "name" : "iPhone 6"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/6B9A1D15-A01E-4D58-9A24-31FE0518CE83\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/6B9A1D15-A01E-4D58-9A24-31FE0518CE83",
                   "udid" : "6B9A1D15-A01E-4D58-9A24-31FE0518CE83",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E7DABB2D-9774-438F-9ADA-E6790F2C8C3F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E7DABB2D-9774-438F-9ADA-E6790F2C8C3F",
                   "udid" : "E7DABB2D-9774-438F-9ADA-E6790F2C8C3F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/BF5165C8-17FF-43DD-9948-00022598CA18\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/BF5165C8-17FF-43DD-9948-00022598CA18",
                   "udid" : "BF5165C8-17FF-43DD-9948-00022598CA18",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
                   "state" : "Shutdown",
                   "name" : "iPhone SE"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7E61F9F3-2399-4854-97A6-943198B85A6F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7E61F9F3-2399-4854-97A6-943198B85A6F",
                   "udid" : "7E61F9F3-2399-4854-97A6-943198B85A6F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
                   "state" : "Shutdown",
                   "name" : "iPhone 7"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/1AB4EB4B-472F-42A6-818D-F7FBD6915F24\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/1AB4EB4B-472F-42A6-818D-F7FBD6915F24",
                   "udid" : "1AB4EB4B-472F-42A6-818D-F7FBD6915F24",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 7 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/BBF2C284-16F9-4907-94B8-536E698B9D0C\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/BBF2C284-16F9-4907-94B8-536E698B9D0C",
                   "udid" : "BBF2C284-16F9-4907-94B8-536E698B9D0C",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/76066D0C-5F84-4E02-B7FD-1CDAAC24E4E9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/76066D0C-5F84-4E02-B7FD-1CDAAC24E4E9",
                   "udid" : "76066D0C-5F84-4E02-B7FD-1CDAAC24E4E9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/15F1E431-BF7D-4978-9B91-04DD77AC5C23\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/15F1E431-BF7D-4978-9B91-04DD77AC5C23",
                   "udid" : "15F1E431-BF7D-4978-9B91-04DD77AC5C23",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
                   "state" : "Shutdown",
                   "name" : "iPhone X"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/128035AD-C3A1-4F81-8E49-273B66BF18F6\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/128035AD-C3A1-4F81-8E49-273B66BF18F6",
                   "udid" : "128035AD-C3A1-4F81-8E49-273B66BF18F6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
                   "state" : "Shutdown",
                   "name" : "iPhone Xs"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C2C07C6F-6819-4155-BD0F-A746133C221A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C2C07C6F-6819-4155-BD0F-A746133C221A",
                   "udid" : "C2C07C6F-6819-4155-BD0F-A746133C221A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone Xs Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/81388080-3C06-43FD-83F0-0AB68239A10E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/81388080-3C06-43FD-83F0-0AB68239A10E",
                   "udid" : "81388080-3C06-43FD-83F0-0AB68239A10E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
                   "state" : "Shutdown",
                   "name" : "iPhone Xʀ"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/644C1388-61C5-4055-B548-073090D857B9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/644C1388-61C5-4055-B548-073090D857B9",
                   "udid" : "644C1388-61C5-4055-B548-073090D857B9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
                   "state" : "Shutdown",
                   "name" : "iPad Air"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/00A75A6C-A8EC-4A57-B5F8-521A8D6B4E23\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/00A75A6C-A8EC-4A57-B5F8-521A8D6B4E23",
                   "udid" : "00A75A6C-A8EC-4A57-B5F8-521A8D6B4E23",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
                   "state" : "Shutdown",
                   "name" : "iPad Air 2"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/8F216D8C-3F54-4B44-AAF6-8D4AFF64C863\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/8F216D8C-3F54-4B44-AAF6-8D4AFF64C863",
                   "udid" : "8F216D8C-3F54-4B44-AAF6-8D4AFF64C863",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D17C21FA-5202-4452-A622-A1E75758D12D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D17C21FA-5202-4452-A622-A1E75758D12D",
                   "udid" : "D17C21FA-5202-4452-A622-A1E75758D12D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E3187BEC-F0F1-46FF-A65D-4F71CB80F216\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E3187BEC-F0F1-46FF-A65D-4F71CB80F216",
                   "udid" : "E3187BEC-F0F1-46FF-A65D-4F71CB80F216",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (5th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F7F3DEF5-D7E6-4F9F-AC1B-30758A7AF7E6\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F7F3DEF5-D7E6-4F9F-AC1B-30758A7AF7E6",
                   "udid" : "F7F3DEF5-D7E6-4F9F-AC1B-30758A7AF7E6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C160F179-2BA9-4486-8719-220C87FD5B77\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C160F179-2BA9-4486-8719-220C87FD5B77",
                   "udid" : "C160F179-2BA9-4486-8719-220C87FD5B77",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (10.5-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/DECB61C8-2C37-4920-8179-0FB72D0E4CF2\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/DECB61C8-2C37-4920-8179-0FB72D0E4CF2",
                   "udid" : "DECB61C8-2C37-4920-8179-0FB72D0E4CF2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (6th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D9C2DB78-2A24-4259-956E-1E22E3A9E0A4\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D9C2DB78-2A24-4259-956E-1E22E3A9E0A4",
                   "udid" : "D9C2DB78-2A24-4259-956E-1E22E3A9E0A4",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/02E16936-88C8-4ABC-9932-A780B345DE85\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/02E16936-88C8-4ABC-9932-A780B345DE85",
                   "udid" : "02E16936-88C8-4ABC-9932-A780B345DE85",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/3951B8B9-8BD8-4314-97AF-74C59743CA67\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/3951B8B9-8BD8-4314-97AF-74C59743CA67",
                   "udid" : "3951B8B9-8BD8-4314-97AF-74C59743CA67",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-12-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/03DAE70D-D48E-4278-B9C1-5B994972AD2F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/03DAE70D-D48E-4278-B9C1-5B994972AD2F",
                   "udid" : "03DAE70D-D48E-4278-B9C1-5B994972AD2F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-5s",
                   "state" : "Shutdown",
                   "name" : "iPhone 5s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/5339C058-93FD-4BA5-A344-265708D32605\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/5339C058-93FD-4BA5-A344-265708D32605",
                   "udid" : "5339C058-93FD-4BA5-A344-265708D32605",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AE46A2DC-9E28-4BC3-87CB-8BE744E1EBFC\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AE46A2DC-9E28-4BC3-87CB-8BE744E1EBFC",
                   "udid" : "AE46A2DC-9E28-4BC3-87CB-8BE744E1EBFC",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6",
                   "state" : "Shutdown",
                   "name" : "iPhone 6"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/14424178-10A0-4F73-9255-FBFBC7189515\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/14424178-10A0-4F73-9255-FBFBC7189515",
                   "udid" : "14424178-10A0-4F73-9255-FBFBC7189515",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/5670F202-AA91-42AC-A0E2-32CACDDDFD96\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/5670F202-AA91-42AC-A0E2-32CACDDDFD96",
                   "udid" : "5670F202-AA91-42AC-A0E2-32CACDDDFD96",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-6s-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 6s Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/73F4D644-2F39-4CDE-A5FA-6CBE53AABABE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/73F4D644-2F39-4CDE-A5FA-6CBE53AABABE",
                   "udid" : "73F4D644-2F39-4CDE-A5FA-6CBE53AABABE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-SE",
                   "state" : "Shutdown",
                   "name" : "iPhone SE"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/BB88EBB5-5B34-42BD-8360-2A4A10E05ABE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/BB88EBB5-5B34-42BD-8360-2A4A10E05ABE",
                   "udid" : "BB88EBB5-5B34-42BD-8360-2A4A10E05ABE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7",
                   "state" : "Shutdown",
                   "name" : "iPhone 7"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D4AC937B-20C3-4CE8-B7F3-107660EDEB08\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D4AC937B-20C3-4CE8-B7F3-107660EDEB08",
                   "udid" : "D4AC937B-20C3-4CE8-B7F3-107660EDEB08",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-7-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 7 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/455DB779-4EBE-47A3-AD23-ECF583E32DD2\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/455DB779-4EBE-47A3-AD23-ECF583E32DD2",
                   "udid" : "455DB779-4EBE-47A3-AD23-ECF583E32DD2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/578A0158-09F6-4B34-A0D7-DF999A32D121\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/578A0158-09F6-4B34-A0D7-DF999A32D121",
                   "udid" : "578A0158-09F6-4B34-A0D7-DF999A32D121",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/54772389-E262-4BA6-A7C4-C16768B746DE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/54772389-E262-4BA6-A7C4-C16768B746DE",
                   "udid" : "54772389-E262-4BA6-A7C4-C16768B746DE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-X",
                   "state" : "Shutdown",
                   "name" : "iPhone X"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/AC4DA7F8-646A-454A-B34D-78E4A11EA040\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/AC4DA7F8-646A-454A-B34D-78E4A11EA040",
                   "udid" : "AC4DA7F8-646A-454A-B34D-78E4A11EA040",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS",
                   "state" : "Shutdown",
                   "name" : "iPhone Xs"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B5B9DB3E-BBBC-4357-B57E-7B3CF8B67389\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B5B9DB3E-BBBC-4357-B57E-7B3CF8B67389",
                   "udid" : "B5B9DB3E-BBBC-4357-B57E-7B3CF8B67389",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone Xs Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/6670376F-9F27-4CED-84D8-4578CBE9F995\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/6670376F-9F27-4CED-84D8-4578CBE9F995",
                   "udid" : "6670376F-9F27-4CED-84D8-4578CBE9F995",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XR",
                   "state" : "Shutdown",
                   "name" : "iPhone Xʀ"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/77CB7C54-71E2-4C47-A31D-F3ECFB7390A8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/77CB7C54-71E2-4C47-A31D-F3ECFB7390A8",
                   "udid" : "77CB7C54-71E2-4C47-A31D-F3ECFB7390A8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air",
                   "state" : "Shutdown",
                   "name" : "iPad Air"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/94272E10-8E1D-44A8-B319-DBAD117F2B94\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/94272E10-8E1D-44A8-B319-DBAD117F2B94",
                   "udid" : "94272E10-8E1D-44A8-B319-DBAD117F2B94",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air-2",
                   "state" : "Shutdown",
                   "name" : "iPad Air 2"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C2276645-E73C-4F96-BCC4-B8DA7FC7B8F9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C2276645-E73C-4F96-BCC4-B8DA7FC7B8F9",
                   "udid" : "C2276645-E73C-4F96-BCC4-B8DA7FC7B8F9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/487B2068-3A8D-46CB-AB88-5843AD1EF9B7\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/487B2068-3A8D-46CB-AB88-5843AD1EF9B7",
                   "udid" : "487B2068-3A8D-46CB-AB88-5843AD1EF9B7",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7D5E11F7-F502-4384-B53A-A51A7EE04E14\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7D5E11F7-F502-4384-B53A-A51A7EE04E14",
                   "udid" : "7D5E11F7-F502-4384-B53A-A51A7EE04E14",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--5th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (5th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/06DB52FA-7BE5-4FB4-91BB-498958FFC285\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/06DB52FA-7BE5-4FB4-91BB-498958FFC285",
                   "udid" : "06DB52FA-7BE5-4FB4-91BB-498958FFC285",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/8FC42699-A143-4DF5-AC04-AEF8A8003F6B\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/8FC42699-A143-4DF5-AC04-AEF8A8003F6B",
                   "udid" : "8FC42699-A143-4DF5-AC04-AEF8A8003F6B",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--10-5-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (10.5-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7A55E681-3740-4578-8056-96F15D467626\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7A55E681-3740-4578-8056-96F15D467626",
                   "udid" : "7A55E681-3740-4578-8056-96F15D467626",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad--6th-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad (6th generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/931F35C9-F62A-4070-BA27-2A7050D34390\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/931F35C9-F62A-4070-BA27-2A7050D34390",
                   "udid" : "931F35C9-F62A-4070-BA27-2A7050D34390",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/998108D2-5C9E-409E-8A3C-1CC826FA3708\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/998108D2-5C9E-409E-8A3C-1CC826FA3708",
                   "udid" : "998108D2-5C9E-409E-8A3C-1CC826FA3708",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/00A88343-5D00-4D8C-9145-962A4F5E2655\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/00A88343-5D00-4D8C-9145-962A4F5E2655",
                   "udid" : "00A88343-5D00-4D8C-9145-962A4F5E2655",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.iOS-13-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4AB42CF8-7B34-4700-A549-AC2851B0D8B5\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4AB42CF8-7B34-4700-A549-AC2851B0D8B5",
                   "udid" : "4AB42CF8-7B34-4700-A549-AC2851B0D8B5",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8",
                   "state" : "Shutdown",
                   "name" : "iPhone 8"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C445F4D7-008A-4C68-9140-91A3279564B2\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C445F4D7-008A-4C68-9140-91A3279564B2",
                   "udid" : "C445F4D7-008A-4C68-9140-91A3279564B2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-8-Plus",
                   "state" : "Shutdown",
                   "name" : "iPhone 8 Plus"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E046573C-4914-4CFB-A07C-06C973FEF0E2\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E046573C-4914-4CFB-A07C-06C973FEF0E2",
                   "udid" : "E046573C-4914-4CFB-A07C-06C973FEF0E2",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-XS-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone Xs Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/7B94BAD5-0CDF-4934-975C-B44D5D58AA57\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/7B94BAD5-0CDF-4934-975C-B44D5D58AA57",
                   "udid" : "7B94BAD5-0CDF-4934-975C-B44D5D58AA57",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11",
                   "state" : "Shutdown",
                   "name" : "iPhone 11"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D3B12083-DDE4-44CF-80B5-FD774589064F\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D3B12083-DDE4-44CF-80B5-FD774589064F",
                   "udid" : "D3B12083-DDE4-44CF-80B5-FD774589064F",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/66F09F3E-6CDA-498D-B91B-6EE9AB300274\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/66F09F3E-6CDA-498D-B91B-6EE9AB300274",
                   "udid" : "66F09F3E-6CDA-498D-B91B-6EE9AB300274",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPhone-11-Pro-Max",
                   "state" : "Shutdown",
                   "name" : "iPhone 11 Pro Max"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/80C90E2D-0BC0-4049-84AB-47755AB5D680\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/80C90E2D-0BC0-4049-84AB-47755AB5D680",
                   "udid" : "80C90E2D-0BC0-4049-84AB-47755AB5D680",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--9-7-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (9.7-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B7EA4414-715A-49CC-82AE-3FC59CF2DAA6\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B7EA4414-715A-49CC-82AE-3FC59CF2DAA6",
                   "udid" : "B7EA4414-715A-49CC-82AE-3FC59CF2DAA6",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---2nd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (2nd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/DDA79CD3-610E-45DA-9C1E-91C60ECAB8E1\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/DDA79CD3-610E-45DA-9C1E-91C60ECAB8E1",
                   "udid" : "DDA79CD3-610E-45DA-9C1E-91C60ECAB8E1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--11-inch-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (11-inch)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/458FCB2D-17A8-455F-A2E7-72F606F8E896\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/458FCB2D-17A8-455F-A2E7-72F606F8E896",
                   "udid" : "458FCB2D-17A8-455F-A2E7-72F606F8E896",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Pro--12-9-inch---3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Pro (12.9-inch) (3rd generation)"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/0ECDD146-8846-4266-810B-F53ABC0AE762\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/0ECDD146-8846-4266-810B-F53ABC0AE762",
                   "udid" : "0ECDD146-8846-4266-810B-F53ABC0AE762",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.iPad-Air--3rd-generation-",
                   "state" : "Shutdown",
                   "name" : "iPad Air (3rd generation)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-5-1" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/91C55E16-87D5-4F6A-B51B-BD8D34685756\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/91C55E16-87D5-4F6A-B51B-BD8D34685756",
                   "udid" : "91C55E16-87D5-4F6A-B51B-BD8D34685756",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/458D56E6-5EA1-4B33-AC89-00AE2BE597B8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/458D56E6-5EA1-4B33-AC89-00AE2BE597B8",
                   "udid" : "458D56E6-5EA1-4B33-AC89-00AE2BE597B8",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/E8E0E2A5-506D-4411-9268-827505037141\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/E8E0E2A5-506D-4411-9268-827505037141",
                   "udid" : "E8E0E2A5-506D-4411-9268-827505037141",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/43F7A396-4DD5-4404-9C4F-C92A8F3F8201\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/43F7A396-4DD5-4404-9C4F-C92A8F3F8201",
                   "udid" : "43F7A396-4DD5-4404-9C4F-C92A8F3F8201",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/936273CA-291C-4CE7-9414-EF029F1FECC9\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/936273CA-291C-4CE7-9414-EF029F1FECC9",
                   "udid" : "936273CA-291C-4CE7-9414-EF029F1FECC9",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/8577A628-B641-4A05-A1EF-B4222B87EA70\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/8577A628-B641-4A05-A1EF-B4222B87EA70",
                   "udid" : "8577A628-B641-4A05-A1EF-B4222B87EA70",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-0" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/2CA83EB6-B64C-4CF3-906C-A9CF66927FAB\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/2CA83EB6-B64C-4CF3-906C-A9CF66927FAB",
                   "udid" : "2CA83EB6-B64C-4CF3-906C-A9CF66927FAB",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/D6ED1C97-51E5-42EC-B5DD-0AA97F6A4211\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/D6ED1C97-51E5-42EC-B5DD-0AA97F6A4211",
                   "udid" : "D6ED1C97-51E5-42EC-B5DD-0AA97F6A4211",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/4F30E52E-9E6D-4CF1-BFFF-ACD4F422A93A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/4F30E52E-9E6D-4CF1-BFFF-ACD4F422A93A",
                   "udid" : "4F30E52E-9E6D-4CF1-BFFF-ACD4F422A93A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/97B5F7E7-F69C-4311-BBD3-BBA3B58AA131\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/97B5F7E7-F69C-4311-BBD3-BBA3B58AA131",
                   "udid" : "97B5F7E7-F69C-4311-BBD3-BBA3B58AA131",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-12-4" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/50BBF33E-38F3-4FA2-83F7-F2241D76BD32\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/50BBF33E-38F3-4FA2-83F7-F2241D76BD32",
                   "udid" : "50BBF33E-38F3-4FA2-83F7-F2241D76BD32",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/400389F5-B412-4E6B-A57F-4D780F358CAA\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/400389F5-B412-4E6B-A57F-4D780F358CAA",
                   "udid" : "400389F5-B412-4E6B-A57F-4D780F358CAA",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/1734CF81-9063-4E06-8086-2FCF242E48C1\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/1734CF81-9063-4E06-8086-2FCF242E48C1",
                   "udid" : "1734CF81-9063-4E06-8086-2FCF242E48C1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-5-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/F3E165CD-68C9-4720-9DD4-F3E6437AC29A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/F3E165CD-68C9-4720-9DD4-F3E6437AC29A",
                   "udid" : "F3E165CD-68C9-4720-9DD4-F3E6437AC29A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/8C7BAAEC-70BB-4DA2-AE52-2B6948F179E3\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/8C7BAAEC-70BB-4DA2-AE52-2B6948F179E3",
                   "udid" : "8C7BAAEC-70BB-4DA2-AE52-2B6948F179E3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-2-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 2 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C2B36A54-9207-4451-A393-B6BAD0ED5F1D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C2B36A54-9207-4451-A393-B6BAD0ED5F1D",
                   "udid" : "C2B36A54-9207-4451-A393-B6BAD0ED5F1D",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-38mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 38mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/FB38C8BF-A8C0-4B95-8F94-A93C4813646E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/FB38C8BF-A8C0-4B95-8F94-A93C4813646E",
                   "udid" : "FB38C8BF-A8C0-4B95-8F94-A93C4813646E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-3-42mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 3 - 42mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/76F10F38-54B2-4048-9538-B40D9BDC6B5E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/76F10F38-54B2-4048-9538-B40D9BDC6B5E",
                   "udid" : "76F10F38-54B2-4048-9538-B40D9BDC6B5E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B5A034B7-BF10-4212-BFC7-7E9CC4897B30\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B5A034B7-BF10-4212-BFC7-7E9CC4897B30",
                   "udid" : "B5A034B7-BF10-4212-BFC7-7E9CC4897B30",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-4" : [
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/EEBDB617-3837-49E2-AD7D-695861F6F07D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/EEBDB617-3837-49E2-AD7D-695861F6F07D",
                   "udid" : "EEBDB617-3837-49E2-AD7D-695861F6F07D",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B463AB99-3FB3-4D64-B8D6-C1F0FEE3BE3C\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B463AB99-3FB3-4D64-B8D6-C1F0FEE3BE3C",
                   "udid" : "B463AB99-3FB3-4D64-B8D6-C1F0FEE3BE3C",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/DE4B6E57-96BD-496B-AA4E-A58DAAF48FB8\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/DE4B6E57-96BD-496B-AA4E-A58DAAF48FB8",
                   "udid" : "DE4B6E57-96BD-496B-AA4E-A58DAAF48FB8",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-12-2" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/29F33C91-29F9-486C-B850-4C7DC847432E\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/29F33C91-29F9-486C-B850-4C7DC847432E",
                   "udid" : "29F33C91-29F9-486C-B850-4C7DC847432E",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/DE5E853F-26E0-4F85-83DA-1EA9239530EB\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/DE5E853F-26E0-4F85-83DA-1EA9239530EB",
                   "udid" : "DE5E853F-26E0-4F85-83DA-1EA9239530EB",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C775785D-8E08-4F83-A395-2224C868D896\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C775785D-8E08-4F83-A395-2224C868D896",
                   "udid" : "C775785D-8E08-4F83-A395-2224C868D896",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-13-3" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/630AF2B3-6859-4A68-85A6-13FFBEDEF5FE\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/630AF2B3-6859-4A68-85A6-13FFBEDEF5FE",
                   "udid" : "630AF2B3-6859-4A68-85A6-13FFBEDEF5FE",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C1B96671-B00B-4CC4-8F98-EDF3BD0F988A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C1B96671-B00B-4CC4-8F98-EDF3BD0F988A",
                   "udid" : "C1B96671-B00B-4CC4-8F98-EDF3BD0F988A",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/A6D697A1-1422-43B2-B2EC-4490A55B00C1\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/A6D697A1-1422-43B2-B2EC-4490A55B00C1",
                   "udid" : "A6D697A1-1422-43B2-B2EC-4490A55B00C1",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.watchOS-6-2" : [
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/CE850E0C-6D19-4C12-9800-4A982FE56C8A\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/CE850E0C-6D19-4C12-9800-4A982FE56C8A",
                   "udid" : "CE850E0C-6D19-4C12-9800-4A982FE56C8A",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/2EE51F99-3439-42FE-A5E1-10FFFFE1A3BD\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/2EE51F99-3439-42FE-A5E1-10FFFFE1A3BD",
                   "udid" : "2EE51F99-3439-42FE-A5E1-10FFFFE1A3BD",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-4-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 4 - 44mm"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/11BCFB78-3D53-4CC1-92FD-220264955605\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/11BCFB78-3D53-4CC1-92FD-220264955605",
                   "udid" : "11BCFB78-3D53-4CC1-92FD-220264955605",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-40mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 40mm"
                 },
                 {
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/EA27028C-1FCB-4E67-9A60-378D79F8638D\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/EA27028C-1FCB-4E67-9A60-378D79F8638D",
                   "udid" : "EA27028C-1FCB-4E67-9A60-378D79F8638D",
                   "isAvailable" : true,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-Watch-Series-5-44mm",
                   "state" : "Shutdown",
                   "name" : "Apple Watch Series 5 - 44mm"
                 }
               ],
               "com.apple.CoreSimulator.SimRuntime.tvOS-12-1" : [
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/C1109F29-614B-4658-B781-63100ADBFBE3\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/C1109F29-614B-4658-B781-63100ADBFBE3",
                   "udid" : "C1109F29-614B-4658-B781-63100ADBFBE3",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/5F6B0DB1-01FA-410B-83CE-26FFA91FBF19\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/5F6B0DB1-01FA-410B-83CE-26FFA91FBF19",
                   "udid" : "5F6B0DB1-01FA-410B-83CE-26FFA91FBF19",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-4K",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K"
                 },
                 {
                   "availabilityError" : "runtime profile not found",
                   "dataPath" : "\/Users\/captainpark\/Library\/Developer\/CoreSimulator\/Devices\/B5B546F9-E76A-42BE-A6C4-8302AC290977\/data",
                   "logPath" : "\/Users\/captainpark\/Library\/Logs\/CoreSimulator\/B5B546F9-E76A-42BE-A6C4-8302AC290977",
                   "udid" : "B5B546F9-E76A-42BE-A6C4-8302AC290977",
                   "isAvailable" : false,
                   "deviceTypeIdentifier" : "com.apple.CoreSimulator.SimDeviceType.Apple-TV-4K-1080p",
                   "state" : "Shutdown",
                   "name" : "Apple TV 4K (at 1080p)"
                 }
               ]
             }
           }
[+3499 ms] [
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone9,1",
                        "identifier" : "F2D139F4-DCA9-413C-B815-5049758195BB",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-7-1",
                        "modelName" : "iPhone 7",
                        "name" : "iPhone 7"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone9,2",
                        "identifier" : "16EAFA89-97C1-44CD-97B9-A464FE5C3D71",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-7-plus-1",
                        "modelName" : "iPhone 7 Plus",
                        "name" : "iPhone 7 Plus"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone8,2",
                        "identifier" : "AFD1C3C1-6B7C-4C38-9ABE-3AB7F482F69A",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-6s-plus-b9b7ba",
                        "modelName" : "iPhone 6s Plus",
                        "name" : "iPhone 6s Plus"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2.1 (17T531)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch4,4",
                        "identifier" : "2EE51F99-3439-42FE-A5E1-10FFFFE1A3BD",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series4-1",
                        "modelName" : "Apple Watch Series 4 - 44mm",
                        "name" : "Apple Watch Series 4 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,1",
                        "identifier" : "8FBE69E8-770A-4C29-B221-F0D38E6F4128",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-1",
                        "modelName" : "iPhone 11",
                        "name" : "iPhone 11"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone8,4",
                        "identifier" : "D926DAA4-A85F-4FC3-8BF9-915DDF12746F",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-se-a1662-aeb1b8",
                        "modelName" : "iPhone SE (1st generation)",
                        "name" : "iPhone SE (1st generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone6,1",
                        "identifier" : "01273B5A-F1FF-43E7-8B59-E62F163AAF24",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-5s-a1453-d4c5b3",
                        "modelName" : "iPhone 5s",
                        "name" : "iPhone 5s"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,8",
                        "identifier" : "39B6B315-012E-4B1B-B7C5-34386074A346",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-a1652-b4b5b9",
                        "modelName" : "iPad Pro (12.9-inch)",
                        "name" : "iPad Pro (12.9-inch)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad8,12",
                        "identifier" : "E9AD4757-38B4-451B-A66D-4564CBE5A107",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-12point9-4th-1",
                        "modelName" : "iPad Pro (12.9-inch) (4th generation)",
                        "name" : "iPad Pro (12.9-inch) (4th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2.1 (17T531)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,3",
                        "identifier" : "11BCFB78-3D53-4CC1-92FD-220264955605",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 40mm",
                        "name" : "Apple Watch Series 5 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone7,2",
                        "identifier" : "9B7CD30B-41B9-4A8A-9A5E-A3C6E8153FBD",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-6-b4b5b9",
                        "modelName" : "iPhone 6",
                        "name" : "iPhone 6"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,4",
                        "identifier" : "0D75F64A-6421-497E-9FBD-A2B861995458",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
                        "modelName" : "iPad Pro (9.7-inch)",
                        "name" : "iPad Pro (9.7-inch)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,12",
                        "identifier" : "657CD366-EA09-4E3D-90B7-373D1B05878B",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-gen5-a1823-1",
                        "modelName" : "iPad (5th generation)",
                        "name" : "iPad (5th generation)"
                      },
                      {
                        "modelCode" : "iPhone11,6",
                        "simulator" : false,
                        "modelName" : "iPhone XS Max",
                        "error" : {
                          "code" : -13,
                          "failureReason" : "",
                          "underlyingErrors" : [
                            {
                              "code" : 5,
                              "failureReason" : "allowsSecureServices: 1. isConnected: 0. Platform: <DVTPlatform:0x7ff420d49370:'com.apple.platform.iphoneos':<DVTFilePath:0x7ff420d492f0:'\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform'>>. DTDKDeviceIdentifierIsIDID: 0",
                              "description" : "Failed _shouldMakeReadyForDevelopment check even though device is not locked by passcode.",
                              "recoverySuggestion" : "",
                              "domain" : "com.apple.platform.iphoneos"
                            }
                          ],
                          "description" : "Taehyun’s iPhone is not connected",
                          "recoverySuggestion" : "Xcode will continue when Taehyun’s iPhone is connected.",
                          "domain" : "com.apple.platform.iphoneos"
                        },
                        "operatingSystemVersion" : "13.4 (17E255)",
                        "identifier" : "00008020-000570D82284002E",
                        "platform" : "com.apple.platform.iphoneos",
                        "architecture" : "arm64e",
                        "interface" : "usb",
                        "available" : false,
                        "name" : "Taehyun’s iPhone",
                        "modelUTI" : "com.apple.iphone-xs-max-4"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,3",
                        "identifier" : "B24538E8-1BA8-4A2A-A30C-A39501816DBE",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-1",
                        "modelName" : "iPhone 11 Pro",
                        "name" : "iPhone 11 Pro"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad7,1",
                        "identifier" : "22CA2B44-B78B-4B64-A65A-4002D3C81112",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-a1670-1",
                        "modelName" : "iPad Pro (12.9-inch) (2nd generation)",
                        "name" : "iPad Pro (12.9-inch) (2nd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,8",
                        "identifier" : "FA467C79-10D4-4343-A890-4F62C581EB5B",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-se-1",
                        "modelName" : "iPhone SE (2nd generation)",
                        "name" : "iPhone SE (2nd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad7,3",
                        "identifier" : "789BFDF9-FF0A-482F-9FF8-3218C61263D9",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-10point5-a1701-1",
                        "modelName" : "iPad Pro (10.5-inch)",
                        "name" : "iPad Pro (10.5-inch)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad8,9",
                        "identifier" : "D40CF1B4-00C5-4C6D-84BB-B01C39A6466A",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-11-2nd-1",
                        "modelName" : "iPad Pro (11-inch) (2nd generation)",
                        "name" : "iPad Pro (11-inch) (2nd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2.1 (17T531)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch4,3",
                        "identifier" : "CE850E0C-6D19-4C12-9800-4A982FE56C8A",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series4-1",
                        "modelName" : "Apple Watch Series 4 - 40mm",
                        "name" : "Apple Watch Series 4 - 40mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad6,4",
                        "identifier" : "1AA995E2-1B5D-4555-8A87-6A099B545324",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-pro-9point7-a1674-b9b7ba",
                        "modelName" : "iPad Pro (9.7-inch)",
                        "name" : "iPad Pro (9.7-inch)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad11,3",
                        "identifier" : "F1089704-8E24-46B9-AEE8-797B377FA227",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-air3-wifi-1",
                        "modelName" : "iPad Air (3rd generation)",
                        "name" : "iPad Air (3rd generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad7,12",
                        "identifier" : "9B3212BA-CCF8-4B6A-9C7A-F235A98F66E3",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-7-wwan-1",
                        "modelName" : "iPad (7th generation)",
                        "name" : "iPad (7th generation)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone12,5",
                        "identifier" : "AA76883E-8DAB-40E0-B022-19DA91E404CA",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-11-pro-max-1",
                        "modelName" : "iPhone 11 Pro Max",
                        "name" : "iPhone 11 Pro Max"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV5,3",
                        "identifier" : "EEBDB617-3837-49E2-AD7D-695861F6F07D",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4",
                        "modelName" : "Apple TV",
                        "name" : "Apple TV"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone7,1",
                        "identifier" : "A4D2DCCA-2BEF-4056-BA49-D08C9EA2491F",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-6-plus-b4b5b9",
                        "modelName" : "iPhone 6 Plus",
                        "name" : "iPhone 6 Plus"
                      },
                      {
                        "modelCode" : "iPhone9,3",
                        "simulator" : false,
                        "modelName" : "iPhone 7 (Model 1660, 1778, 1779, 1780)",
                        "error" : {
                          "code" : -13,
                          "failureReason" : "",
                          "underlyingErrors" : [
                            {
                              "code" : 5,
                              "failureReason" : "allowsSecureServices: 1. isConnected: 0. Platform: <DVTPlatform:0x7ff420d49370:'com.apple.platform.iphoneos':<DVTFilePath:0x7ff420d492f0:'\/Applications\/Xcode.app\/Contents\/Developer\/Platforms\/iPhoneOS.platform'>>. DTDKDeviceIdentifierIsIDID: 0",
                              "description" : "Failed _shouldMakeReadyForDevelopment check even though device is not locked by passcode.",
                              "recoverySuggestion" : "",
                              "domain" : "com.apple.platform.iphoneos"
                            }
                          ],
                          "description" : "iPhone is not connected",
                          "recoverySuggestion" : "Xcode will continue when iPhone is connected.",
                          "domain" : "com.apple.platform.iphoneos"
                        },
                        "operatingSystemVersion" : "11.4.1 (15G77)",
                        "identifier" : "b788c4f01e90575ad8a000509c98458cb2d3e7c7",
                        "platform" : "com.apple.platform.iphoneos",
                        "architecture" : "arm64",
                        "interface" : "usb",
                        "available" : false,
                        "name" : "iPhone",
                        "modelUTI" : "com.apple.iphone-7-1"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV6,2",
                        "identifier" : "B463AB99-3FB3-4D64-B8D6-C1F0FEE3BE3C",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4k",
                        "modelName" : "Apple TV 4K",
                        "name" : "Apple TV 4K"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad5,4",
                        "identifier" : "7632E483-BB34-4871-9820-67C1B5A58F58",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-air2-a1567-b4b5b9",
                        "modelName" : "iPad Air 2",
                        "name" : "iPad Air 2"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,5",
                        "identifier" : "2D03AC67-DFCF-4216-BB1A-EF59BE9743DD",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-plus-2",
                        "modelName" : "iPhone 8 Plus",
                        "name" : "iPhone 8 Plus"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone8,1",
                        "identifier" : "C2430A5E-CF75-4191-BA90-F3A7E2D94E01",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-6s-b9b7ba",
                        "modelName" : "iPhone 6s",
                        "name" : "iPhone 6s"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.4 (17L255)",
                        "available" : true,
                        "platform" : "com.apple.platform.appletvsimulator",
                        "modelCode" : "AppleTV6,2",
                        "identifier" : "DE4B6E57-96BD-496B-AA4E-A58DAAF48FB8",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.apple-tv-4k",
                        "modelName" : "Apple TV 4K (at 1080p)",
                        "name" : "Apple TV 4K (at 1080p)"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "10.3.1 (14E8301)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPad4,2",
                        "identifier" : "032C40BD-9E4F-4E70-A5F2-EA4E0A7A851F",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.ipad-air-a1475-d7d9d8",
                        "modelName" : "iPad Air",
                        "name" : "iPad Air"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "6.2.1 (17T531)",
                        "available" : true,
                        "platform" : "com.apple.platform.watchsimulator",
                        "modelCode" : "Watch5,4",
                        "identifier" : "EA27028C-1FCB-4E67-9A60-378D79F8638D",
                        "architecture" : "i386",
                        "modelUTI" : "com.apple.watch-series5-1",
                        "modelName" : "Apple Watch Series 5 - 44mm",
                        "name" : "Apple Watch Series 5 - 44mm"
                      },
                      {
                        "simulator" : true,
                        "operatingSystemVersion" : "13.5 (17F61)",
                        "available" : true,
                        "platform" : "com.apple.platform.iphonesimulator",
                        "modelCode" : "iPhone10,4",
                        "identifier" : "7DD7653B-B9FF-4D20-AE2C-0A42EFAA0748",
                        "architecture" : "x86_64",
                        "modelUTI" : "com.apple.iphone-8-2",
                        "modelName" : "iPhone 8",
                        "name" : "iPhone 8"
                      }
                    ]
[  +17 ms] Error: Taehyun’s iPhone is not connected. Xcode will continue when Taehyun’s iPhone is connected. (code -13)
[        ] Error: iPhone is not connected. Xcode will continue when iPhone is connected. (code -13)
[   +3 ms] /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell getprop
[  +69 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[   +2 ms] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[   +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[ +154 ms] Generating /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/android/app/src/main/java/io/flutter/plugins/GeneratedPluginRegistrant.java
[  +19 ms] ro.hardware = qcom
[  +49 ms] Starting incremental build...
[   +4 ms] Initializing file store
[   +9 ms] Skipping target: gen_localizations
[   +6 ms] complete
[   +3 ms] Launching lib/main.dart on SM G981N in debug mode...
[   +4 ms] /Users/captainpark/Library/Flutter/sdk/bin/cache/dart-sdk/bin/dart --disable-dart-dev --old_gen_heap_size=2000 /Users/captainpark/Library/Flutter/sdk/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/captainpark/Library/Flutter/sdk/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --incremental --target=flutter --debugger-module-names -Ddart.developer.causal_async_stacks=true --output-dill /var/folders/dv/xhkmb5qs4gsc31bjk8mj8x5m0000gn/T/flutter_tools.PMQCex/flutter_tool.3sYax4/app.dill
--packages .packages -Ddart.vm.profile=false -Ddart.vm.product=false --bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --filesystem-scheme org-dartlang-root
--initialize-from-dill build/cache.dill.track.dill
[  +11 ms] executing: /Users/captainpark/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[  +12 ms] Exit code 0 from: /Users/captainpark/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.bug" (Raw: "com.example.bug")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=22)
                 A: android:label(0x01010001)="bug" (Raw: "bug")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=28)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.bug.MainActivity" (Raw: "com.example.bug.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=42)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=52)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=56)
                     E: action (line=57)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=59)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=66)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[   +7 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell -x logcat -v time -t 1
[  +96 ms] Exit code 0 from: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell -x logcat -v time -t 1
[        ] --------- beginning of main
           07-08 22:10:16.189 V/NSLocationManager_FLP( 2218): getGPSUsingApps, NO_FREEZE={5013}/ FREEZE={}
[  +12 ms] <- compile package:bug/main.dart
[   +7 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb version
[   +7 ms] Android Debug Bridge version 1.0.41
           Version 29.0.5-5949299
           Installed as /Users/captainpark/Library/Android/sdk/platform-tools/adb
[   +2 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb start-server
[   +7 ms] Building APK
[  +17 ms] Running Gradle task 'assembleDebug'...
[   +1 ms] gradle.properties already sets `android.enableR8`
[   +3 ms] Using gradle from /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/android/gradlew.
[        ] /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/android/gradlew mode: 33261 rwxr-xr-x.
[   +2 ms] executing: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[ +108 ms] Exit code 0 from: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java -version
[        ] openjdk version "1.8.0_202-release"
           OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
           OpenJDK 64-Bit Server VM (build 25.202-b49-5587405, mixed mode)
[   +1 ms] executing: [/Users/captainpark/Developer/njovy/apps/votox/untitled/bug/android/] /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/android/gradlew -Pverbose=true -Ptarget-platform=android-arm64 -Ptarget=/Users/captainpark/Developer/njovy/apps/votox/untitled/bug/lib/main.dart
-Ptrack-widget-creation=true -Pfilesystem-scheme=org-dartlang-root assembleDebug
[+3006 ms] > Task :app:compileFlutterBuildDebug
[        ] [   +8 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [  +44 ms] Exit code 0 from: git -c log.showSignature=false log -n 1 --pretty=format:%H
[        ] [        ] 8fe7655ed20ffd1395f68e30539a847a01a30351
[        ] [        ] executing: [/Users/captainpark/Library/Flutter/sdk/] git tag --contains HEAD
[        ] [ +175 ms] Exit code 0 from: git tag --contains HEAD
[        ] [   +1 ms] 1.19.0-4.3.pre
[        ] [   +9 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git rev-parse --abbrev-ref --symbolic @{u}
[        ] [  +12 ms] Exit code 0 from: git rev-parse --abbrev-ref --symbolic @{u}
[        ] [        ] origin/beta
[        ] [        ] executing: [/Users/captainpark/Library/Flutter/sdk/] git ls-remote --get-url origin
[        ] [  +12 ms] Exit code 0 from: git ls-remote --get-url origin
[        ] [        ] https://github.com/flutter/flutter.git
[        ] [  +55 ms] executing: [/Users/captainpark/Library/Flutter/sdk/] git rev-parse --abbrev-ref HEAD
[        ] [  +13 ms] Exit code 0 from: git rev-parse --abbrev-ref HEAD
[        ] [        ] beta
[        ] [  +29 ms] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[   +4 ms] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [   +1 ms] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [   +3 ms] Artifact Instance of 'MaterialFonts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'GradleWrapper' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidMavenArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidGenSnapshotArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'AndroidInternalBuildArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterWebSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterSdk' is not required, skipping update.
[        ] [        ] Artifact Instance of 'WindowsEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxEngineArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'LinuxFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'MacOSFuchsiaSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerSDKArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FlutterRunnerDebugSymbols' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'IosUsbArtifacts' is not required, skipping update.
[        ] [        ] Artifact Instance of 'FontSubsetArtifacts' is not required, skipping update.
[        ] [  +71 ms] Initializing file store
[        ] [  +10 ms] Done initializing file store
[        ] [  +30 ms] Skipping target: gen_localizations
[        ] [ +479 ms] kernel_snapshot: Starting due to {InvalidatedReason.inputChanged}
[        ] [  +24 ms] /Users/captainpark/Library/Flutter/sdk/bin/cache/dart-sdk/bin/dart --disable-dart-dev --old_gen_heap_size=2000 /Users/captainpark/Library/Flutter/sdk/bin/cache/artifacts/engine/darwin-x64/frontend_server.dart.snapshot --sdk-root
/Users/captainpark/Library/Flutter/sdk/bin/cache/artifacts/engine/common/flutter_patched_sdk/ --target=flutter -Ddart.developer.causal_async_stacks=true -Ddart.vm.profile=false -Ddart.vm.product=false
--bytecode-options=source-positions,local-var-info,debugger-stops,instance-field-initializers,keep-unreachable-code,avoid-closure-call-instructions --enable-asserts --track-widget-creation --no-link-platform --packages /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/.packages --output-dill
/Users/captainpark/Developer/njovy/apps/votox/untitled/bug/.dart_tool/flutter_build/99b9e50f13fc182952132c952bba1d68/app.dill --depfile /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/.dart_tool/flutter_build/99b9e50f13fc182952132c952bba1d68/kernel_snapshot.d package:bug/main.dart
[+4379 ms] [+4951 ms] kernel_snapshot: Complete
[ +500 ms] [ +523 ms] debug_android_application: Starting due to {InvalidatedReason.inputChanged}
[ +101 ms] [ +122 ms] debug_android_application: Complete
[ +299 ms] [ +262 ms] Persisting file store
[        ] [   +4 ms] Done persisting file store
[        ] [   +4 ms] build succeeded.
[        ] [   +8 ms] "flutter assemble" took 6,509ms.
[ +196 ms] > Task :app:packLibsflutterBuildDebug UP-TO-DATE
[        ] > Task :app:preBuild UP-TO-DATE
[        ] > Task :app:preDebugBuild UP-TO-DATE
[        ] > Task :app:checkDebugManifest UP-TO-DATE
[        ] > Task :app:generateDebugBuildConfig UP-TO-DATE
[        ] > Task :app:compileDebugRenderscript NO-SOURCE
[        ] > Task :app:compileDebugAidl NO-SOURCE
[        ] > Task :app:cleanMergeDebugAssets
[        ] > Task :app:mergeDebugShaders UP-TO-DATE
[        ] > Task :app:compileDebugShaders UP-TO-DATE
[        ] > Task :app:generateDebugAssets UP-TO-DATE
[        ] > Task :app:mergeDebugAssets
[ +299 ms] > Task :app:copyFlutterAssetsDebug
[        ] > Task :app:mainApkListPersistenceDebug UP-TO-DATE
[        ] > Task :app:generateDebugResValues UP-TO-DATE
[        ] > Task :app:generateDebugResources UP-TO-DATE
[        ] > Task :app:mergeDebugResources UP-TO-DATE
[        ] > Task :app:createDebugCompatibleScreenManifests UP-TO-DATE
[        ] > Task :app:processDebugManifest UP-TO-DATE
[        ] > Task :app:processDebugResources UP-TO-DATE
[  +99 ms] > Task :app:compileDebugKotlin UP-TO-DATE
[        ] > Task :app:javaPreCompileDebug UP-TO-DATE
[        ] > Task :app:compileDebugJavaWithJavac UP-TO-DATE
[        ] > Task :app:compileDebugSources UP-TO-DATE
[        ] > Task :app:processDebugJavaRes NO-SOURCE
[        ] > Task :app:mergeDebugJavaResource UP-TO-DATE
[        ] > Task :app:checkDebugDuplicateClasses UP-TO-DATE
[        ] > Task :app:transformClassesWithDexBuilderForDebug UP-TO-DATE
[        ] > Task :app:validateSigningDebug UP-TO-DATE
[        ] > Task :app:desugarDebugFileDependencies UP-TO-DATE
[        ] > Task :app:mergeExtDexDebug UP-TO-DATE
[        ] > Task :app:mergeDexDebug UP-TO-DATE
[        ] > Task :app:signingConfigWriterDebug UP-TO-DATE
[        ] > Task :app:mergeDebugJniLibFolders UP-TO-DATE
[        ] > Task :app:mergeDebugNativeLibs UP-TO-DATE
[        ] > Task :app:stripDebugDebugSymbols UP-TO-DATE
[ +999 ms] > Task :app:packageDebug
[  +58 ms] > Task :app:assembleDebug
[        ] BUILD SUCCESSFUL in 9s
[        ] 31 actionable tasks: 6 executed, 25 up-to-date
[ +368 ms] Running Gradle task 'assembleDebug'... (completed in 10.4s)
[  +47 ms] calculateSha: LocalDirectory: '/Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk'/app.apk
[  +52 ms] calculateSha: reading file took 51us
[ +522 ms] calculateSha: computing sha took 522us
[   +4 ms] ✓ Built build/app/outputs/flutter-apk/app-debug.apk.
[   +3 ms] executing: /Users/captainpark/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[   +8 ms] Exit code 0 from: /Users/captainpark/Library/Android/sdk/build-tools/29.0.2/aapt dump xmltree /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk/app.apk AndroidManifest.xml
[        ] N: android=http://schemas.android.com/apk/res/android
             E: manifest (line=2)
               A: android:versionCode(0x0101021b)=(type 0x10)0x1
               A: android:versionName(0x0101021c)="1.0.0" (Raw: "1.0.0")
               A: android:compileSdkVersion(0x01010572)=(type 0x10)0x1c
               A: android:compileSdkVersionCodename(0x01010573)="9" (Raw: "9")
               A: package="com.example.bug" (Raw: "com.example.bug")
               A: platformBuildVersionCode=(type 0x10)0x1c
               A: platformBuildVersionName=(type 0x10)0x9
               E: uses-sdk (line=7)
                 A: android:minSdkVersion(0x0101020c)=(type 0x10)0x10
                 A: android:targetSdkVersion(0x01010270)=(type 0x10)0x1c
               E: uses-permission (line=14)
                 A: android:name(0x01010003)="android.permission.INTERNET" (Raw: "android.permission.INTERNET")
               E: application (line=22)
                 A: android:label(0x01010001)="bug" (Raw: "bug")
                 A: android:icon(0x01010002)=@0x7f080000
                 A: android:name(0x01010003)="io.flutter.app.FlutterApplication" (Raw: "io.flutter.app.FlutterApplication")
                 A: android:debuggable(0x0101000f)=(type 0x12)0xffffffff
                 A: android:appComponentFactory(0x0101057a)="androidx.core.app.CoreComponentFactory" (Raw: "androidx.core.app.CoreComponentFactory")
                 E: activity (line=28)
                   A: android:theme(0x01010000)=@0x7f0a0000
                   A: android:name(0x01010003)="com.example.bug.MainActivity" (Raw: "com.example.bug.MainActivity")
                   A: android:launchMode(0x0101001d)=(type 0x10)0x1
                   A: android:configChanges(0x0101001f)=(type 0x11)0x40003fb4
                   A: android:windowSoftInputMode(0x0101022b)=(type 0x11)0x10
                   A: android:hardwareAccelerated(0x010102d3)=(type 0x12)0xffffffff
                   E: meta-data (line=42)
                     A: android:name(0x01010003)="io.flutter.embedding.android.NormalTheme" (Raw: "io.flutter.embedding.android.NormalTheme")
                     A: android:resource(0x01010025)=@0x7f0a0001
                   E: meta-data (line=52)
                     A: android:name(0x01010003)="io.flutter.embedding.android.SplashScreenDrawable" (Raw: "io.flutter.embedding.android.SplashScreenDrawable")
                     A: android:resource(0x01010025)=@0x7f040000
                   E: intent-filter (line=56)
                     E: action (line=57)
                       A: android:name(0x01010003)="android.intent.action.MAIN" (Raw: "android.intent.action.MAIN")
                     E: category (line=59)
                       A: android:name(0x01010003)="android.intent.category.LAUNCHER" (Raw: "android.intent.category.LAUNCHER")
                 E: meta-data (line=66)
                   A: android:name(0x01010003)="flutterEmbedding" (Raw: "flutterEmbedding")
                   A: android:value(0x01010024)=(type 0x10)0x2
[  +34 ms] Stopping app 'app.apk' on SM G981N.
[        ] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell am force-stop com.example.bug
[ +149 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell pm list packages com.example.bug
[  +66 ms] package:com.example.bug
[   +2 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell cat /data/local/tmp/sky.com.example.bug.sha1
[  +29 ms] 30ed02e2c84c9ac7f916b6f890f91829dcd897af
[        ] Installing APK.
[   +1 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb version
[   +6 ms] Android Debug Bridge version 1.0.41
           Version 29.0.5-5949299
           Installed as /Users/captainpark/Library/Android/sdk/platform-tools/adb
[   +1 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb start-server
[   +8 ms] Installing build/app/outputs/flutter-apk/app.apk...
[        ] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T install -t -r /Users/captainpark/Developer/njovy/apps/votox/untitled/bug/build/app/outputs/flutter-apk/app.apk
[+4370 ms] Performing Streamed Install
                    Success
[        ] Installing build/app/outputs/flutter-apk/app.apk... (completed in 4.4s)
[   +1 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell echo -n 72174098b1b8cc88872a4ceb7cab2d7853677143 > /data/local/tmp/sky.com.example.bug.sha1
[  +22 ms] SM G981N startApp
[   +3 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T shell am start -a android.intent.action.RUN -f 0x20000000 --ez enable-background-compilation true --ez enable-dart-profiling true --ez enable-checked-mode true --ez verify-entry-points true
com.example.bug/com.example.bug.MainActivity
[  +62 ms] Starting: Intent { act=android.intent.action.RUN flg=0x20000000 cmp=com.example.bug/.MainActivity (has extras) }
[        ] Waiting for observatory port to be available...
[ +859 ms] Observatory URL on device: http://127.0.0.1:41387/2AMXPTqusSM=/
[   +1 ms] executing: /Users/captainpark/Library/Android/sdk/platform-tools/adb -s R3CN40AGS3T forward tcp:0 tcp:41387
[   +8 ms] 49304
[        ] Forwarded host port 49304 to device port 41387 for Observatory
[  +10 ms] Connecting to service protocol: http://127.0.0.1:49304/2AMXPTqusSM=/
[ +147 ms] Successfully connected to service protocol: http://127.0.0.1:49304/2AMXPTqusSM=/
[        ] Waiting for SM G981N to report its views...
[   +5 ms] Waiting for SM G981N to report its views... (completed in 4ms)
[   +7 ms] DevFS: Creating new filesystem on the device (null)
[  +14 ms] DevFS: Created new filesystem on the device (file:///data/user/0/com.example.bug/code_cache/bugUBXGDS/bug/)
[   +1 ms] Updating assets
[  +72 ms] Syncing files to device SM G981N...
[   +1 ms] Scanning asset files
[   +1 ms] <- reset
[        ] Compiling dart to kernel with 0 updated files
[        ] <- recompile package:bug/main.dart 66e966e3-a670-46fa-b8e3-4afa1b2a53b8
[        ] <- 66e966e3-a670-46fa-b8e3-4afa1b2a53b8
[  +39 ms] Updating files
[  +72 ms] DevFS: Sync finished
[        ] Syncing files to device SM G981N... (completed in 115ms)
[        ] Synced 0.9MB.
[        ] <- accept
[   +2 ms] Connected to _flutterView/0x75f3c37020.
[   +1 ms] Flutter run key commands.
[   +1 ms] r Hot reload. 🔥🔥🔥
[        ] R Hot restart.
[        ] h Repeat this help message.
[        ] d Detach (terminate "flutter run" but leave application running).
[        ] c Clear the screen
[        ] q Quit (terminate the application on the device).
[        ] An Observatory debugger and profiler on SM G981N is available at: http://127.0.0.1:49304/2AMXPTqusSM=/



Analyzing bug...                                                        
No issues found! (ran in 1.8s)

[✓] Flutter (Channel beta, 1.19.0-4.3.pre, on Mac OS X 10.15.3 19D76, locale en-KR)
    • Flutter version 1.19.0-4.3.pre at /Users/captainpark/Library/Flutter/sdk
    • Framework revision 8fe7655ed2 (7 days ago), 2020-07-01 14:31:18 -0700
    • Engine revision 9a28c3bcf4
    • Dart version 2.9.0 (build 2.9.0-14.1.beta)

 
[✓] Android toolchain - develop for Android devices (Android SDK version 29.0.2)
    • Android SDK at /Users/captainpark/Library/Android/sdk
    • Platform android-29, build-tools 29.0.2
    • ANDROID_HOME = /Users/captainpark/Library/Android/sdk
    • Java binary at: /Applications/Android Studio.app/Contents/jre/jdk/Contents/Home/bin/java
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)
    • All Android licenses accepted.

[✓] Xcode - develop for iOS and macOS (Xcode 11.5)
    • Xcode at /Applications/Xcode.app/Contents/Developer
    • Xcode 11.5, Build version 11E608c
    • CocoaPods version 1.8.4

[✓] Android Studio (version 3.5)
    • Android Studio at /Applications/Android Studio.app/Contents
    • Flutter plugin version 41.1.2
    • Dart plugin version 191.8593
    • Java version OpenJDK Runtime Environment (build 1.8.0_202-release-1483-b49-5587405)

[✓] IntelliJ IDEA Ultimate Edition (version 2020.1)
    • IntelliJ at /Applications/IntelliJ IDEA.app
    • Flutter plugin version 46.0.3
    • Dart plugin version 201.7223.43

[✓] Connected device (1 available)
    • SM G981N • R3CN40AGS3T • android-arm64 • Android 10 (API 29)

• No issues found!

Metadata

Metadata

Assignees

No one assigned

    Labels

    P2Important issues not at the top of the work lista: text inputEntering text in a text field or keyboard related problemse: device-specificOnly manifests on certain devicesengineflutter/engine related. See also e: labels.f: material designflutter/packages/flutter/material repository.found in release: 1.20Found to occur in 1.20frameworkflutter/packages/flutter repository. See also f: labels.has reproducible stepsThe issue has been confirmed reproducible and is ready to work on

    Type

    No type
    No fields configured for issues without a type.

    Projects

    No projects

    Milestone

    No milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions