• 런타임 오류

에러 메시지

RTE (SIGKILL: program was forcefully killed, probably memory limit exceeded)

소스 코드

#include <cstdio>

#include <map>

#include <vector>

#include <string>

#include <memory>

#include <algorithm>

 

using namespace std;

 

struct Trie

{

struct Node

{

int next[26];

int marker;

Node() : marker(-1) { fill(next, next + 26, 0);  }

};

vector<Node> nodes;

};

 

int main()

{

int T;

scanf("%d", &T);

for (int testcase = 1; testcase <= T; testcase++)

{

unique_ptr<char[]> buffer(new char[2030]);

scanf("%s", buffer.get());

string dat(buffer.get());

Trie t;

t.nodes.emplace_back();

int bestL = 0;

int n = dat.size();

for (int i = 0; i < n; i++)

{

int mid = dat[i] - 'a';

int limit = min(i, n - i - 1);

int nodeind = 0;

for (int j = 1; j <= limit; j++)

{

for (int k = 0; k < 2; k++) {

int cur;

if (k == 0) {

cur = dat[i - j] - 'a';

}

else {

cur = dat[i + j] - 'a';

}

int next = t.nodes[nodeind].next[cur];

if (next == 0) {

next = t.nodes[nodeind].next[cur] = t.nodes.size();

t.nodes.emplace_back();

}

nodeind = next;

}

int prevMarker = t.nodes[nodeind].marker;

if (prevMarker != -1 && prevMarker != mid)

{

bestL = max(bestL, j);

}

t.nodes[nodeind].marker = mid;

}

}

if (bestL == 0) {

puts("lonely island");

continue;

}

map<string, int> candidates;

for (int i = 0; i + bestL + 1 + bestL <= n; i++) {

string sub(dat.substr(i, bestL) + dat.substr(i + bestL + 1, bestL));

char mid = dat[i + bestL] - 'a';

candidates[sub] |= (1<<mid);

}

string answer;

for (const auto &kv : candidates)

{

int b1 = -1, b2 = -1;

for (int i = 0; i < 26; i++) {

if (kv.second & (1 << i)) {

if (b1 != -1) {

b2 = i;

break;

}

b1 = i;

}

}

if (b1 == -1 || b2 == -1)

continue;

string formatted = kv.first.substr(0, bestL);

formatted += b1 + 'a';

formatted += kv.first.substr(bestL, bestL);

formatted += " ";

formatted += kv.first.substr(0, bestL);

formatted += b2 + 'a';

formatted += kv.first.substr(bestL, bestL);

if (answer.empty() || answer > formatted) {

answer = formatted;

}

}

puts(answer.c_str());

}

return 0;

}

 

class Solution {

    public int solution(int[] A) {

        // write your code in Java SE 8

        int partAlange = 0;

        int minValue = Integer.MAX_VALUE;

       

        int partAsum = 0;

        int partBsum = 0;

       

        for(int j=0; j < A.length ; j++) {

        for(int i=0; i < A.length ; i++) {

            if(i<=partAlange) partAsum += A[i];

            else partBsum += A[i];           

        }

        minValue = Math.min(Math.abs(partAsum - partBsum), minValue);

            partAsum = 0;

            partBsum = 0;

            partAlange++;

    }

       

        return minValue;

    }

}

'Blog History' 카테고리의 다른 글

118  (0) 2020.03.21
117  (0) 2020.03.21
115  (0) 2020.03.19
MAC 개발자가 추천 하는 애플리케이션 - 1  (0) 2020.03.17
아이폰 개발자가 추천하는 지하철 앱  (0) 2020.03.15

UnsatisfiableError: The following specifications were found

to be incompatible with the existing python installation in your environment:

 

Specifications:

 

- keras -> python[version='>=2.7,<2.8.0a0|>=3.5,<3.6.0a0|>=3.6,<3.7.0a0']

 

Your python: python=3.7

 

If python is on the left-most side of the chain, that's the version you've asked for.

When python appears to the right, that indicates that the thing on the left is somehow

not available for the python version you are constrained to. Note that conda will not

change your python version to a different minor version unless you explicitly specify

that.

 

The following specifications were found to be incompatible with each other:

 

Output in format: Requested package -> Available versions

 

Package tensorflow-estimator conflicts for:

tensorflow-mkl -> tensorflow==2.0.0 -> tensorflow-estimator[version='>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow-probability -> tensorflow[version='>=1.14.0'] -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow -> tensorflow-base==1.13.1=mkl_py27hc36dc97_0 -> tensorflow-estimator[version='>=1.13.0,<1.14.0a0']

tensorflow-base -> tensorflow-estimator[version='>=1.13.0,<1.14.0a0']

tensorflow-hub -> tensorflow[version='>=1.7.0'] -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow-datasets -> tensorflow[version='>=1.14'] -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

keras -> tensorflow -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow-metadata -> tensorflow -> tensorflow-estimator[version='>=1.14.0,<1.15.0|>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

tensorflow-eigen -> tensorflow==2.0.0 -> tensorflow-estimator[version='>=1.15.0|>=2.0.0|>=2.0.0,<2.1.0a0']

 

Package backports.weakref conflicts for:

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> backports.weakref[version='>=1.0.0inf.1,<2.0a0|>=1.0rc1']

tensorflow -> tensorflow-base==2.0.0=mkl_py27h66b1bf0_0 -> backports.weakref[version='>=1.0.0inf.1,<2.0a0|>=1.0rc1']

tensorflow-base -> backports.weakref[version='>=1.0.0inf.1,<2.0a0|>=1.0rc1']

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> backports.weakref[version='>=1.0.0inf.1,<2.0a0|>=1.0rc1']

 

Package libgfortran conflicts for:

tensorflow-datasets -> numpy -> libgfortran[version='>=3.0.1,<4.0.0.a0']

tensorflow-base -> numpy[version='>=1.16.5,<2.0a0'] -> libgfortran[version='>=3.0.1,<4.0.0.a0']

tensorflow-estimator -> numpy[version='>=1.13.3'] -> libgfortran[version='>=3.0.1,<4.0.0.a0']

tensorflow-probability -> numpy[version='>=1.13.3'] -> libgfortran[version='>=3.0.1,<4.0.0.a0']

r-tensorflow -> r-base[version='>=3.6,<3.7.0a0'] -> libgfortran[version='>=3.0.1|>=3.0.1,<4.0.0.a0']

tensorflow-hub -> numpy[version='>=1.12.0'] -> libgfortran[version='>=3.0.1,<4.0.0.a0']

opt_einsum -> numpy -> libgfortran[version='>=3.0.1,<4.0.0.a0']

keras -> numpy[version='>=1.9.1'] -> libgfortran[version='>=3.0.1,<4.0.0.a0']

 

Package opt_einsum conflicts for:

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> opt_einsum[version='>=2.3.2|>=2.3.2,<3.0a0|>=3.1.0,<4.0a0']

tensorflow-base -> opt_einsum[version='>=2.3.2|>=2.3.2,<3.0a0|>=3.1.0,<4.0a0']

tensorflow -> tensorflow-base==2.0.0=mkl_py27h66b1bf0_0 -> opt_einsum[version='>=2.3.2,<3.0a0|>=2.3.2|>=3.1.0,<4.0a0']

 

Package mock conflicts for:

tensorflow-estimator -> mock[version='>=2.0.0']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> mock[version='>=2.0.0,<3.0a0|>=3.0.5,<4.0a0']

 

Package enum34 conflicts for:

tensorflow-base -> grpcio[version='>=1.8.6'] -> enum34[version='>=1.0.4']

tensorflow -> tensorflow-base==2.0.0=mkl_py27h66b1bf0_0 -> enum34[version='>=1.1.6|>=1.1.6,<2.0a0']

tensorflow-base -> enum34[version='>=1.1.6|>=1.1.6,<2.0a0']

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> enum34[version='>=1.1.6|>=1.1.6,<2.0a0']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> enum34[version='>=1.1.6|>=1.1.6,<2.0a0']

tensorflow-datasets -> enum34

 

Package numpy conflicts for:

tensorflow-datasets -> numpy

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> numpy[version='>=1.14.6,<2.0a0|>=1.16.5,<2.0a0']

tensorflow-base -> keras-applications[version='>=1.0.8'] -> numpy[version='>=1.13.3|>=1.9.1']

keras-gpu -> keras-base=2.3.1 -> numpy[version='>=1.9.1']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> numpy[version='>=1.14.6,<2.0a0|>=1.16.5,<2.0a0']

tensorflow -> tensorboard[version='>=2.0.0'] -> numpy[version='>=1.12|>=1.12.0|>=1.16|>=1.16.5,<2.0a0|>=1.14.6,<2.0a0|>=1.13.3,<2.0a0']

tensorflow-base -> numpy[version='>=1.13.3,<2.0a0|>=1.14.6,<2.0a0|>=1.16.5,<2.0a0']

tensorflow-hub -> numpy[version='>=1.12.0']

opt_einsum -> numpy

keras -> h5py -> numpy[version='>=1.11.3,<2.0a0|>=1.16.6,<2.0a0|>=1.14.6,<2.0a0|>=1.15.1,<2.0a0|>=1.9.3,<2.0a0']

keras -> numpy[version='>=1.9.1']

tensorflow-estimator -> numpy[version='>=1.13.3']

tensorflow-probability -> numpy[version='>=1.13.3']

 

Package libprotobuf conflicts for:

tensorflow-metadata -> protobuf[version='>=3.7,<4'] -> libprotobuf[version='3.10.1.*|3.11.2.*|3.11.3.*|3.11.4.*|>=3.11.4,<3.12.0a0|>=3.11.3,<3.12.0a0|>=3.11.2,<3.12.0a0|>=3.10.1,<3.11.0a0|3.9.2.*|>=3.9.2,<3.10.0a0|3.8.0.*|>=3.8.0,<3.9.0a0|>=3.7.1,<3.8.0a0']

tensorflow-hub -> protobuf[version='>=3.4.0'] -> libprotobuf[version='3.10.1.*|3.11.2.*|3.11.3.*|3.11.4.*|>=3.11.4,<3.12.0a0|>=3.11.3,<3.12.0a0|>=3.11.2,<3.12.0a0|>=3.10.1,<3.11.0a0|3.9.2.*|>=3.9.2,<3.10.0a0|3.8.0.*|>=3.8.0,<3.9.0a0|>=3.7.1,<3.8.0a0|>=3.6.1,<3.6.2.0a0|>=3.6.0,<3.6.1.0a0|>=3.5.2,<3.6.0a0|>=3.5.1,<3.6.0a0|>=3.4.1,<3.5.0a0']

tensorflow-datasets -> protobuf[version='>=3.6.1'] -> libprotobuf[version='3.10.1.*|3.11.2.*|3.11.3.*|3.11.4.*|>=3.11.4,<3.12.0a0|>=3.11.3,<3.12.0a0|>=3.11.2,<3.12.0a0|>=3.10.1,<3.11.0a0|3.9.2.*|>=3.9.2,<3.10.0a0|3.8.0.*|>=3.8.0,<3.9.0a0|>=3.7.1,<3.8.0a0|>=3.6.1,<3.6.2.0a0']

tensorflow-base -> protobuf[version='>=3.6.1'] -> libprotobuf[version='3.10.1.*|3.11.2.*|3.11.3.*|3.11.4.*|>=3.11.4,<3.12.0a0|>=3.11.3,<3.12.0a0|>=3.11.2,<3.12.0a0|>=3.10.1,<3.11.0a0|3.9.2.*|>=3.9.2,<3.10.0a0|3.8.0.*|>=3.8.0,<3.9.0a0|>=3.7.1,<3.8.0a0|>=3.6.1,<3.6.2.0a0|>=3.6.0,<3.6.1.0a0|>=3.5.2,<3.6.0a0|>=3.5.1,<3.6.0a0|>=3.4.1,<3.5.0a0']

 

Package h5py conflicts for:

keras-gpu -> keras-base=2.3.1 -> h5py

keras -> h5py

tensorflow-base -> keras-applications[version='>=1.0.8'] -> h5py

 

Package libcxxabi conflicts for:

tensorflow-base -> libcxx[version='>=4.0.1'] -> libcxxabi==4.0.1[build='hebd6815_0|hcfea43d_1']

python=3.7 -> libcxx[version='>=4.0.1'] -> libcxxabi==4.0.1[build='hebd6815_0|hcfea43d_1']

 

Package six conflicts for:

tensorflow-metadata -> protobuf[version='>=3.7,<4'] -> six

keras-gpu -> keras-base=2.3.1 -> six[version='>=1.9.0']

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> six[version='>=1.12.0,<2.0a0']

tensorflow-base -> grpcio[version='>=1.8.6'] -> six[version='>=1.5.2|>=1.9.0']

tensorflow-estimator -> tensorflow-base[version='>=1.15.0,<1.16.0a0'] -> six[version='>=1.12.0,<2.0a0']

keras -> six[version='>=1.9.0']

tensorflow-estimator -> six[version='>=1.10.0']

tensorflow-base -> six[version='>=1.10.0|>=1.12.0,<2.0a0']

tensorflow-probability -> six[version='>=1.10.0']

tensorflow-hub -> protobuf[version='>=3.4.0'] -> six

tensorflow-datasets -> six

tensorflow -> tensorboard[version='>=2.0.0'] -> six[version='>=1.10.0|>=1.12|>=1.12.0,<2.0a0']

keras -> h5py -> six

tensorflow-hub -> six[version='>=1.10.0']

 

Package keras-applications conflicts for:

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> keras-applications[version='>=1.0.6|>=1.0.8|>=1.0.8,<2.0a0']

keras-gpu -> keras-base=2.3.1 -> keras-applications[version='1.0.2.*|1.0.4.*|>=1.0.6']

keras -> keras-base=2.3.1 -> keras-applications[version='1.0.2.*|1.0.4.*|>=1.0.6']

tensorflow -> tensorflow-base==2.0.0=mkl_py27h66b1bf0_0 -> keras-applications[version='>=1.0.5|>=1.0.6|>=1.0.8|>=1.0.8,<2.0a0']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> keras-applications[version='>=1.0.6|>=1.0.8|>=1.0.8,<2.0a0']

tensorflow-base -> keras-applications[version='>=1.0.5|>=1.0.6|>=1.0.8|>=1.0.8,<2.0a0']

 

Package libcxx conflicts for:

python=3.7 -> libcxx[version='>=4.0.1']

r-tensorflow -> r-base[version='>=3.6,<3.7.0a0'] -> libcxx[version='>=4.0.1']

tensorflow-estimator -> python -> libcxx[version='>=4.0.1']

tensorflow-probability -> python -> libcxx[version='>=4.0.1']

tensorflow-metadata -> protobuf[version='>=3.7,<4'] -> libcxx[version='>=4.0.1']

tensorflow -> python=2.7 -> libcxx[version='>=4.0.1']

tensorflow-datasets -> protobuf[version='>=3.6.1'] -> libcxx[version='>=4.0.1']

tensorflow-hub -> protobuf[version='>=3.4.0'] -> libcxx[version='>=4.0.1']

keras -> python[version='>=3.5,<3.6.0a0'] -> libcxx[version='>=4.0.1']

tensorflow-base -> libcxx[version='>=4.0.1']

opt_einsum -> python[version='>=3.5'] -> libcxx[version='>=4.0.1']

 

Package tensorflow conflicts for:

tensorflow-metadata -> tensorflow

tensorflow-eigen -> tensorflow[version='1.10.0|1.11.0|1.12.0|1.13.1|1.15.0|2.0.0|1.9.0']

tensorflow-datasets -> tensorflow[version='>=1.14']

tensorflow-datasets -> tensorflow-metadata -> tensorflow

tensorflow-hub -> tensorflow[version='>=1.7.0']

keras -> tensorflow[version='<2.0']

tensorflow-mkl -> tensorflow[version='1.11.0|1.12.0|1.13.1|1.15.0|2.0.0|1.9.0']

tensorflow-probability -> tensorflow[version='>=1.14.0']

 

Package libffi conflicts for:

tensorflow-datasets -> python[version='>=3.8,<3.9.0a0'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

tensorflow-base -> python[version='>=3.6,<3.7.0a0'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

python=3.7 -> libffi[version='>=3.2.1,<4.0a0']

tensorflow-estimator -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

tensorflow-probability -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

tensorflow-metadata -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

keras -> python[version='>=3.5,<3.6.0a0'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

opt_einsum -> python[version='>=3.5'] -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

tensorflow -> python=2.7 -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

tensorflow-hub -> python -> libffi[version='3.2.*|>=3.2.1,<4.0a0']

 

Package protobuf conflicts for:

tensorflow-probability -> tensorflow-base[version='>=1.15.0'] -> protobuf[version='>=3.6.1|>=3.6.1,<4.0a0']

tensorflow-datasets -> protobuf[version='>=3.6.1']

tensorflow-metadata -> protobuf[version='>=3.7,<4']

tensorflow-hub -> protobuf[version='>=3.4.0']

tensorflow-metadata -> googleapis-common-protos -> protobuf

tensorflow-base -> protobuf[version='>=3.4.0|>=3.6.0|>=3.6.1|>=3.6.1,<4.0a0']

tensorflow -> tensorboard[version='>=2.0.0'] -> protobuf[version='>=3.4.0|>=3.6.0|>=3.6.1,<4.0a0|>=3.6.1|>=3.8.0']

tensorflow-base -> grpcio[version='>=1.8.6'] -> protobuf[version='>=3.5.0']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> protobuf[version='>=3.6.1|>=3.6.1,<4.0a0']

tensorflow-datasets -> tensorflow-metadata -> protobuf[version='>=3.7,<4']

 

Package numpy-base conflicts for:

keras -> numpy[version='>=1.9.1'] -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|>=1.9.3,<2.0a0|1.17.0|1.17.0',build='py27ha9ae307_6|py37h9797aa9_6|py36h9797aa9_6|py37h9797aa9_7|py37ha9ae307_7|py35ha9ae307_7|py27ha9ae307_7|py27h9797aa9_7|py37h9797aa9_7|py27ha9ae307_7|py27h9797aa9_8|py36ha9ae307_8|py36h9797aa9_8|py37ha9ae307_8|py37h9797aa9_8|py35h9797aa9_8|py35ha9ae307_8|py37h8a80b8c_9|py27h8a80b8c_9|py36h8a80b8c_9|py35h8a80b8c_9|py27he97cb71_9|py37h42e5f7b_10|py35h42e5f7b_10|py27h8a80b8c_10|py37h8a80b8c_10|py36h42e5f7b_10|py35ha711998_10|py37ha711998_10|py36ha711998_11|py37h6575580_11|py36h6575580_11|py36h6575580_12|py27h6575580_12|py27ha711998_12|py38ha711998_12|py38h6575580_13|py38ha711998_14|py38h6575580_14|py38ha711998_15|py38h6575580_15|py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py38ha711998_13|py38h6575580_12|py37h6575580_12|py36ha711998_12|py37ha711998_12|py27h6575580_11|py27ha711998_11|py37ha711998_11|py36ha711998_10|py27ha711998_10|py35h8a80b8c_10|py36h8a80b8c_10|py27h42e5f7b_10|py35he97cb71_9|py36he97cb71_9|py37he97cb71_9|py27ha9ae307_8|py37ha9ae307_7|py36ha9ae307_7|py36h9797aa9_7|py27h9797aa9_7|py36ha9ae307_7|py36h9797aa9_7|py35h9797aa9_7|py36ha9ae307_6|py37ha9ae307_6|py27h9797aa9_6|py36h6575580_0|py36ha711998_0']

opt_einsum -> numpy -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|>=1.9.3,<2.0a0|1.17.0|1.17.0',build='py27ha9ae307_6|py37h9797aa9_6|py36h9797aa9_6|py37h9797aa9_7|py37ha9ae307_7|py35ha9ae307_7|py27ha9ae307_7|py27h9797aa9_7|py37h9797aa9_7|py27ha9ae307_7|py27h9797aa9_8|py36ha9ae307_8|py36h9797aa9_8|py37ha9ae307_8|py37h9797aa9_8|py35h9797aa9_8|py35ha9ae307_8|py37h8a80b8c_9|py27h8a80b8c_9|py36h8a80b8c_9|py35h8a80b8c_9|py27he97cb71_9|py37h42e5f7b_10|py35h42e5f7b_10|py27h8a80b8c_10|py37h8a80b8c_10|py36h42e5f7b_10|py35ha711998_10|py37ha711998_10|py36ha711998_11|py37h6575580_11|py36h6575580_11|py36h6575580_12|py27h6575580_12|py27ha711998_12|py38ha711998_12|py38h6575580_13|py38ha711998_14|py38h6575580_14|py38ha711998_15|py38h6575580_15|py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py38ha711998_13|py38h6575580_12|py37h6575580_12|py36ha711998_12|py37ha711998_12|py27h6575580_11|py27ha711998_11|py37ha711998_11|py36ha711998_10|py27ha711998_10|py35h8a80b8c_10|py36h8a80b8c_10|py27h42e5f7b_10|py35he97cb71_9|py36he97cb71_9|py37he97cb71_9|py27ha9ae307_8|py37ha9ae307_7|py36ha9ae307_7|py36h9797aa9_7|py27h9797aa9_7|py36ha9ae307_7|py36h9797aa9_7|py35h9797aa9_7|py36ha9ae307_6|py37ha9ae307_6|py27h9797aa9_6|py36h6575580_0|py36ha711998_0']

tensorflow-datasets -> numpy -> numpy-base[version='1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.11.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|1.9.3|>=1.9.3,<2.0a0|1.17.0|1.17.0',build='py27ha9ae307_6|py37h9797aa9_6|py36h9797aa9_6|py37h9797aa9_7|py37ha9ae307_7|py35ha9ae307_7|py27ha9ae307_7|py27h9797aa9_7|py37h9797aa9_7|py27ha9ae307_7|py27h9797aa9_8|py36ha9ae307_8|py36h9797aa9_8|py37ha9ae307_8|py37h9797aa9_8|py35h9797aa9_8|py35ha9ae307_8|py37h8a80b8c_9|py27h8a80b8c_9|py36h8a80b8c_9|py35h8a80b8c_9|py27he97cb71_9|py37h42e5f7b_10|py35h42e5f7b_10|py27h8a80b8c_10|py37h8a80b8c_10|py36h42e5f7b_10|py35ha711998_10|py37ha711998_10|py36ha711998_11|py37h6575580_11|py36h6575580_11|py36h6575580_12|py27h6575580_12|py27ha711998_12|py38ha711998_12|py38h6575580_13|py38ha711998_14|py38h6575580_14|py38ha711998_15|py38h6575580_15|py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py38ha711998_13|py38h6575580_12|py37h6575580_12|py36ha711998_12|py37ha711998_12|py27h6575580_11|py27ha711998_11|py37ha711998_11|py36ha711998_10|py27ha711998_10|py35h8a80b8c_10|py36h8a80b8c_10|py27h42e5f7b_10|py35he97cb71_9|py36he97cb71_9|py37he97cb71_9|py27ha9ae307_8|py37ha9ae307_7|py36ha9ae307_7|py36h9797aa9_7|py27h9797aa9_7|py36ha9ae307_7|py36h9797aa9_7|py35h9797aa9_7|py36ha9ae307_6|py37ha9ae307_6|py27h9797aa9_6|py36h6575580_0|py36ha711998_0']

tensorflow-probability -> numpy[version='>=1.13.3'] -> numpy-base[version='1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.17.0|1.17.0',build='py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py36h6575580_0|py36ha711998_0']

tensorflow-estimator -> numpy[version='>=1.13.3'] -> numpy-base[version='1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.17.0|1.17.0',build='py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py36h6575580_0|py36ha711998_0']

tensorflow-base -> numpy[version='>=1.16.5,<2.0a0'] -> numpy-base[version='1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.17.0|1.17.0',build='py36h7ef55bc_1|py36h479e554_1|py27h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py27ha9ae307_0|py27h9797aa9_0|py27ha9ae307_0|py37h9797aa9_1|py37ha9ae307_1|py37h9797aa9_2|py37ha9ae307_2|py36ha9ae307_3|py27h9797aa9_3|py27ha9ae307_4|py27h9797aa9_4|py36ha9ae307_4|py37ha9ae307_4|py35ha9ae307_4|py36ha711998_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py38ha711998_4|py27ha711998_5|py37h6575580_5|py37h8a80b8c_0|py36h8a80b8c_0|py36he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_0|py36ha711998_0|py27ha711998_1|py36ha711998_1|py27h8a80b8c_1|py36h8a80b8c_1|py27ha711998_0|py27h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py36h6575580_0|py27ha711998_0|py37h6575580_0|py36h6575580_0|py27ha711998_1|py37h6575580_1|py36ha711998_1|py27h6575580_0|py37h6575580_0|py27ha711998_1|py36ha711998_0|py37h6575580_0|py37h6575580_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py27ha711998_0|py37h6575580_0|py36ha711998_0|py27h6575580_0|py37ha711998_0|py36h6575580_0|py27ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py36ha711998_1|py37ha711998_0|py36h6575580_0|py27ha711998_0|py36ha711998_0|py36h6575580_1|py27h6575580_1|py37ha711998_1|py27h6575580_0|py36ha711998_0|py37ha711998_0|py37ha711998_0|py36ha711998_0|py36h8a80b8c_0|py36ha711998_0|py37ha711998_0|py37h8a80b8c_0|py37h8a80b8c_1|py37ha711998_1|py35ha711998_0|py27h8a80b8c_0|py37ha711998_0|py27ha711998_0|py37ha711998_0|py35ha711998_0|py36ha711998_0|py27ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py37he97cb71_0|py27h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py37ha9ae307_3|py27ha9ae307_3|py37h9797aa9_3|py36h9797aa9_3|py27ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py36h9797aa9_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py35ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py35h479e554_1']

tensorflow-hub -> numpy[version='>=1.12.0'] -> numpy-base[version='1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.3|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.4|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.5|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.14.6|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.0|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.1|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.2|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.3|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.15.4|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.0|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.1|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.2|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.3|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.4|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.5|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.16.6|1.17.2.*|1.17.3.*|1.17.4.*|1.18.1.*|1.17.0|1.17.0',build='py36h7ef55bc_1|py36h479e554_1|py35h7ef55bc_1|py27h9797aa9_0|py35ha9ae307_0|py27h9797aa9_0|py36h9797aa9_1|py37h9797aa9_1|py37h9797aa9_2|py36ha9ae307_3|py27h9797aa9_3|py36h9797aa9_3|py37ha9ae307_3|py27h9797aa9_4|py37ha9ae307_4|py35ha9ae307_4|py35h8a80b8c_4|py27ha711998_4|py37h8a80b8c_4|py27h8a80b8c_4|py27ha711998_5|py37h6575580_5|py36h8a80b8c_0|py37he97cb71_0|py35h8a80b8c_0|py35he97cb71_0|py36h8a80b8c_0|py36h42e5f7b_0|py37h8a80b8c_0|py35h8a80b8c_0|py27ha711998_0|py36ha711998_0|py27ha711998_0|py37h8a80b8c_0|py35h8a80b8c_0|py36h8a80b8c_1|py37h8a80b8c_0|py27h8a80b8c_0|py36h8a80b8c_0|py27h8a80b8c_0|py37h8a80b8c_0|py36h8a80b8c_0|py27ha711998_0|py37h6575580_0|py27h6575580_0|py27ha711998_1|py36ha711998_1|py37ha711998_1|py27h6575580_1|py27ha711998_0|py36h6575580_0|py36ha711998_1|py27ha711998_1|py27ha711998_0|py27h6575580_0|py37h6575580_0|py27ha711998_0|py27ha711998_0|py27h6575580_0|py38h6575580_0|py38ha711998_0|py27ha711998_0|py27h6575580_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py37h6575580_0|py36h6575580_0|py36ha711998_0|py37ha711998_0|py36h6575580_0|py37h6575580_0|py27h6575580_0|py27ha711998_0|py37ha711998_0|py36ha711998_0|py36h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py37h6575580_0|py37ha711998_0|py36h6575580_0|py36ha711998_0|py36h6575580_1|py37ha711998_1|py37h6575580_1|py27h6575580_1|py37h6575580_0|py27h6575580_0|py37ha711998_0|py36ha711998_0|py36h6575580_1|py37h6575580_1|py36h6575580_0|py36ha711998_0|py37ha711998_0|py27ha711998_0|py36h6575580_0|py27h6575580_0|py37h6575580_0|py37ha711998_0|py36ha711998_0|py36ha711998_0|py27ha711998_0|py37ha711998_0|py37h8a80b8c_1|py27h8a80b8c_1|py36ha711998_1|py37ha711998_1|py27ha711998_1|py35ha711998_0|py36ha711998_0|py27h8a80b8c_0|py36h8a80b8c_0|py37ha711998_0|py37ha711998_0|py35ha711998_0|py27h8a80b8c_0|py27h42e5f7b_0|py35h42e5f7b_0|py37h42e5f7b_0|py36he97cb71_0|py27h8a80b8c_0|py37h8a80b8c_0|py27he97cb71_0|py37ha711998_5|py27h6575580_5|py36h6575580_5|py36ha711998_5|py38h6575580_4|py38ha711998_4|py36h8a80b8c_4|py37ha711998_4|py35ha711998_4|py36ha711998_4|py35h9797aa9_4|py37h9797aa9_4|py36h9797aa9_4|py36ha9ae307_4|py27ha9ae307_4|py27ha9ae307_3|py37h9797aa9_3|py27ha9ae307_2|py37ha9ae307_2|py27h9797aa9_2|py36ha9ae307_2|py36h9797aa9_2|py36ha9ae307_1|py27ha9ae307_1|py37ha9ae307_1|py27h9797aa9_1|py35h9797aa9_0|py35ha9ae307_0|py27ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py36h9797aa9_0|py36ha9ae307_0|py27ha9ae307_0|py35h9797aa9_0|py27h7ef55bc_1|py27h479e554_1|py35h479e554_1|py36h6575580_0|py36ha711998_0']

 

Package libstdcxx-ng conflicts for:

tensorflow-hub -> libstdcxx-ng[version='>=7.3.0']

tensorflow-metadata -> libstdcxx-ng[version='>=7.3.0']

tensorflow-datasets -> tensorflow-metadata -> libstdcxx-ng[version='>=7.3.0']

 

Package absl-py conflicts for:

tensorflow-estimator -> absl-py[version='>=0.1.6']

tensorflow-estimator -> tensorflow-base[version='>=2.0.0,<2.1.0a0'] -> absl-py[version='>=0.7.0|>=0.7.1,<1.0a0']

 

Package setuptools conflicts for:

tensorflow -> tensorboard[version='>=2.0.0'] -> setuptools[version='>=41.0.0']

tensorflow-hub -> protobuf[version='>=3.4.0'] -> setuptools

tensorflow-metadata -> protobuf[version='>=3.7,<4'] -> setuptools

python=3.7 -> pip -> setuptools

tensorflow-datasets -> protobuf[version='>=3.6.1'] -> setuptools

tensorflow-base -> grpcio[version='>=1.8.6'] -> setuptools

 

Package keras-base conflicts for:

keras -> keras-base[version='2.2.0.*|2.2.2.*|2.2.4.*|2.3.1.*']

keras-gpu -> keras-base[version='2.2.0.*|2.2.2.*|2.3.1.*']

 

Package futures conflicts for:

tensorflow -> tensorboard[version='>=2.0.0'] -> futures[version='>=3.1.1']

tensorflow-datasets -> futures

tensorflow-base -> grpcio[version='>=1.8.6'] -> futures[version='>=2.2.0']

 

Package pbr conflicts for:

tensorflow-estimator -> mock[version='>=2.0.0'] -> pbr

tensorflow-base -> mock[version='>=2.0.0'] -> pbr

 

Package wheel conflicts for:

tensorflow -> tensorboard[version='>=2.0.0'] -> wheel

python=3.7 -> pip -> wheel

 

Package requests conflicts for:

tensorflow-datasets -> requests[version='>=2.19.0']

tensorflow -> tensorboard[version='>=2.0.0'] -> requests[version='>=2.21.0,<3']

 

테이블 뷰는 iOS 개발자들이 정말 많이 쓰죠. cell에 객체 생성하고 해당 객체 포인터를 따로 담아둬서(UIButton같은) 나중에 for문으로 포인터만 뽑아서 해당 cell에 변화를 줍니다. 해당 버튼에 변화 줄 때 서버 상황에 따라 하나의 버튼만 교체하는 거면 notificaiton center로 바꾼다음 table reload. 테마를 바꾸는 거면 버튼 이미지 세팅되는 다른 메소드를 타게끔 글로벌 함수의 flag를 바꾸는 방식이죠.(무적 세마포어? 바이너리 세마포어, 뮤텍스) 그리고 객체 포인터를 넘길 수 있는 Objective-C는 View Controller의 모든 객체의 연결을 다른 ViewController로 포인터만 연결해서 마치 자기 View 처럼 쓸 수 있습니다. Viper 보다가 아이디어가 떠올라서 이제 데이터 넘길 때 싱글톤, delegate, notification center, user default, sqlite db, file등을 쓰지 않고 그냥 객체 포인터로 넘겨 버립니다. 제 생각에 Viper는 더블 버퍼링 쓰며 네트워크 게임 만드는 분들이라면 본인들도 모르게 썼던 것이라고 생각됩니다. 초창기 안드로이드 개발자들이 패턴 프로그래밍 모르면서 온갖 패턴으로 프로그래밍 했던 것 처럼... viper generator가 실패하지 않고 서버/클라이언트 모델도 잘 반영했다면, 이미 Xcode에 녹아 들어갔을텐데 하는 아쉬움이 있네요.

 

 

int main(){

int i,j,k;

int tarr[9];

factorial[0] = 1;

for(i=1;i<=8;i++){

factorial[i] = factorial[i-1]*i;

}

for(i=1;i<=8;i++){

dt[i][0] = 1;

memset(v,0,sizeof(v));

v[0] = 1;

h=t=0;

q[t++] = 0;

for(h=0;h<t;h++){

makeperm(i,tarr,q[h]);

for(j=0;j<i;j++){

for(k=j+1;k<i;k++){

reverse(tarr+j,tarr+k+1);

int tmpnum = numberit(i,tarr);

if(v[tmpnum] == 0){

v[tmpnum] = 1;

dt[i][tmpnum] = dt[i][q[h]] + 1;

q[t++] = tmpnum;

}

reverse(tarr+j,tarr+k+1);

}

}

}

}

int c;

scanf("%d",&c);

while(c-->0){

int n;

scanf("%d",&n);

for(i=0;i<n;i++){

scanf("%d",&tarr[i]);

}

printf("%d\n",dt[n][numberit(i,tarr)]-1);

}

return 0;

}

 

submission.cpp: In function ‘int main()’:
submission.cpp:54:23: error: ‘memset’ was not declared in this scope
submission.cpp:75:16: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
submission.cpp:78:17: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]
submission.cpp:80:24: warning: ignoring return value of ‘int scanf(const char*, ...)’, declared with attribute warn_unused_result [-Wunused-result]

 

#include <stdio.h>

#include <algorithm>

 

using namespace std;

 

int v[40322];

int factorial[9];

int dt[9][40322];

int q[40323],h,t;

 

int numberit(int size,int *perm){

int i,j,cnt,ret_val = 0;

for(i=0;i<size;i++){

cnt = 0;

for(j=i+1;j<size;j++){

if(perm[j] < perm[i]){

cnt++;

}

}

ret_val += cnt*factorial[size-i-1];

}

return ret_val;

}

 

void makeperm(int size,int *perm,int number){

int i,j;

int vt[9] = {0,};

for(i=0;i<size;i++){

int cnt = number/factorial[size-i-1];

for(j=0;;j++){

if(vt[j] == 0){

cnt --;

if(cnt < 0){

perm[i] = j;

vt[j] = 1;

break;

}

}

}

number %= factorial[size-i-1];

}

}

'Blog History' 카테고리의 다른 글

117  (0) 2020.03.21
116  (0) 2020.03.19
MAC 개발자가 추천 하는 애플리케이션 - 1  (0) 2020.03.17
아이폰 개발자가 추천하는 지하철 앱  (0) 2020.03.15
114  (0) 2020.03.15

정말 잘 만들었다.

어플보다는 애플이 나아서 ㅋㅋ 제목 저렇게 정함.

 

 

패러랠즈 : 윈도우 프로그램 실행을 위한 작은 준비(가격은 비싸지만 돈 값 함)

vmware도 오래 썼었는데 mac은 역시 패러랠즈 인 듯.

윈도우는 vmware 가 갑 오브 갑.

 

참, 패러렐즈는 디스크 정리 기능도 있음.

 

 

 

 

가격이 너무 비싸서 매년 구독하는데 MAC으로 돈을 버니 그나마 다행.

 

포토샵의 경우 GIMP로 넘어가서 간간히 버티지만 패러렐즈 없으면 힘듦. 

윈도우 뿐이라면 모르겠지만 컨설팅에 리눅스가 빠질 수도 없는 노릇이라 ...

'Blog History' 카테고리의 다른 글

116  (0) 2020.03.19
115  (0) 2020.03.19
아이폰 개발자가 추천하는 지하철 앱  (0) 2020.03.15
114  (0) 2020.03.15
113  (0) 2020.03.13

개인 개발자 앱, 네이버, 다음 둘 다 오래 쓰다
카카오 지하철로 통일.

'Blog History' 카테고리의 다른 글

115  (0) 2020.03.19
MAC 개발자가 추천 하는 애플리케이션 - 1  (0) 2020.03.17
114  (0) 2020.03.15
113  (0) 2020.03.13
112  (0) 2020.03.13

유튜브 정리/정렬 not sorting, arrangement

 

 

HISTORY Since. 2011

1. 가족 튜브로 운영.
2. 대기업 생활 전하는 채널로 운영.
3. 휴대폰 태우기 등 실험 채널로 운영.
4. 범죄자 잡기 위한 채널로 운영.
5. 판결문 읽어 주는 채널로 운영.
6. 가족 튜브로 회귀.
7. 청계천 라이브 999 시작 - 청계천, 사대문 안, live show 등의 컨텐츠로 999까지 운영 예정.
8. Departure 999 시작 - 유튜버 및 사회 문제를 생각하는 일반인.

인스타그램 정리하면서 유튜브의 커뮤니티로 옮기고 있습니다.
딱히, 연계성이나 메세지는 없으니 무시하시기 바랍니다.

채널 바로가기 : https://youtube.com/user/speedpointer

제보 : mynameis@hajunho.com
지지 언론 : 뉴스타파 https://newstapa.org

정보 아키텍쳐를 단순화하고 데이터 수집 역량 개선
데이터 거버넌스를 통해 신뢰할 수 있는 분석 기반 마련
데이터 분석 및 머신러닝 역량 효율화
AI를 비즈니스 전반으로 확산
Cyber Security, Compliance, 범죄 대응
단순 반복 업무의 자동화 (RPA)
임직원들의 비즈니스 의사 결정 지원
비즈니스 예측을 위한 인텔리전스 확보
고객 응대 서비스의 효율성 개선

https://publishsoft.io/ko

https://www.coindeskkorea.com/buteringweifordev/… 결국, 시중 통화 같이 수수료를 먹는 사람이 생겨나네요. 최종본은 은행과 같겠죠? 수수료가 지금은 싸지만 대부분의 사람들이 일하기 보다는 투기에 빠져있는 지금, 사회 전체적으로 봤을 때 과연 비용이 적게 들어가는 일인지 궁금합니다.

불러오는 중입니다...

 

<!--마무리멘트 시작1-->

<div class="txc-textbox" style="BOX-SIZING: border-box; FONT-SIZE: 14px; BORDER-TOP: rgb(254,137,67) 10px solid; FONT-FAMILY: Arial, 돋움, Dotum, AppleGothic, sans-serif; BORDER-RIGHT: rgb(254,137,67) 10px solid; 

BORDER-BOTTOM: rgb(254,137,67) 10px solid; PADDING-BOTTOM: 10px; PADDING-TOP: 10px; PADDING-LEFT: 10px; BORDER-LEFT: rgb(254,137,67) 10px solid; MARGIN: 0px; LINE-HEIGHT: 1.5; PADDING-RIGHT: 10px; 

BACKGROUND-COLOR: rgb(254,222,199)">

<p style="FONT-SIZE: 13px; FONT-FAMILY: &quot;맑은 고딕&quot;, sans-serif; COLOR: rgb(101,101,101); TEXT-ALIGN: center">

<span style="FONT-SIZE: 14px; FONT-FAMILY: Dotum, sans-serif; FONT-WEIGHT: bold; COLOR: rgb(0,0,0); BACKGROUND-COLOR: rgb(250,224,212)">

  </span></p></div>

<!--마무리멘트 종료1-->

<!-- 타이틀 시작 -->

<p style="FLOAT: none; CLEAR: none">

<span style="FONT-SIZE: 10px; FONT-FAMILY: Verdana, sans-serif; COLOR: rgb(255,255,255); TEXT-ALIGN: justify; BACKGROUND-COLOR: rgb(105,139,226)">iOS & Swift</span></p>

<p style="COLOR: rgb(101,101,101); TEXT-ALIGN: justify"></p>

<p style="TEXT-ALIGN: center"></p>

<h3 style="BOX-SIZING: border-box; MARGIN-BOTTOM: 5px; BORDER-RIGHT-WIDTH: 0px; BORDER-TOP-COLOR: ; WORD-SPACING: 3px; MARGIN-TOP: 5px; BORDER-BOTTOM: rgb(105,139,226) 2px solid; 

PADDING-BOTTOM: 3px; PADDING-TOP: 3px; PADDING-LEFT: 5px; BORDER-LEFT: rgb(105,139,226) 12px solid; BORDER-RIGHT-COLOR: ; LETTER-SPACING: 1px; LINE-HEIGHT: 1.5; PADDING-RIGHT: 5px; 

BORDER-TOP-WIDTH: 0px; MARGIN-RIGHT: 0px; border-image: initial">

<font color="#5d5d5d" face="Arial">

<span style="FONT-SIZE: 21px">  </span></font></h3>

<p style="TEXT-ALIGN: left">  </p>

<p style="TEXT-ALIGN: center"><br /></p>

<!-- 타이틀 종료 -->

<!-- 소제목1 시작 -->

<h3 style="box-sizing: border-box; font-family: Arial, 돋움, Dotum, AppleGothic, sans-serif; border-width: 0px 0px 2px 10px; word-spacing: 3px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); 

padding: 3px 5px; border-left-style: solid; border-left-color: rgb(85, 85, 91); margin: 5px 0px; letter-spacing: 1px; line-height: 1.5; border-image: initial;">

<font color="#5d5d5d">

<span style="font-size: 21px;">1. </span></font></h3>

<p style="TEXT-ALIGN: left">  </p>

<p style="TEXT-ALIGN: left"><br /></p>

<!-- 소제목1 종료 -->

<!-- 소제목2 시작 -->

<h3 style="box-sizing: border-box; font-family: Arial, 돋움, Dotum, AppleGothic, sans-serif; border-width: 0px 0px 2px 10px; word-spacing: 3px; border-bottom-style: solid; border-bottom-color: rgb(204, 204, 204); 

padding: 3px 5px; border-left-style: solid; border-left-color: rgb(85, 85, 91); margin: 5px 0px; letter-spacing: 1px; line-height: 1.5; border-image: initial;">

<font color="#5d5d5d">

<span style="font-size: 21px;">2. </span></font></h3>

<p style="TEXT-ALIGN: left">  </p>

<p style="TEXT-ALIGN: left"><br /></p>

<!-- 소제목2 종료 -->

<!-- 마무리 시작 -->

<h4 style="FONT-SIZE: 10px; FONT-FAMILY: dotum, sans-serif; COLOR: rgb(31,31,31); PADDING-BOTTOM: 0px; PADDING-TOP: 0px; PADDING-LEFT: 7px; BORDER-LEFT: rgb(255,50,127) 10px solid; 

MARGIN: 0px 0px 10px; LETTER-SPACING: -1px; LINE-HEIGHT: normal; PADDING-RIGHT: 0px; font-stretch: normal">

<span style="font-size: 21px; color: rgb(255, 50, 127); font-family: Arial;">

내 생각</span></h4>

<p style="TEXT-ALIGN: left">  </p>

<p style="TEXT-ALIGN: left"><br /></p>

<!-- 마무리 종료 -->

 

<!-- 관련글 시작1-->

<h4 style="font-family: dotum, sans-serif; padding: 0px 0px 0px 7px; border-left: 10px solid rgb(254, 137, 67); margin: 0px 0px 10px; letter-spacing: -1px; line-height: normal; font-stretch: normal;">

<font color="#FE8943"><span style="font-size: 21px; font-family: Arial;">Link(s)</span></font></h4><div>

<div class="txc-textbox" style="box-sizing: border-box; font-size: 2px; border-width: 2px; border-style: solid; border-color: rgb(254, 137, 67); font-family: Arial, 돋움, Dotum, AppleGothic, sans-serif; padding: 

10px; margin: 0px; line-height: 1.5; background-color: rgb(255, 255, 255);">

<p style="font-size: 13px; font-family: &quot;맑은 고딕&quot;, sans-serif; color: rgb(101, 101, 101); text-align: left;">

<span style="font-size: 14px; font-family: Dotum, sans-serif; color: rgb(0, 0, 0); background-color: rgb(255, 255, 255);"><b>

<span style="font-family: Arial; color: rgb(85, 85, 91);">1.URL</span></b></span></p></div>

<p style="float: none; text-align: center; clear: none;">&nbsp;</p></div><div><br /></div><div>

<font color="#FE8943"><span style="font-size: 15.3333px;"><br /></span></font></div>

<p style="TEXT-ALIGN: left">&nbsp;</p>

<!-- 관련글 종료1-->

 

 

 

<p style="FLOAT: none; TEXT-ALIGN: center; CLEAR: none"><br /></p>

'Blog History' 카테고리의 다른 글

MAC 개발자가 추천 하는 애플리케이션 - 1  (0) 2020.03.17
아이폰 개발자가 추천하는 지하철 앱  (0) 2020.03.15
113  (0) 2020.03.13
112  (0) 2020.03.13
111  (0) 2020.03.13

Date/Time:        2019-10-24 09:03:17 +0900
End time:         2019-10-24 09:04:53 +0900
OS Version:       iPhone OS 13.1.2 (Build 17A860)
Architecture:     arm64e
Report Version:   29
Incident Identifier: 35591AEC-0579-4604-9A49-211F23F5133D

Data Source:      Microstackshots
Shared Cache:     0xec00000 24957F2D-2DB1-359E-98A3-ECD7E1286EA5

Command:          Coupang_New
Path:             /private/var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Coupang_New
Identifier:       com.coupang.Coupang
Version:          5.6.8 (10636)
Beta Identifier:  E47F75F5-579A-432A-84E9-522807C32DFF
PID:              805

Event:            cpu usage
Action taken:     none
CPU:              90 seconds cpu time over 96 seconds (94% cpu average), exceeding limit of 50% cpu over 180 seconds
CPU limit:        90s
Limit duration:   180s
CPU used:         90s
CPU duration:     96s
Duration:         96.12s
Duration Sampled: 1.27s
Steps:            3

Hardware model:   iPhone11,8
Active cpus:      6


Heaviest stack for the target process:
  2  ??? (libsystem_pthread.dylib + 14944) [0x18ed6ea60]
  2  ??? (libdispatch.dylib + 74628) [0x18ed18384]
  2  ??? (libdispatch.dylib + 72956) [0x18ed17cfc]
  2  ??? (libdispatch.dylib + 12300) [0x18ed0900c]
  2  ??? (libdispatch.dylib + 7088) [0x18ed07bb0]
  2  ??? (Coupang_New + 130616) [0x1042a3e38]
  2  ??? ( + 50644) [0x1046205d4]
  2  ??? ( + 49624) [0x1046201d8]
  2  ??? ( + 52252) [0x104620c1c]
  2  ??? ( + 53092) [0x104620f64]
  2  ??? ( + 52252) [0x104620c1c]
  2  ??? ( + 53092) [0x104620f64]
  2  ??? ( + 52252) [0x104620c1c]
  2  ??? ( + 53144) [0x104620f98]
  2  ??? (Foundation + 271820) [0x18f3565cc]
  1  ??? (libsystem_kernel.dylib + 162620) [0x18ee4eb3c]


Powerstats for:   Coupang_New [805]
Bundle ID:        com.coupang.Coupang
Adam ID:          454434967
Is first party:   No
App version:      5.6.8
Build version:    10636
Is Beta:          No
Share with Devs:  No
UUID:             D758F0D8-6478-32B4-8A0D-26BC86A38C8B
Path:             /private/var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Coupang_New
Architecture:     arm64
Footprint:        216.83 MB
Start time:       2019-10-24 09:04:51 +0900
End time:         2019-10-24 09:04:53 +0900
Num samples:      3 (100%)
CPU Time:         0.846s
Primary state:    2 samples Frontmost App, Non-Suppressed, Kernel mode, Effective Thread QoS Background, Requested Thread QoS Background, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 0 samples Active, 3 samples Unknown
Power Source:     0 samples on Battery, 0 samples on AC, 3 samples Unknown
  2  _pthread_wqthread + 215 (libsystem_pthread.dylib + 14944) [0x18ed6ea60]
    2  _dispatch_worker_thread2 + 119 (libdispatch.dylib + 74628) [0x18ed18384]
      2  _dispatch_root_queue_drain + 643 (libdispatch.dylib + 72956) [0x18ed17cfc]
        2  _dispatch_client_callout + 19 (libdispatch.dylib + 12300) [0x18ed0900c]
          2  _dispatch_call_block_and_release + 31 (libdispatch.dylib + 7088) [0x18ed07bb0]
            2  ??? (Coupang_New + 130616) [0x1042a3e38]
              2  ??? ( + 50644) [0x1046205d4]
                2  ??? ( + 49624) [0x1046201d8]
                  2  ??? ( + 52252) [0x104620c1c]
                    2  ??? ( + 53092) [0x104620f64]
                      2  ??? ( + 52252) [0x104620c1c]
                        2  ??? ( + 53092) [0x104620f64]
                          2  ??? ( + 52252) [0x104620c1c]
                            2  ??? ( + 53144) [0x104620f98]
                              2  +[NSFileAttributes _attributesAtPath:partialReturn:filterResourceFork:error:] + 335 (Foundation + 271820) [0x18f3565cc]
                                1  _attributesAtPath + 555 (Foundation + 925952) [0x18f3f6100]
                                  1  getxattr + 8 (libsystem_kernel.dylib + 161900) [0x18ee4e86c]
                                1  listxattr + 8 (libsystem_kernel.dylib + 162620) [0x18ee4eb3c]
  1  start + 3 (libdyld.dylib + 3888) [0x18ee56f30]
    1  ??? (Coupang_New + 26204) [0x10428a65c]
      1  UIApplicationMain + 1939 (UIKitCore + 10684332) [0x1930f77ac]
        1  GSEventRunModal + 107 (GraphicsServices + 13620) [0x199141534]
          1  CFRunLoopRunSpecific + 479 (CoreFoundation + 688280) [0x18efd7098]
            1  __CFRunLoopRun + 2143 (CoreFoundation + 691232) [0x18efd7c20]
              1  __CFRunLoopDoSource1 + 447 (CoreFoundation + 712680) [0x18efdcfe8]
                1  __CFRUNLOOP_IS_CALLING_OUT_TO_A_SOURCE1_PERFORM_FUNCTION__ + 59 (CoreFoundation + 715036) [0x18efdd91c]
                  1  __CFMachPortPerform + 175 (CoreFoundation + 540468) [0x18efb2f34]
                    1  display_timer_callback + 267 (QuartzCore + 920880) [0x195ac9d30]
                      1  CA::Display::DisplayLink::dispatch_items + 627 (QuartzCore + 74296) [0x1959fb238]
                        1  -[UIScrollView _smoothScrollDisplayLink:] + 435 (UIKitCore + 15079128) [0x1935286d8]
                          1  objc_msgSend + 56 (libobjc.A.dylib + 8312) [0x18ed78078]
                            1  

  Binary Images:
           0x104284000 -                ???  Coupang_New               /private/var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Coupang_New
           0x104614000 -                ???  ???                     
           0x18ed06000 -        0x18ed42fff  libdispatch.dylib         /usr/lib/system/libdispatch.dylib
           0x18ed6b000 -        0x18ed75fff  libsystem_pthread.dylib   /usr/lib/system/libsystem_pthread.dylib
           0x18ed76000 -        0x18eda6fff  libobjc.A.dylib           /usr/lib/libobjc.A.dylib
           0x18ee27000 -        0x18ee55fff  libsystem_kernel.dylib    /usr/lib/system/libsystem_kernel.dylib
           0x18ee56000 -        0x18ee89fff  libdyld.dylib           <0DC9A4BA-C3E8-3487-99DB-1B5C86597AF5>  /usr/lib/system/libdyld.dylib
           0x18ef2f000 -        0x18f2acfff  CoreFoundation          <97285ACB-7B21-393A-ABF6-03F1DBB5D2A2>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x18f314000 -        0x18f5dffff  Foundation              <672CF0CB-4951-3B91-89DF-55E953AEA00F>  /System/Library/Frameworks/Foundation.framework/Foundation
           0x1926c7000 -        0x1937c6fff  UIKitCore               <55D60569-DBB7-3BC9-8A97-DCAC95C64D4B>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1959e9000 -        0x195c3ffff  QuartzCore              <68E87E8E-7275-3847-B0E5-7936442B19FC>  /System/Library/Frameworks/QuartzCore.framework/QuartzCore
           0x19913e000 -        0x199146fff  GraphicsServices        <76220592-3BB4-354A-947F-8D3C1682CD5F>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices

 

Incident Identifier: 2E2FCF14-408E-44E9-A3E5-0705E2343494
CrashReporter Key:   028cb2aff8ac98843b873853ae1a4c07754e1051
Hardware Model:      iPhone11,8
Process:             Coupang_New [2378]
Path:                /private/var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Coupang_New
Identifier:          com.coupang.Coupang
Version:             10636 (5.6.8)
AppStoreTools:       11A1002b
AppVariant:          1:iPhone11,8:13
Code Type:           ARM-64 (Native)
Role:                Foreground
Parent Process:      launchd [1]
Coalition:           com.coupang.Coupang [824]


Date/Time:           2019-10-25 16:52:51.2959 +0900
Launch Time:         2019-10-25 16:01:56.9562 +0900
OS Version:          iPhone OS 13.1.3 (17A878)
Release Type:        User
Baseband Version:    2.01.08
Report Version:      104

Exception Type:  EXC_CRASH (SIGKILL)
Exception Codes: 0x0000000000000000, 0x0000000000000000
Exception Note:  EXC_CORPSE_NOTIFY
Termination Reason: Namespace SPRINGBOARD, Code 0x8badf00d
Termination Description: SPRINGBOARD, scene-update watchdog transgression: application:2378 exhausted real (wall clock) time allowance of 10.00 seconds | ProcessVisibility: Foreground | ProcessState: Running | WatchdogEvent: scene-update | WatchdogVisibility: Foreground | WatchdogCPUStatistics: ( | "Elapsed total CPU time (seconds): 7.970 (user 7.970, system 0.000), 12% CPU", | "Elapsed application CPU time (seconds): 0.458, 1% CPU" | )
Triggered by Thread:  0

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0 Crashed:
0   Foundation                     0x00000001825788ac 0x182464000 + 1132716
1   Foundation                     0x00000001825787a4 0x182464000 + 1132452
2   Foundation                     0x0000000182467bcc 0x182464000 + 15308
3   UIKitCore                      0x0000000185e1b584 0x185817000 + 6309252
4   UIKitCore                      0x0000000185e1d344 0x185817000 + 6316868
5   UIKitCore                      0x0000000185e1cf50 0x185817000 + 6315856
6   UIKitCore                      0x0000000185e1cd04 0x185817000 + 6315268
7   UIKitCore                      0x0000000186284960 0x185817000 + 10934624
8   UIKitCore                      0x0000000186260804 0x185817000 + 10786820
9   Coupang_New                    0x00000001000a5680 0x100098000 + 54912
10  UIKitCore                      0x00000001862da224 0x185817000 + 11285028
11  UIKitCore                      0x00000001862dc7dc 0x185817000 + 11294684
12  UIKitCore                      0x00000001862d5960 0x185817000 + 11266400
13  CoreFoundation                 0x000000018212d260 0x18207f000 + 713312
14  CoreFoundation                 0x000000018212d1b4 0x18207f000 + 713140
15  CoreFoundation                 0x000000018212c970 0x18207f000 + 711024
16  CoreFoundation                 0x00000001821277ec 0x18207f000 + 690156
17  CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
18  GraphicsServices               0x000000018c291534 0x18c28e000 + 13620
19  UIKitCore                      0x00000001862477ac 0x185817000 + 10684332
20  Coupang_New                    0x000000010009e65c 0x100098000 + 26204
21  libdyld.dylib                  0x0000000181fa6f30 0x181fa6000 + 3888

Thread 1 name:  Dispatch queue: NSOperationQueue 0x107e12f50 (QOS: UNSPECIFIED)
Thread 1:
0   libsystem_kernel.dylib         0x0000000181f9d270 0x181f77000 + 156272
1   libsystem_c.dylib              0x0000000181e4a728 0x181dd7000 + 472872
2   Foundation                     0x00000001824ef898 0x182464000 + 571544
3   CoupangCommon                  0x000000010387865c 0x102f88000 + 9373276
4   Foundation                     0x0000000182581c60 0x182464000 + 1170528
5   Foundation                     0x00000001824837e8 0x182464000 + 129000
6   Foundation                     0x0000000182583fbc 0x182464000 + 1179580
7   Foundation                     0x0000000182483464 0x182464000 + 128100
8   Foundation                     0x00000001825849e8 0x182464000 + 1182184
9   Foundation                     0x00000001825844a8 0x182464000 + 1180840
10  libdispatch.dylib              0x0000000181e653ac 0x181e56000 + 62380
11  libdispatch.dylib              0x0000000181e5900c 0x181e56000 + 12300
12  libdispatch.dylib              0x0000000181e5b78c 0x181e56000 + 22412
13  libdispatch.dylib              0x0000000181e5aeec 0x181e56000 + 20204
14  libdispatch.dylib              0x0000000181e67bd4 0x181e56000 + 72660
15  libdispatch.dylib              0x0000000181e68384 0x181e56000 + 74628
16  libsystem_pthread.dylib        0x0000000181ebea60 0x181ebb000 + 14944
17  libsystem_pthread.dylib        0x0000000181ec4c78 0x181ebb000 + 40056

Thread 2 name:  com.apple.uikit.eventfetch-thread
Thread 2:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   Foundation                     0x000000018246c580 0x182464000 + 34176
6   Foundation                     0x000000018246c458 0x182464000 + 33880
7   UIKitCore                      0x00000001862e2668 0x185817000 + 11318888
8   Foundation                     0x000000018246b1e4 0x182464000 + 29156
9   Foundation                     0x00000001825a6a84 0x182464000 + 1321604
10  libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
11  libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 3 name:  com.twitter.crashlytics.ios.MachExceptionServer
Thread 3:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoupangCommon                  0x00000001037c3a38 0x102f88000 + 8632888
3   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
4   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 4 name:  com.apple.NSURLConnectionLoader
Thread 4:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   CFNetwork                      0x00000001853e9bc8 0x1853e8000 + 7112
6   Foundation                     0x000000018246b1e4 0x182464000 + 29156
7   Foundation                     0x00000001825a6a84 0x182464000 + 1321604
8   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
9   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 5 name:  com.apple.CFNetwork.CustomProtocols
Thread 5:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   CFNetwork                      0x00000001853e9bc8 0x1853e8000 + 7112
6   Foundation                     0x000000018246b1e4 0x182464000 + 29156
7   Foundation                     0x00000001825a6a84 0x182464000 + 1321604
8   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
9   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 6 name:  JavaScriptCore bmalloc scavenger
Thread 6:
0   libsystem_kernel.dylib         0x0000000181f9ccc4 0x181f77000 + 154820
1   libsystem_pthread.dylib        0x0000000181ec0508 0x181ebb000 + 21768
2   libc++.1.dylib                 0x0000000181ff0d04 0x181fe2000 + 60676
3   JavaScriptCore                 0x00000001911cc95c 0x191141000 + 571740
4   JavaScriptCore                 0x00000001911d03c0 0x191141000 + 586688
5   JavaScriptCore                 0x00000001911d00b8 0x191141000 + 585912
6   JavaScriptCore                 0x00000001911d13fc 0x191141000 + 590844
7   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
8   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 7 name:  WebThread
Thread 7:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   WebCore                        0x000000018a1ea464 0x189dba000 + 4392036
6   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
7   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 8 name:  AVAudioSession Notify Thread
Thread 8:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   AVFAudio                       0x000000018ef521b4 0x18eeeb000 + 422324
6   AVFAudio                       0x000000018efa328c 0x18eeeb000 + 754316
7   libsystem_pthread.dylib        0x0000000181ebcd5c 0x181ebb000 + 7516
8   libsystem_pthread.dylib        0x0000000181ec4c84 0x181ebb000 + 40068

Thread 9:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 10:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 11:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 12:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 0 crashed with ARM Thread State (64-bit):
    x0: 0x0000000107e88bf0   x1: 0x00000001b9fd5460   x2: 0x000000016fd64f00   x3: 0x0000000000000000
    x4: 0x0000000000000010   x5: 0x0000000000000021   x6: 0x0000000000000000   x7: 0x0000000000000403
    x8: 0x00000001b9fe66d4   x9: 0x00000000000007ff  x10: 0x66d1b2650e4947c6  x11: 0x007f00010494fc00
   x12: 0x0000000177416948  x13: 0x000145a1ca293f2d  x14: 0x0000000111878000  x15: 0x0000000000003fff
   x16: 0x00000001ca293f28  x17: 0x0166348181ec7b44  x18: 0x0000000000000000  x19: 0x0000000000000093
   x20: 0x0000000000000000  x21: 0x0000000107e88bf0  x22: 0x0000000104604a00  x23: 0x0000000000000001
   x24: 0x00000001ca268444  x25: 0x0000000000000093  x26: 0x00000001ba11dd45  x27: 0x00000001ca268000
   x28: 0x00000001ca268000   fp: 0x000000016fd64ef0   lr: 0x00000001825787a4
    sp: 0x000000016fd64e70   pc: 0x00000001825788ac cpsr: 0x60000000
   esr: 0x92000007 (Data Abort) byte read Translation fault

Binary Images:
0x100098000 - 0x1002d3fff Coupang_New arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Coupang_New
0x1004c8000 - 0x1004f7fff AFNetworking arm64  <398e0b552ba93766b401aef49aad1a5b> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/AFNetworking.framework/AFNetworking
0x100518000 - 0x10051ffff BBBadgeBarButtonItem arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/BBBadgeBarButtonItem.framework/BBBadgeBarButtonItem
0x10052c000 - 0x100543fff Bolts arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Bolts.framework/Bolts
0x100558000 - 0x100573fff CouFoundation arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/CouFoundation.framework/CouFoundation
0x100590000 - 0x1005f7fff dyld arm64e   /usr/lib/dyld
0x100674000 - 0x100713fff BRKit arm64  <38440e7e47bd391e8f63335d0e1d5cc2> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/BRKit.framework/BRKit
0x100758000 - 0x1007affff DKImagePickerController arm64  <8b8e71fae19230eebe5202d6e255d45f> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/DKImagePickerController.framework/DKImagePickerController
0x1007dc000 - 0x100833fff FBSDKCoreKit arm64  <1704feddc57d3d60b288e5a65e429492> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FBSDKCoreKit.framework/FBSDKCoreKit
0x10086c000 - 0x100887fff FBSDKLoginKit arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FBSDKLoginKit.framework/FBSDKLoginKit
0x10089c000 - 0x100903fff FBSDKShareKit arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FBSDKShareKit.framework/FBSDKShareKit
0x100934000 - 0x10093ffff FXBlurView arm64  <2359b2d1778d3bb691420038b657a958> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FXBlurView.framework/FXBlurView
0x10094c000 - 0x10095bfff FeatureSwitch arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FeatureSwitch.framework/FeatureSwitch
0x100970000 - 0x100987fff GoogleUtilities arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/GoogleUtilities.framework/GoogleUtilities
0x10099c000 - 0x1009a3fff HexColors arm64  <35f0373ca40b3ac4b4e2e484b360fe07> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/HexColors.framework/HexColors
0x1009b0000 - 0x1009ebfff LayoutKit arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/LayoutKit.framework/LayoutKit
0x100a0c000 - 0x100a13fff LruCache arm64  <63653906d0203cacaeaa70c56144adf8> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/LruCache.framework/LruCache
0x100a20000 - 0x100a2ffff MLogCenter arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/MLogCenter.framework/MLogCenter
0x100a40000 - 0x100a53fff Masonry arm64  <6d72d65c59b3318e8eb32153c00f1027> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Masonry.framework/Masonry
0x100a64000 - 0x100a77fff PhotoViewer arm64  <91bd1958bdf93738bddd350e690b2119> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/PhotoViewer.framework/PhotoViewer
0x100a88000 - 0x100a9bfff RMessage arm64  <7bf5414546843a16b15b0b2becd57a6e> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RMessage.framework/RMessage
0x100aac000 - 0x100ae3fff ReactComponentKit arm64  <2e0c9490196d3077958b49a77749f8a2> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/ReactComponentKit.framework/ReactComponentKit
0x100b04000 - 0x100b2ffff Route arm64  <9e3d8105835135ee98cb6f59f9f42d4d> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Route.framework/Route
0x100b48000 - 0x100bd7fff RxCocoa arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RxCocoa.framework/RxCocoa
0x100c28000 - 0x100cebfff RxSwift arm64  <2faef82ec4fa3e319df038d27607237b> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RxSwift.framework/RxSwift
0x100d34000 - 0x100d3ffff SAMKeychain arm64  <7eeb0e4679253068b66a57b7c8bf2036> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SAMKeychain.framework/SAMKeychain
0x100d4c000 - 0x100d6bfff SDWebImage arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SDWebImage.framework/SDWebImage
0x100d80000 - 0x100d8bfff SMPageControl arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SMPageControl.framework/SMPageControl
0x100d98000 - 0x100daffff SnapKit arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SnapKit.framework/SnapKit
0x100dc4000 - 0x100dd3fff SocketRocket arm64  <1c50e6942cf03ce8aefc2fb10499aa9a> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SocketRocket.framework/SocketRocket
0x100de4000 - 0x100deffff SwipeView arm64  <150c6e63da0638b29b232c6ee3c00d6a> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SwipeView.framework/SwipeView
0x100dfc000 - 0x100e33fff TimeToInteractionLogCenter arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/TimeToInteractionLogCenter.framework/TimeToInteractionLogCenter
0x100e4c000 - 0x100e53fff Toast arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Toast.framework/Toast
0x100e60000 - 0x100e67fff UITextView_Placeholder arm64  <21173fd7899a37edb83ba8bd09303c22> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/UITextView_Placeholder.framework/UITextView_Placeholder
0x100e74000 - 0x100e87fff VideoPlayer arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/VideoPlayer.framework/VideoPlayer
0x100e98000 - 0x100ea7fff iCarousel arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/iCarousel.framework/iCarousel
0x100eb4000 - 0x100ebffff nanopb arm64  <0909d2c6930b3693b6447447a26859fe> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/nanopb.framework/nanopb
0x100ecc000 - 0x100eeffff pop arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/pop.framework/pop
0x100f08000 - 0x100fd3fff BrandShop arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/BrandShop.framework/BrandShop
0x101028000 - 0x10103bfff MyCoupang arm64  <09ab94f4dcd1384ea8275d6c9ab526a6> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/MyCoupang.framework/MyCoupang
0x10104c000 - 0x10106bfff Order arm64  <2e9066aeb8293c918b0be6045ce2846a> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Order.framework/Order
0x101080000 - 0x101087fff WishCommon arm64  <1e1e7bb0b3d938d2a0396dda1b6ea010> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/WishCommon.framework/WishCommon
0x101094000 - 0x10109bfff ReviewCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/ReviewCommon.framework/ReviewCommon
0x1010a8000 - 0x101203fff Cart arm64  <703c4757ece53688a9235d5d31222963> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Cart.framework/Cart
0x10126c000 - 0x101273fff SellerCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SellerCommon.framework/SellerCommon
0x101280000 - 0x1012c3fff FBI arm64  <6f172d9d544634aeaf25c1620dc23d37> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FBI.framework/FBI
0x1012e4000 - 0x10131bfff Wish arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Wish.framework/Wish
0x10133c000 - 0x10134bfff Loyalty arm64  <0e335b68330937078843b49b06761e6d> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Loyalty.framework/Loyalty
0x10135c000 - 0x101383fff Eats arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Eats.framework/Eats
0x1013a0000 - 0x10146ffff PLP arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/PLP.framework/PLP
0x1014c4000 - 0x1014cbfff OrderCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/OrderCommon.framework/OrderCommon
0x1014d8000 - 0x1014e3fff CartCommon arm64  <11c77320b4013a73ae642df51ac1d078> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/CartCommon.framework/CartCommon
0x1014f0000 - 0x1014f7fff FBICommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FBICommon.framework/FBICommon
0x101504000 - 0x10153bfff PLPCommon arm64  <9aabb7f1dd873412852660b712002715> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/PLPCommon.framework/PLPCommon
0x10155c000 - 0x101573fff RecentSeen arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RecentSeen.framework/RecentSeen
0x101584000 - 0x101597fff TravelCommon arm64  <2b0a9798dc473f21ad69bc4268454395> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/TravelCommon.framework/TravelCommon
0x1015ac000 - 0x10163bfff Seller arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Seller.framework/Seller
0x101674000 - 0x101697fff Intro arm64  <00a6551ffdc63addbcc32e9ecff571ad> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Intro.framework/Intro
0x1016b0000 - 0x101913fff CommonUI arm64  <0eb4568605663ad38c72cbeac6ea22b8> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/CommonUI.framework/CommonUI
0x101a04000 - 0x101a13fff GoldenBox arm64  <60a619009352368787985ffaae2d90d8> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/GoldenBox.framework/GoldenBox
0x101a24000 - 0x101a2bfff MemberCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/MemberCommon.framework/MemberCommon
0x101a38000 - 0x101ceffff Review arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Review.framework/Review
0x101dd4000 - 0x101ddbfff SearchCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/SearchCommon.framework/SearchCommon
0x101de8000 - 0x101deffff IntroCommon arm64  <144bff295dcf30478e9282428cc28638> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/IntroCommon.framework/IntroCommon
0x101dfc000 - 0x101f9ffff RocketPay arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RocketPay.framework/RocketPay
0x1024bc000 - 0x1024f7fff Member arm64  <2c8d85cb73d83e54930b0511598b778c> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Member.framework/Member
0x10251c000 - 0x102d9ffff Travel arm64  <5f55fe697d8d37c2ab32a90c7bdca019> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Travel.framework/Travel
0x102f24000 - 0x102f2ffff HomeCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/HomeCommon.framework/HomeCommon
0x102f40000 - 0x102f5bfff PDPCommon arm64  <420614de1b833d9c92c47aee43941baa> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/PDPCommon.framework/PDPCommon
0x102f74000 - 0x102f7bfff RocketPayCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RocketPayCommon.framework/RocketPayCommon
0x102f88000 - 0x1039c3fff CoupangCommon arm64  <45835d0695313350870626343f6aa955> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/CoupangCommon.framework/CoupangCommon
0x103ddc000 - 0x103de7fff BrandShopCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/BrandShopCommon.framework/BrandShopCommon
0x103df8000 - 0x104067fff PDP arm64  <5a1302cf5afe3de1bdacda1874214a52> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/PDP.framework/PDP
0x10410c000 - 0x10422bfff Search arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Search.framework/Search
0x10428c000 - 0x1043b3fff Home arm64  <2f11842aaa1f3118a71769a761968836> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Home.framework/Home
0x10441c000 - 0x1044affff Category arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/Category.framework/Category
0x1044ec000 - 0x1044f3fff LoyaltyCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/LoyaltyCommon.framework/LoyaltyCommon
0x104500000 - 0x10450bfff CategoryCommon arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/CategoryCommon.framework/CategoryCommon
0x104518000 - 0x10451ffff RecentSeenCommon arm64  <0481100862f33eea8ad4faab43724fce> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/RecentSeenCommon.framework/RecentSeenCommon
0x10452c000 - 0x10453bfff ABTest arm64  <0c241e8ddfae3bc28c59f713deca91a9> /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/ABTest.framework/ABTest
0x10454c000 - 0x104553fff FloatingViewManager arm64   /var/containers/Bundle/Application/E1BEA241-8DD7-4340-A498-E5CDF490BA6F/Coupang_New.app/Frameworks/FloatingViewManager.framework/FloatingViewManager
0x107898000 - 0x1078a3fff libobjc-trampolines.dylib arm64e   /usr/lib/libobjc-trampolines.dylib
0x181d8b000 - 0x181da1fff libsystem_trace.dylib arm64e  <9bc16767c7a83e15bc8c0965e9f8f00b> /usr/lib/system/libsystem_trace.dylib
0x181da2000 - 0x181dd5fff libxpc.dylib arm64e   /usr/lib/system/libxpc.dylib
0x181dd6000 - 0x181dd6fff libsystem_blocks.dylib arm64e  <91adb2b4377434cc84f88e9a634b6b86> /usr/lib/system/libsystem_blocks.dylib
0x181dd7000 - 0x181e55fff libsystem_c.dylib arm64e  <15628be24f6937c5a96d72724762f01f> /usr/lib/system/libsystem_c.dylib
0x181e56000 - 0x181e92fff libdispatch.dylib arm64e   /usr/lib/system/libdispatch.dylib
0x181e93000 - 0x181eb3fff libsystem_malloc.dylib arm64e  <4aad0fafde283814af10e7123dc72aca> /usr/lib/system/libsystem_malloc.dylib
0x181eb4000 - 0x181ebafff libsystem_platform.dylib arm64e  <0591390bba0734a7a59d0c652d159244> /usr/lib/system/libsystem_platform.dylib
0x181ebb000 - 0x181ec5fff libsystem_pthread.dylib arm64e   /usr/lib/system/libsystem_pthread.dylib
0x181ec6000 - 0x181ef6fff libobjc.A.dylib arm64e   /usr/lib/libobjc.A.dylib
0x181ef7000 - 0x181f62fff libcorecrypto.dylib arm64e   /usr/lib/system/libcorecrypto.dylib
0x181f63000 - 0x181f76fff libc++abi.dylib arm64e   /usr/lib/libc++abi.dylib
0x181f77000 - 0x181fa5fff libsystem_kernel.dylib arm64e   /usr/lib/system/libsystem_kernel.dylib
0x181fa6000 - 0x181fd9fff libdyld.dylib arm64e  <0dc9a4bac3e8348799db1b5c86597af5> /usr/lib/system/libdyld.dylib
0x181fda000 - 0x181fe1fff libsystem_darwin.dylib arm64e   /usr/lib/system/libsystem_darwin.dylib
0x181fe2000 - 0x18203cfff libc++.1.dylib arm64e   /usr/lib/libc++.1.dylib
0x18203d000 - 0x18207efff libsystem_info.dylib arm64e   /usr/lib/system/libsystem_info.dylib
0x18207f000 - 0x1823fcfff CoreFoundation arm64e  <97285acb7b21393aabf603f1dbb5d2a2> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1823fd000 - 0x182463fff SystemConfiguration arm64e  <3dca61e2168c36d98acf0c3602dfff4d> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x182464000 - 0x18272ffff Foundation arm64e  <672cf0cb49513b9189df55e953aea00f> /System/Library/Frameworks/Foundation.framework/Foundation
0x182730000 - 0x182762fff libCRFSuite.dylib arm64e  <8f291818397432cf9cc7dd75e11f721f> /usr/lib/libCRFSuite.dylib
0x182763000 - 0x1828e3fff CoreServices arm64e   /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1828e4000 - 0x182946fff libSparse.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x182947000 - 0x182e41fff ImageIO arm64e   /System/Library/Frameworks/ImageIO.framework/ImageIO
0x182e42000 - 0x182e44fff ConstantClasses arm64e  <1c8835aab27331239abded3207f06916> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x182e45000 - 0x182fddfff CoreText arm64e   /System/Library/Frameworks/CoreText.framework/CoreText
0x182fde000 - 0x183111fff Security arm64e  <975adc2ff8ed3e0dba4ba01c1c1f10f1> /System/Library/Frameworks/Security.framework/Security
0x183112000 - 0x1831b7fff IOKit arm64e  <74b273d7cd333f4a96f47e702f1b4428> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1831b8000 - 0x1831effff libMobileGestalt.dylib arm64e   /usr/lib/libMobileGestalt.dylib
0x1831f0000 - 0x18324efff libprotobuf.dylib arm64e  <94ce72ce21e03c94b69234fa728738c4> /usr/lib/libprotobuf.dylib
0x18324f000 - 0x183261fff libprotobuf-lite.dylib arm64e  <9d7cc6eb89b43fa39ef21dddc473d549> /usr/lib/libprotobuf-lite.dylib
0x183262000 - 0x1834c2fff libicucore.A.dylib arm64e   /usr/lib/libicucore.A.dylib
0x1834c3000 - 0x1834ecfff CoreServicesInternal arm64e  <90b53ab447d031448957d995877824cd> /System/Library/PrivateFrameworks/CoreServicesInternal.framework/CoreServicesInternal
0x1834ed000 - 0x183534fff WirelessDiagnostics arm64e  <940df8c52a17312e9088248a1ac77ec4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x183535000 - 0x183570fff libAWDSupport.dylib arm64e   /usr/lib/libAWDSupport.dylib
0x183571000 - 0x1839b9fff CoreAudio arm64e   /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1839ba000 - 0x183c91fff CoreImage arm64e   /System/Library/Frameworks/CoreImage.framework/CoreImage
0x183c92000 - 0x183d85fff LanguageModeling arm64e   /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x183d86000 - 0x183dccfff Lexicon arm64e  <7e605c9d37a63fd1bb3e2431b4b1cf31> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x183dcd000 - 0x183f53fff libsqlite3.dylib arm64e  <854e207ecbe73f469cb5926001a2f44c> /usr/lib/libsqlite3.dylib
0x183f54000 - 0x183f84fff MobileKeyBag arm64e  <9fa13c6af29a3dcfa93ca614ad26993d> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x183f85000 - 0x183f8efff libsystem_notify.dylib arm64e  <5375361fa96637b9a0a22e0205daa144> /usr/lib/system/libsystem_notify.dylib
0x183f8f000 - 0x184163fff CoreDuet arm64e  <7cac3a71d35432cb99113d778987444e> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x184164000 - 0x1842aafff Montreal arm64e  <54161f809bac3b1eb6aed6387d7b0e13> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1842ab000 - 0x184390fff NLP arm64e  <57d4cfec4efa3b35a273f6a2ae80591e> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x184391000 - 0x1843affff CellularPlanManager arm64e  <77e3a92c13e23094946b85819a495c92> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1843b0000 - 0x1843edfff AppSupport arm64e  <32acaa08e6c338919a25a231cfdc7904> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1843ee000 - 0x1848c3fff libnetwork.dylib arm64e   /usr/lib/libnetwork.dylib
0x1848c4000 - 0x1849d3fff ManagedConfiguration arm64e   /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1849d4000 - 0x1849fefff CoreServicesStore arm64e   /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1849ff000 - 0x184a20fff UserManagement arm64e   /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x184a21000 - 0x184cd6fff CoreML arm64e   /System/Library/Frameworks/CoreML.framework/CoreML
0x184cd7000 - 0x184cedfff ProtocolBuffer arm64e  <25d0db0f98163d56a690dec5c392720f> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x184cee000 - 0x184d08fff CommonUtilities arm64e  <880c2e0f46943769b9775a3cfd7a5ba3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x184d09000 - 0x184d09fff libenergytrace.dylib arm64e   /usr/lib/libenergytrace.dylib
0x184d0a000 - 0x184d42fff RunningBoardServices arm64e  <420e18b822f530ba8221c5687ad7cfe9> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x184d43000 - 0x184db9fff BaseBoard arm64e   /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x184dba000 - 0x185301fff SiriTTS arm64e  <6ba2ed1468683c1e92cec1e36a13a8e2> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x185302000 - 0x185372fff CoreLocation arm64e   /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x185380000 - 0x1853d6fff Accounts arm64e   /System/Library/Frameworks/Accounts.framework/Accounts
0x1853d7000 - 0x1853e7fff SharedWebCredentials arm64e   /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1853e8000 - 0x185733fff CFNetwork arm64e  <32dfbf260bc43fb89aeb35182c8b35fa> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x185734000 - 0x185816fff UIFoundation arm64e   /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x185817000 - 0x186916fff UIKitCore arm64e  <55d60569dbb73bc98a97dcac95c64d4b> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x186917000 - 0x186925fff AssertionServices arm64e   /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x186926000 - 0x1869fdfff CoreTelephony arm64e   /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1869fe000 - 0x186a03fff AggregateDictionary arm64e  <7bfbeed0934d3cad8026c500c4cb9173> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x186a04000 - 0x186a1afff libsystem_asl.dylib arm64e   /usr/lib/system/libsystem_asl.dylib
0x186a1b000 - 0x186a95fff CloudDocs arm64e  <09d573a82e9f386daabb22a65ef0b77a> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x186a96000 - 0x186dc3fff CoreData arm64e  <66a9b561b6e733cb85e66e436fd8a348> /System/Library/Frameworks/CoreData.framework/CoreData
0x186dc4000 - 0x186ff0fff Vision arm64e  <84dd2e1d9c003e629f0a6d1117301f85> /System/Library/Frameworks/Vision.framework/Vision
0x186ff1000 - 0x187036fff PhotoFoundation arm64e  <9fdff28a73bf3c3a9ea2114e1d28538d> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x187037000 - 0x187062fff BoardServices arm64e  <09dd53b0b100312987ca528acbee68d7> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x187063000 - 0x187113fff libboringssl.dylib arm64e  <158b8ef8abe93c099a8a5dcb9b09bcb0> /usr/lib/libboringssl.dylib
0x187114000 - 0x187122fff libsystem_networkextension.dylib arm64e   /usr/lib/system/libsystem_networkextension.dylib
0x187123000 - 0x187143fff CoreAnalytics arm64e   /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x187144000 - 0x1872bdfff CloudKit arm64e  <667e79d9af13349d82a41fc755c5b11e> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1872be000 - 0x18730dfff SpringBoardServices arm64e  <44c86adef590305ab8c8dba50c5420b4> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x18730e000 - 0x187385fff FrontBoardServices arm64e  <124b166d39053f51a46a646ae3424213> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x187386000 - 0x18749efff Network arm64e  <941ed8db788b37bfb15509b8b0fc310a> /System/Library/Frameworks/Network.framework/Network
0x18749f000 - 0x1874fbfff libusrtcp.dylib arm64e   /usr/lib/libusrtcp.dylib
0x1874fc000 - 0x187503fff libsystem_symptoms.dylib arm64e  <93716677a360386b97d6493788ec1bc7> /usr/lib/system/libsystem_symptoms.dylib
0x187504000 - 0x1883e1fff GeoServices arm64e   /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1883e2000 - 0x1883eafff TCC arm64e  <917f36636e14374cb4659fe0e4f09ea8> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1883eb000 - 0x188446fff IMFoundation arm64e  <1e66d8a98893359b8320f34a171f538d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x188447000 - 0x1885acfff CoreUtils arm64e   /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1885ad000 - 0x188657fff IMSharedUtilities arm64e   /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x188658000 - 0x1886a6fff ImageCaptureCore arm64e  <5032c500bb9b3bb8a2298beddc9ccb60> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1886a7000 - 0x1886b0fff libsystem_containermanager.dylib arm64e  <09db2936a8d334ffa634596093545f0d> /usr/lib/system/libsystem_containermanager.dylib
0x1886b1000 - 0x18872efff AppleAccount arm64e  <1da968ef2dd73a26b6a11569abe8900f> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18872f000 - 0x18874afff ApplePushService arm64e   /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18874b000 - 0x18883bfff IDS arm64e  <3f6b6175001c3983958aed33ead82d0b> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18883c000 - 0x18896bfff IDSFoundation arm64e   /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x18896c000 - 0x18896dfff libCTGreenTeaLogger.dylib arm64e   /usr/lib/libCTGreenTeaLogger.dylib
0x1889d1000 - 0x188ad2fff CoreMedia arm64e   /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x188ad3000 - 0x188ae3fff UIKitServices arm64e   /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x188ae4000 - 0x188b38fff BackBoardServices arm64e  <5b4b7dc5abee30ce92ad6dcb02d9a26a> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x188b39000 - 0x188d8ffff QuartzCore arm64e  <68e87e8e72753847b0e57936442b19fc> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x188d90000 - 0x188f4dfff ColorSync arm64e  <49b450513c43328d84f78fe799d9584b> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x188f4e000 - 0x1894c1fff CoreGraphics arm64e   /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1894c2000 - 0x1895fdfff Contacts arm64e  <756942596c2d34a1828be0a506c23f35> /System/Library/Frameworks/Contacts.framework/Contacts
0x1895fe000 - 0x18962efff UserNotifications arm64e   /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x18962f000 - 0x189652fff LocationSupport arm64e  <57abf27237773d1dbf2ca0b421406418> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x189653000 - 0x1897b3fff Sharing arm64e   /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1897b4000 - 0x189db9fff WebKit arm64e   /System/Library/Frameworks/WebKit.framework/WebKit
0x189dba000 - 0x18bac3fff WebCore arm64e   /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x18bac4000 - 0x18badcfff libAccessibility.dylib arm64e   /usr/lib/libAccessibility.dylib
0x18badd000 - 0x18bae8fff AXCoreUtilities arm64e   /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x18bae9000 - 0x18bb62fff ContactsFoundation arm64e   /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x18bb63000 - 0x18bb77fff PowerLog arm64e   /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x18bb78000 - 0x18bb89fff IOSurface arm64e  <9ebb87f8232d3ceb81bbb317926db148> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x18bb8a000 - 0x18c28dfff MediaToolbox arm64e  <469251e5c7973035a25c9d80f905bb94> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18c28e000 - 0x18c296fff GraphicsServices arm64e  <762205923bb4354a947f8d3c1682cd5f> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x18c297000 - 0x18c37dfff AccessibilityUtilities arm64e  <65a09870cc5939199697e648f0e7b705> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x18c37e000 - 0x18c579fff AVFoundation arm64e  <3f38b86cc2c23972ac9e6d18d71c4926> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x18c57a000 - 0x18c5b1fff OnBoardingKit arm64e  <51bcdf0941d037338d36d8603e7d816e> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x18c5b2000 - 0x18c600fff MobileWiFi arm64e  <62323a0ad7723b8390cb3a53b3bdc36b> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x18c601000 - 0x18c619fff MobileAsset arm64e  <935b5b2f446436cd9d95606354216819> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x18c61a000 - 0x18c627fff libGSFont.dylib arm64e  <9ac0608f9d633bb096d953f69350a33d> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x18c628000 - 0x18c631fff FontServices arm64e  <2602fad7a7ab3d3eb4148892543f14d5> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x18c632000 - 0x18c780fff libFontParser.dylib arm64e  <5466f8e6057038f2bb98222c3eb439c7> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x18c781000 - 0x18c7ccfff AXRuntime arm64e  <200d75736aa630a49b99f01dfca75f4a> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x18c7cd000 - 0x18c7cffff libAXSafeCategoryBundle.dylib arm64e  <49893a519a7b365a8f18c8efde5409cd> /usr/lib/libAXSafeCategoryBundle.dylib
0x18c7d0000 - 0x18c912fff SearchFoundation arm64e  <9d493eef58d73a96be3f9d7a1cbf4967> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x18c913000 - 0x18ca37fff Preferences arm64e  <07276a7416ee3c4f8835bbacffee4c16> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x18ca38000 - 0x18d0b2fff PhotoLibraryServices arm64e  <91c02d9c1deb32b9897164279f6aafad> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x18d0b3000 - 0x18d340fff vImage arm64e  <23c5969efbc53cba95071dc7faa4e938> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x18d341000 - 0x18d56dfff AudioToolbox arm64e   /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x18d56e000 - 0x18d5a3fff libAudioToolboxUtility.dylib arm64e  <379be4b3915c3bc18e95fd62ee6916db> /usr/lib/libAudioToolboxUtility.dylib
0x18d5a4000 - 0x18d75bfff ContactsUI arm64e  <6bdb40ae383434918dd2e83e916a56ec> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x18d75c000 - 0x18d7c8fff UIAccessibility arm64e  <355f17fdc5d036d6a4cf55c3880c7ff5> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x18d7c9000 - 0x18d9d5fff Photos arm64e  <1192e2c1466336689267b4b9e67d84e6> /System/Library/Frameworks/Photos.framework/Photos
0x18d9d6000 - 0x18da6bfff ShareSheet arm64e   /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x18da6c000 - 0x18da7ffff BaseBoardUI arm64e   /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x18da80000 - 0x18db36fff PDFKit arm64e  <86ba46b9c90b38e2ae95fbe9dc1e0c4b> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x18dbb8000 - 0x18dbe6fff DocumentManager arm64e  <03ea7f6d443b3c1aa621ff290d3bcb7e> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x18dbe7000 - 0x18de47fff libmecabra.dylib arm64e   /usr/lib/libmecabra.dylib
0x18de48000 - 0x18debffff AuthKit arm64e  <090914b11d78388083eaf714ead56050> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x18dec0000 - 0x18e2e7fff Intents arm64e  <686b616c210e336589c278e8514f3e3b> /System/Library/Frameworks/Intents.framework/Intents
0x18e2e8000 - 0x18e2fcfff libCGInterfaces.dylib arm64e  <8622fd6bd37632e1add1650b918e3cae> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/Libraries/libCGInterfaces.dylib
0x18e2fd000 - 0x18e44cfff WebKitLegacy arm64e  <3526c37744d23540809529793b145515> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x18e44d000 - 0x18e4b8fff TextInput arm64e   /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18e4b9000 - 0x18e537fff AXMediaUtilities arm64e  <1bfd515ddf64344f8380405bc5d7e3d3> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x18e538000 - 0x18e53bfff XCTTargetBootstrap arm64e  <9c6a5db621c63ac280255bca37ff49ea> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x18e53c000 - 0x18e5f2fff CorePDF arm64e   /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x18e5f3000 - 0x18e62efff AccessibilityUIUtilities arm64e  <930d3cea341936bfaeac9e16d80658d6> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x18e62f000 - 0x18e9ecfff MediaPlayer arm64e  <134daba2c3483ccf902648acd43bb482> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x18e9ed000 - 0x18ecfdfff AppleMediaServices arm64e  <3efdf44040ec317a834abbd1ba81088a> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x18ecfe000 - 0x18ed25fff CacheDelete arm64e  <57ee9e41f919379ebf70cdd6ca04f73c> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x18ed26000 - 0x18eeeafff CoreMotion arm64e  <69d41764d0ed3b0893ba853ce6ee1828> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x18eeeb000 - 0x18efd7fff AVFAudio arm64e   /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x18efd8000 - 0x18f1d4fff RawCamera arm64e   /System/Library/CoreServices/RawCamera.bundle/RawCamera
0x18f1d5000 - 0x18f28efff CoreUI arm64e  <1308ae16e705312ca9662797bc2197b5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18f28f000 - 0x18f2b3fff AppSupportUI arm64e  <5559927294e43ceab2cf338fa77bb364> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x18f2b4000 - 0x18f2eafff CoreVideo arm64e  <0a926baaf4523997a6f4caa26bdabea9> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18f2eb000 - 0x18f525fff AudioToolboxCore arm64e   /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x18f526000 - 0x18f56cfff CoreDuetContext arm64e   /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x18f56d000 - 0x18f5a7fff SetupAssistant arm64e   /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x18f5a8000 - 0x18f666fff TelephonyUtilities arm64e  <384b5bafe8703c3d873486f1310f8e3a> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x18f667000 - 0x18f691fff PlugInKit arm64e  <55a924c2787a34c28d1f39b5ef052bf2> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x18f692000 - 0x18fa1efff libswiftCore.dylib arm64e   /usr/lib/swift/libswiftCore.dylib
0x18fa1f000 - 0x18fb57fff AssistantServices arm64e   /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18fb58000 - 0x18fbb9fff ProactiveSupport arm64e   /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x18fbba000 - 0x18fe01fff MapKit arm64e  <1fc802e79e9330dba1517fd020a0876d> /System/Library/Frameworks/MapKit.framework/MapKit
0x18fe02000 - 0x18fe1afff PrototypeTools arm64e  <212a2cde1a5d350c8ce03106d91e8a1c> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x18fe1b000 - 0x18ff0bfff MediaExperience arm64e   /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x18ff0c000 - 0x1901c7fff Celestial arm64e   /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1901c8000 - 0x190222fff CallKit arm64e  <21bfbb540c8e33d69d60afe419a39a74> /System/Library/Frameworks/CallKit.framework/CallKit
0x190223000 - 0x1903edfff EventKitUI arm64e  <3f254898080c33cfa53d3913726551f1> /System/Library/Frameworks/EventKitUI.framework/EventKitUI
0x1903ee000 - 0x190adffff VectorKit arm64e  <31025f51084d3ec3b6332b0718f29d79> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x190ae0000 - 0x190bb3fff AVKit arm64e  <9561f6349f9933469f2e160dd8f5e657> /System/Library/Frameworks/AVKit.framework/AVKit
0x190bb4000 - 0x190be4fff Pegasus arm64e  <5aa2be18a31b32a3a67691d2704aba10> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x190be5000 - 0x190beafff libapp_launch_measurement.dylib arm64e   /usr/lib/libapp_launch_measurement.dylib
0x190cc8000 - 0x190d2bfff CoreSpotlight arm64e  <8a7c5ab6175b32efb6292152fcf215f0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x190d2c000 - 0x190dc1fff AddressBookLegacy arm64e  <76c629f0ef503aa9a5660dc0c7e70554> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x190dc2000 - 0x190dd1fff CrashReporterSupport arm64e   /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x190dd2000 - 0x190de4fff MobileBluetooth arm64e   /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x190de5000 - 0x190ea3fff LinkPresentation arm64e   /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x190ea4000 - 0x190ed9fff StoreKit arm64e   /System/Library/Frameworks/StoreKit.framework/StoreKit
0x190eda000 - 0x190edefff libsystem_configuration.dylib arm64e  <834289b5a67f34d1aab1f341ca817c23> /usr/lib/system/libsystem_configuration.dylib
0x190edf000 - 0x190f38fff RemoteUI arm64e  <3963e39e62423392b89b41a2c6e8d190> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x190f39000 - 0x190f89fff AuthKitUI arm64e   /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x190f8a000 - 0x190feffff CoreRecognition arm64e   /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x190ff0000 - 0x191076fff Social arm64e  <361e489b655634e4a6c1a4e36b2e8f0d> /System/Library/Frameworks/Social.framework/Social
0x1910c7000 - 0x1910d5fff HangTracer arm64e  <9d3a32b50fd63a299bb861a5ca57790c> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1910d6000 - 0x19113efff CoreNLP arm64e  <4cd34810c6513eb197c070c40d83013f> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x19113f000 - 0x191140fff liblangid.dylib arm64e  <344868eff5f033e6856968bb1818250d> /usr/lib/liblangid.dylib
0x191141000 - 0x191f39fff JavaScriptCore arm64e  <5c35e53043713551b0955f5c3a5d00b8> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x191f3a000 - 0x191fc6fff libTelephonyUtilDynamic.dylib arm64e  <83581f4af84934ce9d0d4df8713443e8> /usr/lib/libTelephonyUtilDynamic.dylib
0x191fdc000 - 0x192263fff StoreServices arm64e  <7cb5480bb4cd305eac82ae86ada03d4e> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x192264000 - 0x19226dfff IOMobileFramebuffer arm64e  <0a2350f50d863219a104edb22f154164> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x19226e000 - 0x1923d5fff SafariServices arm64e  <9a3aeda6f832316cb9636858de7ba19f> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1923d6000 - 0x1925b2fff Message arm64e  <2ef8851a79b73a85a0a648e2806475b1> /System/Library/PrivateFrameworks/Message.framework/Message
0x1925ca000 - 0x1925e4fff CoreMaterial arm64e  <6230b5ee758e369caa919ebc6fbb3e42> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1925e5000 - 0x1926cffff libxml2.2.dylib arm64e  <5845f30c219f3697b344a5f59bb539fe> /usr/lib/libxml2.2.dylib
0x193d97000 - 0x193de0fff MetadataUtilities arm64e   /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x193de1000 - 0x193e3bfff UserActivity arm64e  <6024cc1a91283ee096785edc4219007a> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1947ab000 - 0x1949d0fff NetworkExtension arm64e  <3779e9f08b083f58924728125eda16be> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1949d1000 - 0x194a07fff DataDetectorsCore arm64e  <8d1286a57727341d825c6edf1b4b998f> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x194a08000 - 0x194a6afff CalendarFoundation arm64e  <7c05d84b84b43614ba32328d63b31512> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x194a6b000 - 0x194b64fff EventKit arm64e   /System/Library/Frameworks/EventKit.framework/EventKit
0x194b65000 - 0x194b9afff MediaServices arm64e  <92b16719a5b93941880b3c6a0d339bed> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x194cac000 - 0x194e56fff PencilKit arm64e  <23f76961f88b31448ac007a40265b78a> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x194e57000 - 0x194fadfff MessageUI arm64e  <6b2e7f6c5a6a3c068fb43362181b3686> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x194ffc000 - 0x19503dfff BiometricKit arm64e  <8c98a7039d1139989bbb5399513a2176> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x19503e000 - 0x19506afff PersistentConnection arm64e   /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x19506b000 - 0x1950befff CalendarDaemon arm64e  <45521ef9bea93382a0884b0f594a999e> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1950bf000 - 0x195158fff CalendarDatabase arm64e   /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x195159000 - 0x19533dfff MediaRemote arm64e   /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x19533e000 - 0x195346fff CorePhoneNumbers arm64e   /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x195357000 - 0x19537dfff DuetActivityScheduler arm64e   /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x19537e000 - 0x195440fff SpringBoardFoundation arm64e   /System/Library/PrivateFrameworks/SpringBoardFoundation.framework/SpringBoardFoundation
0x195441000 - 0x195482fff ContactsAutocompleteUI arm64e  <9c7a49a58e233448b769300c10a79c0e> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x195483000 - 0x1954a6fff CoreSVG arm64e   /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1954c5000 - 0x1954e2fff ProactiveEventTracker arm64e   /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1954e3000 - 0x1954edfff MallocStackLogging arm64e   /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1954ee000 - 0x195586fff CoreSuggestions arm64e  <6cf5ec42aab0305e8fe7ba22bf0bbe3f> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x195587000 - 0x195738fff IMCore arm64e  <16a4f935d7203b4db86e63a06e6fc6dc> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x195739000 - 0x19578afff DeviceManagement arm64e  <773d278fcb4a3c6e8356aa7e31e8a16b> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x195f94000 - 0x195fa0fff BluetoothManager arm64e  <60f0af538e453460a41a992ade811952> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x195fa1000 - 0x195fd6fff CoreBluetooth arm64e  <46ee878b3c7a3d8bb8a9c70c47c0475d> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x195fd7000 - 0x195fd9fff libsystem_sandbox.dylib arm64e  <467a2efb2e4f3c26b721563089869695> /usr/lib/system/libsystem_sandbox.dylib
0x195fda000 - 0x19603efff SpringBoardUIServices arm64e   /System/Library/PrivateFrameworks/SpringBoardUIServices.framework/SpringBoardUIServices
0x19603f000 - 0x196072fff TelephonyUI arm64e   /System/Library/PrivateFrameworks/TelephonyUI.framework/TelephonyUI
0x1960c1000 - 0x1960f5fff TextInputUI arm64e   /System/Library/PrivateFrameworks/TextInputUI.framework/TextInputUI
0x196104000 - 0x196110fff ContextKit arm64e  <38f80b5f25be34a68557a1b941c0e427> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x196141000 - 0x1961abfff Rapport arm64e   /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1961ac000 - 0x1961d8fff OSAnalytics arm64e  <9939f18f483c365e912a4d970c54cf61> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1961d9000 - 0x196207fff MobileInstallation arm64e  <5e08658c0df43a2997b7cd91e8bf0259> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x196208000 - 0x1962a6fff Metal arm64e  <9c859f4029b73378b008fb573ea44dfa> /System/Library/Frameworks/Metal.framework/Metal
0x1962a7000 - 0x1962acfff IOAccelerator arm64e   /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1962ad000 - 0x1962b8fff MediaAccessibility arm64e   /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1962da000 - 0x1962e1fff libsystem_dnssd.dylib arm64e   /usr/lib/system/libsystem_dnssd.dylib
0x1962e2000 - 0x1962e8fff PushKit arm64e  <2bb95f922cc0377bb6126a4215a1d2e3> /System/Library/Frameworks/PushKit.framework/PushKit
0x1962e9000 - 0x1963f7fff FileProvider arm64e  <429dd66df0cb3862b71ca152d32ad5c3> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x19640a000 - 0x19640bfff BackgroundTaskAgent arm64e  <2674c3df97923075b00e2e2fcab84c01> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
0x19640c000 - 0x196410fff LinguisticData arm64e  <2bfaa83c53d638a1bf23b9e3af64ddbc> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x196411000 - 0x196429fff CoreSDB arm64e   /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x19642a000 - 0x19643afff Categories arm64e  <54569c0088293df18892dfbcb07eb650> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x19643b000 - 0x196455fff DoNotDisturb arm64e  <360bcf63df203332b30eaef88d842a54> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x196456000 - 0x196511fff VideoToolbox arm64e  <923c76f6e23433fb933f59ca84c5ddcf> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x19695c000 - 0x19695dfff MessageSupport arm64e  <7fec9b70985d3e33ab2b7ad960b8ce6b> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x19695e000 - 0x1969bbfff PersonalizationPortrait arm64e  <8fdd6ca53441360ead0636ea65816d86> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1969bc000 - 0x196a2dfff AppStoreDaemon arm64e   /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x196a88000 - 0x196a90fff SymptomDiagnosticReporter arm64e   /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x196a91000 - 0x196a93fff IOSurfaceAccelerator arm64e  <8fc590a48393309ea0218f94c4c46b4c> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x196a94000 - 0x196b44fff AssetsLibraryServices arm64e  <13f23866fd2d3f868a4f2628ce2b917d> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x196b45000 - 0x196b74fff DataAccessExpress arm64e  <5245005200f63a7d9a54d4467f3a548c> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x196b75000 - 0x196be5fff EmailFoundation arm64e  <29514ad9eaa737a0bbfa378d65badb4a> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x196be6000 - 0x196bfbfff CoreFollowUp arm64e   /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x196bfc000 - 0x196c04fff FamilyCircle arm64e  <36c223c5a0ea3559968c572ebb34616f> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x196c05000 - 0x196c1bfff libcoretls.dylib arm64e  <8e358428a0eb395085121d746ef02139> /usr/lib/libcoretls.dylib
0x196c73000 - 0x196d06fff libate.dylib arm64e  <9e2bf4f77825325f97c0741da5d57be7> /usr/lib/libate.dylib
0x197b65000 - 0x197d34fff iAdCore arm64e  <07654c4c63e8374a9f2c91706c51b0e0> /System/Library/PrivateFrameworks/iAdCore.framework/iAdCore
0x197d35000 - 0x197d5bfff Pasteboard arm64e   /System/Library/PrivateFrameworks/Pasteboard.framework/Pasteboard
0x197d5c000 - 0x197dabfff FTServices arm64e  <4477516436883739a4112101351c86b2> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x197e50000 - 0x197e61fff MaterialKit arm64e  <98470cd9c3f03ca4b3c45373d3b492c8> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x197e62000 - 0x197e9bfff SAObjects arm64e   /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x197e9c000 - 0x197ea6fff CoreRecents arm64e   /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x197ea7000 - 0x197eeefff MIME arm64e   /System/Library/PrivateFrameworks/MIME.framework/MIME
0x197f53000 - 0x197f60fff DataMigration arm64e  <9df84a1014cd3d2aa5288203981fd346> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x19806b000 - 0x1980c7fff EmailCore arm64e   /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x19811c000 - 0x198141fff IconServices arm64e  <47f8c81ce2103b34b41de435142ee060> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x198142000 - 0x198336fff iTunesCloud arm64e  <92e45d8b00f134bfac4471e9826ce218> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x198337000 - 0x1985a4fff MusicLibrary arm64e  <33d6dbd5ad6a38058aa75a02569854be> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1985a5000 - 0x1985a6fff WatchdogClient arm64e  <1442bd13d71d3f9cad36867f3616e95a> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1985a7000 - 0x1985b8fff libprequelite.dylib arm64e   /usr/lib/libprequelite.dylib
0x1985d8000 - 0x1985ddfff IDSKVStore arm64e  <876eb9b541fd359cb3874b47284c5395> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1985de000 - 0x1985eefff CoreEmoji arm64e  <9be70ba67ebb308fb175edf2650940a7> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1985ef000 - 0x198683fff Email arm64e  <685bdd308b4f36e2abf2a2cf519ebccc> /System/Library/PrivateFrameworks/Email.framework/Email
0x198684000 - 0x1986d4fff ClassKit arm64e  <6c973a1b48b23910ab2a051764506cd3> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x198742000 - 0x19874cfff CPMS arm64e  <6318ff48c5dd3319bc33f5dc69bc48a5> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x19874d000 - 0x198755fff RTCReporting arm64e   /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x19881d000 - 0x19887cfff iAd arm64e   /System/Library/Frameworks/iAd.framework/iAd
0x1988b7000 - 0x198904fff MobileBackup arm64e  <97c1ac8728603aaf8642f4467e62afc0> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1989b8000 - 0x1989bffff CoreTime arm64e  <5cadc26812c430b1b1f4044d89bb1797> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1989f6000 - 0x198b33fff IMDPersistence arm64e   /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x198b82000 - 0x198badfff RemoteConfiguration arm64e   /System/Library/PrivateFrameworks/RemoteConfiguration.framework/RemoteConfiguration
0x198bae000 - 0x198bd8fff DistributedEvaluation arm64e  <6263397d2a183875b8b48b2b1eece46c> /System/Library/PrivateFrameworks/DistributedEvaluation.framework/DistributedEvaluation
0x198bd9000 - 0x198c28fff DataAccess arm64e   /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x198f6b000 - 0x198fc0fff ToneLibrary arm64e  <3b90c3d36a603676b2afefbe8d4469a4> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x19929c000 - 0x1992bbfff AppConduit arm64e  <11b2b86dfd973a5787cccd5411826136> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1992bc000 - 0x1992d5fff IntlPreferences arm64e  <1dc2a8927af734bcacf04bfad1c3bcde> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x19964c000 - 0x199721fff CoreBrightness arm64e   /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x199722000 - 0x199729fff libIOReport.dylib arm64e  <118ed37de8fc3409ad361c2048436658> /usr/lib/libIOReport.dylib
0x1998c3000 - 0x199a91fff libBNNS.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x199a92000 - 0x199a98fff StudyLog arm64e  <9900b355dd993487a5571479bcb69379> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x199a99000 - 0x199b21fff BulletinBoard arm64e  <15c7909177393908b72eb170e9f4feb7> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x199b22000 - 0x199bb2fff iTunesStore arm64e   /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x19a618000 - 0x19a672fff SafariCore arm64e  <153830cc06e0381eb13f40f28d17edc1> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x19a673000 - 0x19a6d7fff ScreenTimeCore arm64e  <51ce7e8ab8873dc680057f9fb582e7a9> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x19a6d8000 - 0x19aa43fff NewsCore arm64e   /System/Library/PrivateFrameworks/NewsCore.framework/NewsCore
0x19aa44000 - 0x19aa58fff NewsFoundation arm64e  <8908acd57cac37c8b50d3b9a5ff4378a> /System/Library/PrivateFrameworks/NewsFoundation.framework/NewsFoundation
0x19aa59000 - 0x19accdfff NewsTransport arm64e   /System/Library/PrivateFrameworks/NewsTransport.framework/NewsTransport
0x19acfd000 - 0x19ad11fff LocalAuthentication arm64e  <9cdc36765b6137e4b39d2ab814c4b18b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x19ad12000 - 0x19ad16fff CommunicationsFilter arm64e   /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x19ad17000 - 0x19ad3afff AddressBook arm64e   /System/Library/Frameworks/AddressBook.framework/AddressBook
0x19ad3b000 - 0x19ad46fff CaptiveNetwork arm64e  <2ce00a624c1a3cd4b5fcd0fed79af757> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x19ad47000 - 0x19ad47fff AdSupport arm64e  <64f2847a1b993cdfab7a882a94347acf> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x19ae96000 - 0x19af70fff libBLAS.dylib arm64e  <2642ebc655a03a18bc004e0215086334> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x19af71000 - 0x19af7ffff CTCarrierSpace arm64e   /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x19b778000 - 0x19b849fff CoreParsec arm64e   /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x19ba46000 - 0x19ba5ffff libtailspin.dylib arm64e   /usr/lib/libtailspin.dylib
0x19ba60000 - 0x19ba9ffff CalendarUIKit arm64e   /System/Library/PrivateFrameworks/CalendarUIKit.framework/CalendarUIKit
0x19babf000 - 0x19bad4fff ContactsDonation arm64e   /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x19bb1e000 - 0x19bb27fff MobileActivation arm64e  <7372ed004d0f3f588e3aaa8354e89b03> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x19bbb3000 - 0x19bbc2fff MobileIcons arm64e  <5d593a64a24b3599906c8e6d5331019c> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x19bbc3000 - 0x19bcc4fff ResponseKit arm64e  <94340f96ace2302aa27d65e89dd04ad9> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x19bce1000 - 0x19bd1bfff Notes arm64e   /System/Library/PrivateFrameworks/Notes.framework/Notes
0x19bd1c000 - 0x19bd34fff MetalKit arm64e  <746cbd622e3a38b2861b353421e05ae9> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x19bd93000 - 0x19bddbfff CoreHaptics arm64e  <3a33ccf057fe3cffb4328a67c89cabcd> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x19bddc000 - 0x19bea6fff ProofReader arm64e  <245be40f9ff83c65b0048ace3824eb27> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x19bea7000 - 0x19bef5fff DataDetectorsUI arm64e  <9533287c68b839038b414f59e435cb76> /System/Library/PrivateFrameworks/DataDetectorsUI.framework/DataDetectorsUI
0x19bef6000 - 0x19bf01fff EmailAddressing arm64e  <323885dc79a53ca5b9fd9d50a3f878a9> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x19bf02000 - 0x19bf18fff MailServices arm64e  <045b2512b00a3027a11996b950982c0b> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x19bf19000 - 0x19bf9efff CoreSymbolication arm64e  <3b60713d87c3314a9964d3a8d16ad596> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x19bf9f000 - 0x19bfa5fff IdleTimerServices arm64e  <72fe495d6519318992bc841bafd8abed> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x19c086000 - 0x19c143fff VideoSubscriberAccount arm64e  <8929b80edaee3978b145e7a3a7526959> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x19c158000 - 0x19c15bfff FTClientServices arm64e  <063e727d0db432e382e2b68c7f84f518> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x19c15c000 - 0x19c1c5fff ContactsUICore arm64e  <81abb06fb3423e8eabf85dceb19cc9c3> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x19c255000 - 0x19c261fff iAdServices arm64e  <056d03d2b3c53ef2b9145e238f1027d8> /System/Library/PrivateFrameworks/iAdServices.framework/iAdServices
0x19c655000 - 0x19c69dfff LoggingSupport arm64e  <01ca388902cd3471b550bec78c3f9e7d> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x19c7ac000 - 0x19c807fff ProtectedCloudStorage arm64e  <300e1a077b6c3b11b65d50cdeb8b53a4> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x19c8f6000 - 0x19c901fff OpenGLES arm64e  <702b7aef0c6833d395c8496af15d07dd> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x19ca6b000 - 0x19ca74fff libGFXShared.dylib arm64e   /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x19ca75000 - 0x19caa9fff SharedUtils arm64e   /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x19caaa000 - 0x19caf8fff PhotosFormats arm64e   /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x19db9f000 - 0x19dbdbfff StreamingZip arm64e  <5e336c546bf53392a17b8875760807ce> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x19e845000 - 0x19ea7bfff SafariShared arm64e   /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x19ead4000 - 0x19eaeafff NewsServicesInternal arm64e  <196decf7189e3e30a88afd9a57f7b2a1> /System/Library/PrivateFrameworks/NewsServicesInternal.framework/NewsServicesInternal
0x19eb03000 - 0x19eb05fff InternationalTextSearch arm64e  <67efb041157e3a1588983b11c121632d> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x19eb24000 - 0x19eb41fff AssetCacheServices arm64e  <2e06fe8cbe39350185716dfa153638f4> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x19f4cf000 - 0x19f4d4fff IncomingCallFilter arm64e  <7b0f5016c14a356c95115bfd8716aca2> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x19f4f0000 - 0x19f508fff NetworkStatistics arm64e  <7d5b038d755f3f1b9730786aa581ce52> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x19f977000 - 0x19f97dfff Netrb arm64e  <181d438cbd1c346d914badbe1f776de1> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x19f981000 - 0x19f9b1fff EAP8021X arm64e  <018a579ceefc3e1a9ec8107ad82b7004> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x19f9b2000 - 0x19f9b4fff OSAServicesClient arm64e  <7966858bf8f8384eb7eaba6d5a8dee35> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x19fb58000 - 0x19fb5cfff libgermantok.dylib arm64e  <0f199acc0f5d37aea1e995c1e859c4c6> /usr/lib/libgermantok.dylib
0x19fb5d000 - 0x19fc10fff libmecab.dylib arm64e   /usr/lib/libmecab.dylib
0x19fc11000 - 0x19fc4dfff Catalyst arm64e   /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x19fcc0000 - 0x19fd0dfff NewsToday arm64e  <4c31b76c062734119f480dd82d837bbe> /System/Library/PrivateFrameworks/NewsToday.framework/NewsToday
0x19fd0e000 - 0x19fd23fff EmojiFoundation arm64e  <941953d50ce33ad3a244f53ac1b59fd5> /System/Library/PrivateFrameworks/EmojiFoundation.framework/EmojiFoundation
0x19fd9c000 - 0x19fd9efff AdAnalytics arm64e  <4ff4fac8af1b30cabda54a29643aee2f> /System/Library/PrivateFrameworks/AdAnalytics.framework/AdAnalytics
0x19fd9f000 - 0x19fddbfff VoiceServices arm64e   /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x19fddc000 - 0x19fef7fff Navigation arm64e  <98cf063150db382cb681933807d04fc7> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1a020f000 - 0x1a021dfff CoreDuetDaemonProtocol arm64e  <5fd40e5ba6313dc4892b1f910d9038d8> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1a021e000 - 0x1a023efff FTAWD arm64e  <32644471341b392cb241cdcf587e2fed> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1a124f000 - 0x1a1251fff OAuth arm64e  <8a810004f7f43d7dad3e3555bf9230e4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1a1252000 - 0x1a1255fff AdPlatforms arm64e  <50366ade003735aeb90efa2a90473093> /System/Library/PrivateFrameworks/AdPlatforms.framework/AdPlatforms
0x1a150f000 - 0x1a154cfff DifferentialPrivacy arm64e   /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1a17f3000 - 0x1a1982fff EmailDaemon arm64e   /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1a1cf1000 - 0x1a1d1efff MailSupport arm64e   /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1a1d1f000 - 0x1a1d8ffff libarchive.2.dylib arm64e  <87025e7a53043890a7f0bf34f1da4432> /usr/lib/libarchive.2.dylib
0x1a1d90000 - 0x1a1dbffff C2 arm64e  <125104cd2ff63f07ad47d76d2d28046f> /System/Library/PrivateFrameworks/C2.framework/C2
0x1a1dc0000 - 0x1a1df4fff NaturalLanguage arm64e   /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1a1e8a000 - 0x1a1e8bfff libsystem_coreservices.dylib arm64e  <62efb55b6fb2355181d65985144da65d> /usr/lib/system/libsystem_coreservices.dylib
0x1a1e8c000 - 0x1a1e9cfff NewsAnalyticsUpload arm64e   /System/Library/PrivateFrameworks/NewsAnalyticsUpload.framework/NewsAnalyticsUpload
0x1a1e9d000 - 0x1a1eaefff libmis.dylib arm64e   /usr/lib/libmis.dylib
0x1a1eaf000 - 0x1a1f06fff WebBookmarks arm64e  <7ddc5239ae573fa4a4274cc6266db303> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1a1f07000 - 0x1a1f14fff DCIMServices arm64e  <08d156fae0c73433a07f88f2f6566f9c> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1a1f15000 - 0x1a2070fff CloudPhotoLibrary arm64e   /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1a2071000 - 0x1a20abfff ContactsAutocomplete arm64e  <19d9ae392b63303993b3d89472c13e1c> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1a20ac000 - 0x1a20b4fff libcopyfile.dylib arm64e   /usr/lib/system/libcopyfile.dylib
0x1a20b5000 - 0x1a20d5fff UsageTracking arm64e   /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1a2417000 - 0x1a24a9fff AccountsDaemon arm64e  <9de20c2bd7b2381baaffdbaa44beda17> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1a24aa000 - 0x1a24b5fff AppleIDSSOAuthentication arm64e   /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1a24b6000 - 0x1a24c7fff SettingsFoundation arm64e   /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1a254e000 - 0x1a25a0fff ClockKit arm64e  <33c529913b8b30efa5a309f9661ad4d7> /System/Library/PrivateFrameworks/ClockKit.framework/ClockKit
0x1a25f0000 - 0x1a266dfff Symbolication arm64e  <64e12c95c71b3080b5f49bb7b492d374> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1a2831000 - 0x1a2880fff ChunkingLibrary arm64e  <70e30c0e35cb33e0a8a11c141b7760a8> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1a2884000 - 0x1a2888fff DAAPKit arm64e   /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1a2d8f000 - 0x1a2d91fff CoreDuetDebugLogging arm64e   /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1a3890000 - 0x1a38cefff SignpostSupport arm64e   /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1a3b0f000 - 0x1a3b18fff SignpostCollection arm64e   /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1a4265000 - 0x1a426cfff URLFormatting arm64e  <22638e420fc23b1fbf7cd0c2698b5c7b> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1a4281000 - 0x1a4329fff MMCS arm64e  <759122ec91083f5aa8d39187b5e12bcc> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1a4383000 - 0x1a45aefff MobileSpotlightIndex arm64e   /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1a49aa000 - 0x1a49f1fff CoreLocationProtobuf arm64e  <7670d13e0e9b32208f9ff00afd2c1547> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1a4a7f000 - 0x1a4afafff Quagga arm64e  <6395c719ab773d9395757decaa9693e3> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1a4d99000 - 0x1a4da6fff libAXSpeechManager.dylib arm64e   /usr/lib/libAXSpeechManager.dylib
0x1a4dff000 - 0x1a4e07fff ProgressUI arm64e   /System/Library/PrivateFrameworks/ProgressUI.framework/ProgressUI
0x1a4e0d000 - 0x1a4e21fff libEDR arm64e  <3418f5ad9482391e86214d7da413f70c> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1a5a63000 - 0x1a5a71fff libperfcheck.dylib arm64e  <65fa28c4026c39f5ba309f9e7c62cf4f> /usr/lib/libperfcheck.dylib
0x1a5a72000 - 0x1a5a7dfff libAudioStatistics.dylib arm64e   /usr/lib/libAudioStatistics.dylib
0x1a5c3d000 - 0x1a5c4dfff caulk arm64e   /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1a5c8d000 - 0x1a5c93fff MobileSystemServices arm64e  <1c6232e16abc3a809157f27c8f0316a4> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1a5e32000 - 0x1a5e4afff TextToSpeech arm64e   /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1a69f3000 - 0x1a6a08fff RemoteXPC arm64e   /System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC
0x1a6d76000 - 0x1a6db2fff libGLImage.dylib arm64e  <40476c4fdcbb38ccb06885af767a2a62> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1a71ec000 - 0x1a71fdfff libSparseBLAS.dylib arm64e  <328e22435fb338b8bb20fd740eccc01c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1a71fe000 - 0x1a7212fff Engram arm64e  <42d74263c9833bc08c507b0526593889> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1a728d000 - 0x1a72c8fff DataDetectorsNaturalLanguage arm64e  <5d57d312a07030adbd1b8a472d9c8b01> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1a75ba000 - 0x1a75c2fff FSEvents arm64e  <543b3c11bbc43388bc77e860b780e223> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1a75d2000 - 0x1a7651fff CoreDAV arm64e   /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1a7f5d000 - 0x1a7f6dfff RemoteTextInput arm64e  <413eddd2de853186b654983723b68524> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1a7f96000 - 0x1a7fc6fff iCalendar arm64e  <5ee0e6556cd133a9bf65125c0c2a91dd> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1a7fe3000 - 0x1a7fecfff CloudPhotoServices arm64e  <7d0e0ab4edaf36f08c8a5a5fa6330308> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1a802c000 - 0x1a8040fff libLinearAlgebra.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1a80d3000 - 0x1a81dbfff ConfigurationEngineModel arm64e  <4325a3bee37d3504b989ef03a6fdb5bd> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1a81dc000 - 0x1a81e3fff CertUI arm64e   /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1a82ea000 - 0x1a82f8fff CoreAUC arm64e  <625babb086c2316c8b61c736c7ef33c4> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1a8b2c000 - 0x1a8b32fff DuetRecommendation arm64e  <3b715452bb7e3aa99702d31cf23e4cce> /System/Library/PrivateFrameworks/DuetRecommendation.framework/DuetRecommendation
0x1a8d33000 - 0x1a8d7afff PhysicsKit arm64e  <24933c9f5cd93de28a52a8d2e85f1df6> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1a8d7b000 - 0x1a8dcdfff CorePrediction arm64e  <1eec72976aa43d778f5945e152b1d7b1> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1a921d000 - 0x1a9265fff SafariSafeBrowsing arm64e   /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1a9618000 - 0x1a968ffff HomeSharing arm64e  <161b3212eee735588cec76e7282393cf> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1a9722000 - 0x1a9740fff GenerationalStorage arm64e  <62db70b3bcc0380a93039eac8c83f1a0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1a97a5000 - 0x1a97b0fff PersonaKit arm64e   /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1a97b1000 - 0x1a97bdfff PersonaUI arm64e   /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1a997e000 - 0x1a99bdfff AdCore arm64e  <7d71259e49d3333ebb245d724b19cdbe> /System/Library/PrivateFrameworks/AdCore.framework/AdCore
0x1a9bcd000 - 0x1a9bd2fff kperf arm64e  <67921ebb9b0c3ec2847ce00eb8a8d1b6> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1a9d66000 - 0x1a9d75fff AssetsLibrary arm64e   /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1a9da3000 - 0x1a9ddafff libpcap.A.dylib arm64e  <93abeafa93953f76bd95a57443580200> /usr/lib/libpcap.A.dylib
0x1a9ddb000 - 0x1a9ddffff NewsDaemon arm64e  <3a507c0e3d2a39c383cbc25900011444> /System/Library/PrivateFrameworks/NewsDaemon.framework/NewsDaemon
0x1aa0a3000 - 0x1aa0b9fff WebUI arm64e   /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1aa0ba000 - 0x1aa0d1fff SafariFoundation arm64e  <90b27d51e91c3bd09a3372e86cc65460> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1aa11a000 - 0x1aa1c0fff libvDSP.dylib arm64e  <9e7ceedfde2c3432aa5cf73999e05dd2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1aa1c1000 - 0x1aa1edfff vCard arm64e   /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1aa230000 - 0x1aa2bdfff SampleAnalysis arm64e  <48de37f04dcf347fbc3d3069cdd66c8d> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1aa2be000 - 0x1aa2c9fff IntentsFoundation arm64e  <62acc39c9a1d3816b292309ec178fa91> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1aa4ba000 - 0x1aa4bbfff ParsecSubscriptionServiceSupport arm64e  <03e432abcde438b6810bcc75e0153b0a> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1aa4bc000 - 0x1aa548fff MediaPlatform arm64e   /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1aa549000 - 0x1aa815fff MediaLibraryCore arm64e   /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1aa877000 - 0x1aa8b0fff PhotosImagingFoundation arm64e  <69ffed4d0d2e347f94e441e1a8937970> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1aa8b1000 - 0x1aa8d3fff MediaConversionService arm64e   /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1aa8d4000 - 0x1aa8f2fff MediaStream arm64e  <7435aab400dd37be96f4dd3bf68fce5a> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1aa8f3000 - 0x1aa9f4fff CoreMediaStream arm64e  <0a53f260826032698a6e28a5691253e7> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1aab0e000 - 0x1aab0efff Accelerate arm64e   /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1aab10000 - 0x1aae4dfff libLAPACK.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1aae4e000 - 0x1aae52fff libQuadrature.dylib arm64e  <541a519ace41385b9d84b4af10b39213> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1aae53000 - 0x1aaeacfff libvMisc.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1aaead000 - 0x1aaeadfff vecLib arm64e  <5320a9f197cc319b9fc7c76e84da2491> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1aaeb6000 - 0x1aaec3fff AuthenticationServices arm64e  <7150a56bcbd4383ca0f1fee8f698ee44> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1aaf07000 - 0x1ab011fff Combine arm64e  <2c7e541042ba36c4b8e427ad748d6b0b> /System/Library/Frameworks/Combine.framework/Combine
0x1ab024000 - 0x1ab073fff CoreMIDI arm64e  <4daf52ff1f2b3d74ac0c460612e617b4> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1ab269000 - 0x1ab296fff GSS arm64e  <61287c2c4a4d3ea7854daa7acbbf3435> /System/Library/Frameworks/GSS.framework/GSS
0x1ab2aa000 - 0x1ab2dcfff MPSCore arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1ab2dd000 - 0x1ab356fff MPSImage arm64e  <5627b80e55e83480b5b0dae1bc071ae9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1ab357000 - 0x1ab379fff MPSMatrix arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1ab37a000 - 0x1ab38efff MPSNDArray arm64e  <63ebbd974b273e1298d81166541870a5> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1ab38f000 - 0x1ab524fff MPSNeuralNetwork arm64e  <1d04f375820e3b909884eab7c82fbf08> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1ab525000 - 0x1ab56afff MPSRayIntersector arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1ab56b000 - 0x1ab56bfff MetalPerformanceShaders arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1ab578000 - 0x1ab578fff MobileCoreServices arm64e   /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1ab583000 - 0x1ab584fff libCVMSPluginSupport.dylib arm64e   /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1ab585000 - 0x1ab58bfff libCoreFSCache.dylib arm64e  <37f349c974f930c6bf872f8a1d5ce8be> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1ab58c000 - 0x1ab591fff libCoreVMClient.dylib arm64e  <6507dea92aae3de8a002f2d9a475e07e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1ab5c6000 - 0x1ab5fcfff QuickLookThumbnailing arm64e   /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1aba6e000 - 0x1aba6efff UIKit arm64e   /System/Library/Frameworks/UIKit.framework/UIKit
0x1aba90000 - 0x1abb56fff VisionKit arm64e   /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1abe28000 - 0x1abf60fff ANECompiler arm64e  <2f663fe7cd863aeb9e8c83696336371a> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1abf61000 - 0x1abf72fff ANEServices arm64e   /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1ac00d000 - 0x1ac011fff ASEProcessing arm64e  <230084eda99e3404ae36c4ec1afd8e63> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1ac116000 - 0x1ac14ffff AccessibilitySharedSupport arm64e   /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1ac1ad000 - 0x1ac1b8fff AccountSettings arm64e  <1d8c3c51334935e284f2e20dccd10943> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x1acba9000 - 0x1acbb7fff AppleFSCompression arm64e  <2d9cebf822963598a1a9c79949d7ed82> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1acbbe000 - 0x1acbc8fff AppleIDAuthSupport arm64e  <9c5c840287d338fda168939769a2bced> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1acbc9000 - 0x1acc0bfff AppleJPEG arm64e  <79a818f233f933da8883b061a07a9b7f> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1acc27000 - 0x1acc38fff AppleNeuralEngine arm64e  <258f9f4ee31c34b8abe2357d49c1d492> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1acc3f000 - 0x1acc62fff AppleSauce arm64e  <4837b25d7836325dae7599489c5cd809> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1ace63000 - 0x1ace93fff Bom arm64e  <11103b9e286338f2b5b59081d28b6ddd> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1ad926000 - 0x1ad92dfff CommonAuth arm64e   /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1adc52000 - 0x1add44fff CoreHandwriting arm64e  <7edf837bdf34370798510792cd84bdf8> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1add5b000 - 0x1add5efff CoreOptimization arm64e  <875ade7864a736f1af291a226583afd4> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1ade79000 - 0x1ade84fff DeviceIdentity arm64e  <8d58ebaafda93e3d83c111a9910872f7> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1ae015000 - 0x1ae030fff DocumentManagerCore arm64e  <6926e11b034035f392cde2453d7b0c5f> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1ae0f1000 - 0x1ae6adfff Espresso arm64e   /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1ae97e000 - 0x1aed91fff FaceCore arm64e  <8ad0d68b4abd3a0bbdfb1d05b1599d33> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1aee66000 - 0x1aee79fff libGSFontCache.dylib arm64e  <95e7d15348ae3f39a79e27b22d38310c> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1aeee0000 - 0x1aeeecfff libhvf.dylib arm64e  <0292acc17fae38d8b9e5e9481faee212> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1aef0e000 - 0x1aef22fff Futhark arm64e  <672f533948893ebf9f802945048fbb05> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1afc29000 - 0x1afc35fff GraphVisualizer arm64e  <70712b0f09253ad69e12a16f2325cbbb> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1b05b5000 - 0x1b0625fff Heimdal arm64e   /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1b0b58000 - 0x1b0b5efff InternationalSupport arm64e  <792be37f42e738e2a85f940e589904ad> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b0e1f000 - 0x1b0e1ffff Marco arm64e   /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1b12eb000 - 0x1b1315fff MetricsKit arm64e  <438868c0db0c3ca5b7ef525d7175931f> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1b1323000 - 0x1b1335fff MobileDeviceLink arm64e   /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1b133b000 - 0x1b133cfff MobileObliteration arm64e   /System/Library/PrivateFrameworks/MobileObliteration.framework/MobileObliteration
0x1b1347000 - 0x1b1350fff MobileStorage arm64e  <278fb24b853333feb96bc2b672037bb7> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1b15e3000 - 0x1b15e8fff NewsServices arm64e  <94599b5c15a33f2c9b20be57ed998f1b> /System/Library/PrivateFrameworks/NewsServices.framework/NewsServices
0x1b15ed000 - 0x1b162dfff OTSVG arm64e   /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1b1cb1000 - 0x1b1cb1fff PhoneNumbers arm64e  <7e38d788f45631b592f24c1815b4425d> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1b3488000 - 0x1b3490fff PrototypeToolsUI arm64e  <1b9285fddb8a3bca9eda75b7a4b4f779> /System/Library/PrivateFrameworks/PrototypeToolsUI.framework/PrototypeToolsUI
0x1b3645000 - 0x1b3651fff RemoteServiceDiscovery arm64e  <35e081844fb93bf681d7727925f55aec> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery
0x1b36ac000 - 0x1b36b0fff RevealCore arm64e   /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1b37a2000 - 0x1b37d4fff ScreenReaderCore arm64e  <3c0a5b4a949a3b96b560a0ea5f9fc236> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x1b3848000 - 0x1b3854fff SetupAssistantSupport arm64e  <67af340cbb44383abea532d69c051c4d> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1b3873000 - 0x1b3873fff SignpostMetrics arm64e  <8491b11f8bdd35b5a2341b5dbfaf3e7a> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1b38a2000 - 0x1b38befff SiriInstrumentation arm64e  <1f021f3ff9273b23a1b4fd2a5a789107> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1b4047000 - 0x1b4167fff TextRecognition arm64e   /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1b4168000 - 0x1b420cfff TextureIO arm64e   /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1b4360000 - 0x1b436bfff TransparencyDetailsView arm64e  <2de8fffb3bc23e63a5292449c9d1dd17> /System/Library/PrivateFrameworks/TransparencyDetailsView.framework/TransparencyDetailsView
0x1b504e000 - 0x1b554bfff libwebrtc.dylib arm64e   /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1b56e5000 - 0x1b56edfff kperfdata arm64e  <268ed5f452853e16970edd86308648e6> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1b56ee000 - 0x1b5737fff ktrace arm64e  <6ae5fc68b5c43669a7966bc0dbfb906a> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1b5750000 - 0x1b575cfff perfdata arm64e  <2f57b5d4778c3edeaff896eb3f1ae0a4> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1b575d000 - 0x1b576bfff zudp arm64e  <5bd9dbe3109c3c31a698f8d10a4704ce> /System/Library/PrivateFrameworks/zudp.framework/zudp
0x1b5b33000 - 0x1b5e34fff libAWDSupportFramework.dylib arm64e   /usr/lib/libAWDSupportFramework.dylib
0x1b5fe6000 - 0x1b5ff0fff libChineseTokenizer.dylib arm64e  <8e294bf75bd03ac0b337808c053718a2> /usr/lib/libChineseTokenizer.dylib
0x1b6015000 - 0x1b61d9fff libFosl_dynamic.dylib arm64e   /usr/lib/libFosl_dynamic.dylib
0x1b6256000 - 0x1b625dfff libMatch.1.dylib arm64e   /usr/lib/libMatch.1.dylib
0x1b630f000 - 0x1b6310fff libSystem.B.dylib arm64e   /usr/lib/libSystem.B.dylib
0x1b6319000 - 0x1b631afff libThaiTokenizer.dylib arm64e  <5714b83e0221351eaed33967533ee8ac> /usr/lib/libThaiTokenizer.dylib
0x1b641a000 - 0x1b642ffff libapple_nghttp2.dylib arm64e  <20c588bb07ca3f33a0128400556f5576> /usr/lib/libapple_nghttp2.dylib
0x1b64a8000 - 0x1b64b8fff libbsm.0.dylib arm64e   /usr/lib/libbsm.0.dylib
0x1b64b9000 - 0x1b64c5fff libbz2.1.0.dylib arm64e  <6b253115be113d3a98728dccc97b5bb4> /usr/lib/libbz2.1.0.dylib
0x1b64c6000 - 0x1b64c6fff libcharset.1.dylib arm64e   /usr/lib/libcharset.1.dylib
0x1b64c7000 - 0x1b64d8fff libcmph.dylib arm64e  <3518804827d43966a3680ff1d59cc23e> /usr/lib/libcmph.dylib
0x1b64d9000 - 0x1b64f0fff libcompression.dylib arm64e   /usr/lib/libcompression.dylib
0x1b64f1000 - 0x1b64f2fff libcoretls_cfhelpers.dylib arm64e   /usr/lib/libcoretls_cfhelpers.dylib
0x1b64f3000 - 0x1b64f9fff libcupolicy.dylib arm64e  <83f09dda7f83394bb7c19fbacf9d73e4> /usr/lib/libcupolicy.dylib
0x1b653a000 - 0x1b6543fff libdscsym.dylib arm64e  <5d63488dd8793920b7e07d32b6702938> /usr/lib/libdscsym.dylib
0x1b6544000 - 0x1b6561fff libedit.3.dylib arm64e  <5bfc3fd2d7e43f589951c0e331470a17> /usr/lib/libedit.3.dylib
0x1b657b000 - 0x1b6580fff libheimdal-asn1.dylib arm64e  <48250f2339a03afd89a1f299c63b6c7f> /usr/lib/libheimdal-asn1.dylib
0x1b6581000 - 0x1b6673fff libiconv.2.dylib arm64e   /usr/lib/libiconv.2.dylib
0x1b6689000 - 0x1b6694fff liblockdown.dylib arm64e  <67069c6e24c03429bcc947e9e37219b8> /usr/lib/liblockdown.dylib
0x1b66ae000 - 0x1b66c6fff liblzma.5.dylib arm64e  <8f71f57782fc37129edf4e65a4ba057f> /usr/lib/liblzma.5.dylib
0x1b6a41000 - 0x1b6a71fff libncurses.5.4.dylib arm64e  <7f2d88671e0c3059a800ef9cbd1237bb> /usr/lib/libncurses.5.4.dylib
0x1b6a72000 - 0x1b6a86fff libnetworkextension.dylib arm64e  <6a7f46a0ca633f42808eba6390024d46> /usr/lib/libnetworkextension.dylib
0x1b6e12000 - 0x1b6e2afff libresolv.9.dylib arm64e  <547a0667b3403e76af0de0ae6b64e3c9> /usr/lib/libresolv.9.dylib
0x1b6e2b000 - 0x1b6e2dfff libsandbox.1.dylib arm64e  <6510d9eb36023e1d967bd1a42a84e614> /usr/lib/libsandbox.1.dylib
0x1b6e2e000 - 0x1b6e33fff libsysdiagnose.dylib arm64e   /usr/lib/libsysdiagnose.dylib
0x1b6e34000 - 0x1b6e65fff libtidy.A.dylib arm64e   /usr/lib/libtidy.A.dylib
0x1b6e6d000 - 0x1b6e70fff libutil.dylib arm64e  <3f0b39a6c4cf3b93995718087a08cf73> /usr/lib/libutil.dylib
0x1b6e9e000 - 0x1b6eaffff libz.1.dylib arm64e   /usr/lib/libz.1.dylib
0x1b6ed8000 - 0x1b6edafff liblog_network.dylib arm64e   /usr/lib/log/liblog_network.dylib
0x1b6eea000 - 0x1b6efafff libswiftAVFoundation.dylib arm64e  <7e10f06ee15336feba201a5a2d349360> /usr/lib/swift/libswiftAVFoundation.dylib
0x1b6efb000 - 0x1b6f35fff libswiftAccelerate.dylib arm64e  <7e06bbde64be362f9b0b353271821b67> /usr/lib/swift/libswiftAccelerate.dylib
0x1b6f36000 - 0x1b6f3afff libswiftAssetsLibrary.dylib arm64e   /usr/lib/swift/libswiftAssetsLibrary.dylib
0x1b6f5f000 - 0x1b6f65fff libswiftContacts.dylib arm64e   /usr/lib/swift/libswiftContacts.dylib
0x1b6f66000 - 0x1b6f73fff libswiftCoreAudio.dylib arm64e   /usr/lib/swift/libswiftCoreAudio.dylib
0x1b6f7c000 - 0x1b6f80fff libswiftCoreFoundation.dylib arm64e  <5def5c6a535f384fba05f6955e2a8664> /usr/lib/swift/libswiftCoreFoundation.dylib
0x1b6f81000 - 0x1b6f8ffff libswiftCoreGraphics.dylib arm64e   /usr/lib/swift/libswiftCoreGraphics.dylib
0x1b6f90000 - 0x1b6f94fff libswiftCoreImage.dylib arm64e  <08bac19d9e9933b9b0c991e26edb2c00> /usr/lib/swift/libswiftCoreImage.dylib
0x1b6f95000 - 0x1b6f9bfff libswiftCoreLocation.dylib arm64e   /usr/lib/swift/libswiftCoreLocation.dylib
0x1b6f9c000 - 0x1b6fa6fff libswiftCoreMIDI.dylib arm64e  <9514c89ce167313785a14f8deb843565> /usr/lib/swift/libswiftCoreMIDI.dylib
0x1b6fa7000 - 0x1b6fe9fff libswiftCoreMedia.dylib arm64e   /usr/lib/swift/libswiftCoreMedia.dylib
0x1b6fea000 - 0x1b6ff3fff libswiftDarwin.dylib arm64e   /usr/lib/swift/libswiftDarwin.dylib
0x1b6ff4000 - 0x1b7010fff libswiftDispatch.dylib arm64e   /usr/lib/swift/libswiftDispatch.dylib
0x1b7011000 - 0x1b71a1fff libswiftFoundation.dylib arm64e  <983ab68c14ce33589ea762aece0a07cc> /usr/lib/swift/libswiftFoundation.dylib
0x1b71c8000 - 0x1b71cdfff libswiftMapKit.dylib arm64e   /usr/lib/swift/libswiftMapKit.dylib
0x1b71da000 - 0x1b71e1fff libswiftMetal.dylib arm64e  <49505ca11ca43523a3ec2afe4ea1f30f> /usr/lib/swift/libswiftMetal.dylib
0x1b7256000 - 0x1b725cfff libswiftObjectiveC.dylib arm64e   /usr/lib/swift/libswiftObjectiveC.dylib
0x1b725d000 - 0x1b7265fff libswiftPhotos.dylib arm64e   /usr/lib/swift/libswiftPhotos.dylib
0x1b7266000 - 0x1b726bfff libswiftQuartzCore.dylib arm64e  <4f6b90486b2634769ec92c36ca48bb29> /usr/lib/swift/libswiftQuartzCore.dylib
0x1b72a8000 - 0x1b72bcfff libswiftUIKit.dylib arm64e   /usr/lib/swift/libswiftUIKit.dylib
0x1b72cd000 - 0x1b72d5fff libswiftos.dylib arm64e  <58a8eb2a8a733f6f8628ba82edbf0cb2> /usr/lib/swift/libswiftos.dylib
0x1b72d6000 - 0x1b72f0fff libswiftsimd.dylib arm64e  <4d8a4d94a49234acbbb6475214db704e> /usr/lib/swift/libswiftsimd.dylib
0x1b72f1000 - 0x1b72f6fff libcache.dylib arm64e  <2dddbc36aa7732c0b95056290ae4eb5a> /usr/lib/system/libcache.dylib
0x1b72f7000 - 0x1b7307fff libcommonCrypto.dylib arm64e  <7925a57ae194355ea75633fb5fb3311f> /usr/lib/system/libcommonCrypto.dylib
0x1b7308000 - 0x1b730bfff libcompiler_rt.dylib arm64e  <0d4001df92c13e228a2a9f5b1b00ed08> /usr/lib/system/libcompiler_rt.dylib
0x1b73e2000 - 0x1b73e2fff liblaunch.dylib arm64e   /usr/lib/system/liblaunch.dylib
0x1b73e3000 - 0x1b73e8fff libmacho.dylib arm64e  <39c6830065b53de4b67e8a1ea71cf80d> /usr/lib/system/libmacho.dylib
0x1b73e9000 - 0x1b73eafff libremovefile.dylib arm64e  <7e5f05477aa23c14be26a918f669f1a4> /usr/lib/system/libremovefile.dylib
0x1b73eb000 - 0x1b73ecfff libsystem_featureflags.dylib arm64e  <6a91c6101f8d31a39361086939778789> /usr/lib/system/libsystem_featureflags.dylib
0x1b73ed000 - 0x1b741afff libsystem_m.dylib arm64e  <69aafc9e28c133999dd9b5b93d3c21a9> /usr/lib/system/libsystem_m.dylib
0x1b741b000 - 0x1b7420fff libunwind.dylib arm64e  <18bdcd9f8dd332f4abd51ebcb12586c7> /usr/lib/system/libunwind.dylib
0x1b7702000 - 0x1b7771fff NanoRegistry arm64e   /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1b7772000 - 0x1b777ffff NanoPreferencesSync arm64e   /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1b94a6000 - 0x1b94c3fff AppSSO arm64e   /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO
0x1b94c4000 - 0x1b94d8fff AppSSOCore arm64e  <890cb25d51983b79a57bb4be5f056ab9> /System/Library/PrivateFrameworks/AppSSOCore.framework/AppSSOCore

EOF

 

 

Date/Time:        2019-10-23 17:16:57 +0900
End time:         2019-10-23 17:17:40 +0900
OS Version:       iPhone OS 13.1.2 (Build 17A860)
Architecture:     arm64e
Report Version:   29
Incident Identifier: 55620B77-AFF2-4282-BC7E-033FD7FF5DC4

Data Source:      Microstackshots
Shared Cache:     0x2efdc000 24957F2D-2DB1-359E-98A3-ECD7E1286EA5

Command:          KakaoMap
Path:             /private/var/containers/Bundle/Application/D5CFB9BB-428F-4CF0-B8B0-08187972AE20/KakaoMap.app/KakaoMap
Identifier:       net.daum.maps
Version:          4.8.0 (18070)
Beta Identifier:  07240E6D-1D3A-4150-9785-4A66CAA894F9
PID:              3877

Event:            wakeups
Action taken:     none
Wakeups:          45001 wakeups over the last 43 seconds (1047 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45001
Wakeups duration: 43s
Duration:         42.99s
Duration Sampled: 5.02s
Steps:            5

Hardware model:   iPhone11,8
Active cpus:      6


Heaviest stack for the target process:
  2  ??? (libdyld.dylib + 3888) [0x1af232f30]
  2  ??? (KakaoMap + 239220) [0x10066e674]
  2  ??? (libswiftUIKit.dylib + 33024) [0x1e453b100]
  2  ??? (UIKitCore + 10684332) [0x1b34d37ac]
  2  ??? (GraphicsServices + 13620) [0x1b951d534]
  2  ??? (CoreFoundation + 688280) [0x1af3b3098]
  2  ??? (CoreFoundation + 691232) [0x1af3b3c20]
  2  ??? (CoreFoundation + 712680) [0x1af3b8fe8]
  2  ??? (CoreFoundation + 715036) [0x1af3b991c]
  2  ??? (CoreFoundation + 540468) [0x1af38ef34]
  2  ??? (QuartzCore + 920880) [0x1b5ea5d30]
  2  ??? (QuartzCore + 74296) [0x1b5dd7238]
  2  ??? ( + 91352) [0x1020324d8]
  2  ??? ( + 760200) [0x1020d5988]
  2  ??? ( + 2910444) [0x1022e28ec]
  2  ??? ( + 2108704) [0x10221ed20]
  1  ??? ( + 1837540) [0x1021dc9e4]
  1  ??? ( + 1954408) [0x1021f9268]
  1  ??? ( + 2682324) [0x1022aadd4]
  1  ??? ( + 2816912) [0x1022cbb90]
  1  ??? (OpenGLES + 15272) [0x1c9b85ba8]
  1  ??? (GLEngine + 81572) [0x1c9aa7ea4]
  1  ??? (AppleMetalGLRenderer + 100960) [0x1c9b7ca60]
  1  ??? (AppleMetalGLRenderer + 102184) [0x1c9b7cf28]
  1  ??? (AGXMetalA12 + 2460712) [0x1e5537c28]
  1  ??? (AGXMetalA12 + 518036) [0x1e535d794]
  1  ??? (AGXMetalA12 + 598112) [0x1e5371060]
  1  ??? (AGXMetalA12 + 774084) [0x1e539bfc4]
  1  ??? (AGXMetalA12 + 1058104) [0x1e53e1538]


Powerstats for:   KakaoMap [3877]
Bundle ID:        net.daum.maps
Adam ID:          304608425
Is first party:   No
App version:      4.8.0
Build version:    18070
Is Beta:          No
Share with Devs:  No
UUID:             29D3494F-2686-3BDF-A051-0FD52E2147CC
Path:             /private/var/containers/Bundle/Application/D5CFB9BB-428F-4CF0-B8B0-08187972AE20/KakaoMap.app/KakaoMap
Architecture:     arm64
Footprint:        153.48 MB
Start time:       2019-10-23 17:17:33 +0900
End time:         2019-10-23 17:17:38 +0900
Num samples:      5 (100%)
CPU Time:         1.692s
Primary state:    2 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS User Interactive, Requested Thread QoS User Interactive, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 0 samples Active, 5 samples Unknown
Power Source:     0 samples on Battery, 0 samples on AC, 5 samples Unknown
  2  ??? (libdyld.dylib + 3888) [0x1af232f30]
    2  ??? (KakaoMap + 239220) [0x10066e674]
      2  ??? (libswiftUIKit.dylib + 33024) [0x1e453b100]
        2  ??? (UIKitCore + 10684332) [0x1b34d37ac]
          2  ??? (GraphicsServices + 13620) [0x1b951d534]
            2  ??? (CoreFoundation + 688280) [0x1af3b3098]
              2  ??? (CoreFoundation + 691232) [0x1af3b3c20]
                2  ??? (CoreFoundation + 712680) [0x1af3b8fe8]
                  2  ??? (CoreFoundation + 715036) [0x1af3b991c]
                    2  ??? (CoreFoundation + 540468) [0x1af38ef34]
                      2  ??? (QuartzCore + 920880) [0x1b5ea5d30]
                        2  ??? (QuartzCore + 74296) [0x1b5dd7238]
                          2  ??? ( + 91352) [0x1020324d8]
                            2  ??? ( + 760200) [0x1020d5988]
                              2  ??? ( + 2910444) [0x1022e28ec]
                                2  ??? ( + 2108704) [0x10221ed20]
                                  1  ??? ( + 1837540) [0x1021dc9e4]
                                    1  ??? ( + 1954408) [0x1021f9268]
                                      1  ??? ( + 2682324) [0x1022aadd4]
                                        1  ??? ( + 2816912) [0x1022cbb90]
                                          1  ??? (OpenGLES + 15272) [0x1c9b85ba8]
                                            1  ??? (GLEngine + 81572) [0x1c9aa7ea4]
                                              1  ??? (AppleMetalGLRenderer + 100960) [0x1c9b7ca60]
                                                1  ??? (AppleMetalGLRenderer + 102184) [0x1c9b7cf28]
                                                  1  ??? (AGXMetalA12 + 2460712) [0x1e5537c28]
                                                    1  ??? (AGXMetalA12 + 518036) [0x1e535d794]
                                                      1  ??? (AGXMetalA12 + 598112) [0x1e5371060]
                                                        1  ??? (AGXMetalA12 + 774084) [0x1e539bfc4]
                                                          1  ??? (AGXMetalA12 + 1058104) [0x1e53e1538]
                                  1  ??? ( + 1837388) [0x1021dc94c]
                                    1  ??? ( + 1953840) [0x1021f9030]
                                      1  ??? ( + 2930604) [0x1022e77ac]
                                        1  ??? ( + 2931360) [0x1022e7aa0]
  2  ??? (libsystem_pthread.dylib + 7516) [0x1af148d5c]
    2  ??? ( + 3242628) [0x102333a84]
      2  ??? ( + 3240824) [0x102333378]
        2  ??? (libc++.1.dylib + 324464) [0x1af2bd370]
          2  ??? (libsystem_c.dylib + 472768) [0x1af0d66c0]
            2  ??? (libsystem_kernel.dylib + 57144) [0x1af210f38]
              2  ??? (libsystem_kernel.dylib + 15300) [0x1af206bc4]
                2  
  1  ??? (libsystem_pthread.dylib + 15008) [0x1af14aaa0]
    1  ??? (libdispatch.dylib + 77600) [0x1af0f4f20]
      1  ??? (libdispatch.dylib + 43808) [0x1af0ecb20]
        1  ??? (libdispatch.dylib + 45060) [0x1af0ed004]
          1  ??? (libdispatch.dylib + 40680) [0x1af0ebee8]
            1  ??? (libdispatch.dylib + 38020) [0x1af0eb484]
              1  ??? (libdispatch.dylib + 12300) [0x1af0e500c]
                1  ??? (libdispatch.dylib + 7088) [0x1af0e3bb0]
                  1  ??? (CFNetwork + 2116032) [0x1b28789c0]
                    1  ??? (CFNetwork + 2115960) [0x1b2878978]
                      1  ??? (CFNetwork + 2117488) [0x1b2878f70]
                        1  ??? (CFNetwork + 2119768) [0x1b2879858]
                          1  ??? (CFNetwork + 2117988) [0x1b2879164]
                            1  ??? (CFNetwork + 2122352) [0x1b287a270]
                              1  ??? (CFNetwork + 2123196) [0x1b287a5bc]
                                1  ??? (CFNetwork + 1920584) [0x1b2848e48]
                                  1  ??? (CoreFoundation + 481052) [0x1af38071c]
                                    1  ??? (CoreFoundation + 480944) [0x1af3806b0]
                                      1  ??? (CoreFoundation + 1418424) [0x1af4654b8]
                                        1  ??? (CoreFoundation + 1418568) [0x1af465548]
                                          1  

  Binary Images:
           0x100634000 -                ???  net.daum.maps 4.8.0 (18070) <29D3494F-2686-3BDF-A051-0FD52E2147CC>  /private/var/containers/Bundle/Application/D5CFB9BB-428F-4CF0-B8B0-08187972AE20/KakaoMap.app/KakaoMap
           0x10201c000 -                ???  ???                         
           0x1af063000 -        0x1af0e1fff  libsystem_c.dylib           <15628BE2-4F69-37C5-A96D-72724762F01F>  /usr/lib/system/libsystem_c.dylib
           0x1af0e2000 -        0x1af11efff  libdispatch.dylib             /usr/lib/system/libdispatch.dylib
           0x1af147000 -        0x1af151fff  libsystem_pthread.dylib       /usr/lib/system/libsystem_pthread.dylib
           0x1af203000 -        0x1af231fff  libsystem_kernel.dylib        /usr/lib/system/libsystem_kernel.dylib
           0x1af232000 -        0x1af265fff  libdyld.dylib               <0DC9A4BA-C3E8-3487-99DB-1B5C86597AF5>  /usr/lib/system/libdyld.dylib
           0x1af26e000 -        0x1af2c8fff  libc++.1.dylib                /usr/lib/libc++.1.dylib
           0x1af30b000 -        0x1af688fff  CoreFoundation              <97285ACB-7B21-393A-ABF6-03F1DBB5D2A2>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x1b2674000 -        0x1b29bffff  CFNetwork                   <32DFBF26-0BC4-3FB8-9AEB-35182C8B35FA>  /System/Library/Frameworks/CFNetwork.framework/CFNetwork
           0x1b2aa3000 -        0x1b3ba2fff  UIKitCore                   <55D60569-DBB7-3BC9-8A97-DCAC95C64D4B>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1b5dc5000 -        0x1b601bfff  QuartzCore                  <68E87E8E-7275-3847-B0E5-7936442B19FC>  /System/Library/Frameworks/QuartzCore.framework/QuartzCore
           0x1b951a000 -        0x1b9522fff  GraphicsServices            <76220592-3BB4-354A-947F-8D3C1682CD5F>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
           0x1c9a94000 -        0x1c9b63fff  GLEngine                    <45072627-9356-32D2-971C-20790F5A04B4>  /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine
           0x1c9b64000 -        0x1c9b81fff  AppleMetalGLRenderer        <1EDC08F9-D26E-3F35-A46D-718856B1A4CE>  /System/Library/Extensions/AppleMetalGLRenderer.bundle/AppleMetalGLRenderer
           0x1c9b82000 -        0x1c9b8dfff  OpenGLES                    <702B7AEF-0C68-33D3-95C8-496AF15D07DD>  /System/Library/Frameworks/OpenGLES.framework/OpenGLES
           0x1e4533000 -        0x1e4547fff  libswiftUIKit.dylib           /usr/lib/swift/libswiftUIKit.dylib
           0x1e52df000 -        0x1e559bfff  AGXMetalA12                 <466730B6-1C72-3C69-8915-7C9A330E7797>  /System/Library/Extensions/AGXMetalA12.bundle/AGXMetalA12

불러오는 중입니다...

Incident Identifier: FE013288-D829-4A3B-A2D3-FD94DC298525
CrashReporter Key:   028cb2aff8ac98843b873853ae1a4c07754e1051
Hardware Model:      iPhone11,8
Process:             InstagramNotificationExtension [345]
Path:                /private/var/containers/Bundle/Application/1F5E29F0-DDE8-4C5F-8864-5668546ED447/Instagram.app/PlugIns/InstagramNotificationExtension.appex/InstagramNotificationExtension
Identifier:          com.burbn.instagram.notificationextension
Version:             178418958 (116.0)
AppVariant:          1:iPhone11,8:13
Code Type:           ARM-64 (Native)
Role:                Unspecified
Parent Process:      launchd [1]
Coalition:           com.burbn.instagram.notificationextension [538]


Date/Time:           2019-10-24 09:59:43.3178 +0900
Launch Time:         2019-10-24 09:59:42.9753 +0900
OS Version:          iPhone OS 13.1.3 (17A878)
Release Type:        User
Baseband Version:    2.01.08
Report Version:      104

Exception Type:  EXC_BREAKPOINT (SIGTRAP)
Exception Codes: 0x0000000000000001, 0x0000000189dc4e90
Termination Signal: Trace/BPT trap: 5
Termination Reason: Namespace SIGNAL, Code 0x5
Terminating Process: exc handler [345]
Triggered by Thread:  1

Thread 0 name:  Dispatch queue: com.apple.main-thread
Thread 0:
0   libsystem_kernel.dylib         0x0000000181f7abc4 0x181f77000 + 15300
1   libsystem_kernel.dylib         0x0000000181f79fe0 0x181f77000 + 12256
2   CoreFoundation                 0x000000018212cabc 0x18207f000 + 711356
3   CoreFoundation                 0x0000000182127954 0x18207f000 + 690516
4   CoreFoundation                 0x0000000182127098 0x18207f000 + 688280
5   Foundation                     0x000000018246c580 0x182464000 + 34176
6   Foundation                     0x00000001824a77d0 0x182464000 + 276432
7   libxpc.dylib                   0x0000000181db7ba8 0x181da2000 + 89000
8   libxpc.dylib                   0x0000000181dba5d4 0x181da2000 + 99796
9   Foundation                     0x00000001824a99d0 0x182464000 + 285136
10  PlugInKit                      0x000000018f67d9cc 0x18f667000 + 92620
11  PlugInKit                      0x000000018f67d6b4 0x18f667000 + 91828
12  PlugInKit                      0x000000018f67ddf0 0x18f667000 + 93680
13  Foundation                     0x0000000182695108 0x182464000 + 2298120
14  libdyld.dylib                  0x0000000181fa6f30 0x181fa6000 + 3888

Thread 1 name:  Dispatch queue: com.apple.NSXPCConnection.user.endpoint
Thread 1 Crashed:
0   WebCore                        0x0000000189dc4e90 0x189dba000 + 44688
1   WebCore                        0x000000018b2fa9d4 0x189dba000 + 22284756
2   WebCore                        0x000000018a1e7628 0x189dba000 + 4380200
3   WebCore                        0x000000018a1ea820 0x189dba000 + 4392992
4   libc++.1.dylib                 0x00000001820247ac 0x181fe2000 + 272300
5   WebCore                        0x000000018a1e7418 0x189dba000 + 4379672
6   WebKitLegacy                   0x000000018e304318 0x18e2fd000 + 29464
7   WebKitLegacy                   0x000000018e40328c 0x18e2fd000 + 1073804
8   UIKitCore                      0x00000001862479dc 0x185817000 + 10684892
9   libdispatch.dylib              0x0000000181e5900c 0x181e56000 + 12300
10  libdispatch.dylib              0x0000000181e5a6f4 0x181e56000 + 18164
11  UIKitCore                      0x0000000186247920 0x185817000 + 10684704
12  libobjc.A.dylib                0x0000000181ec7bc0 0x181ec6000 + 7104
13  libobjc.A.dylib                0x0000000181ecd628 0x181ec6000 + 30248
14  libobjc.A.dylib                0x0000000181ecdd9c 0x181ec6000 + 32156
15  libobjc.A.dylib                0x0000000181eda834 0x181ec6000 + 84020
16  libobjc.A.dylib                0x0000000181ec8400 0x181ec6000 + 9216
17  libobjc.A.dylib                0x0000000181ee7418 0x181ec6000 + 136216
18  FBSharedFramework              0x000000010031c5a0 0x1002b8000 + 411040
19  libdispatch.dylib              0x0000000181e5900c 0x181e56000 + 12300
20  libdispatch.dylib              0x0000000181e5a6f4 0x181e56000 + 18164
21  FBSharedFramework              0x000000010031c52c 0x1002b8000 + 410924
22  FBSharedFramework              0x000000010031b898 0x1002b8000 + 407704
23  FBSharedFramework              0x000000010031b7ac 0x1002b8000 + 407468
24  libdispatch.dylib              0x0000000181e5900c 0x181e56000 + 12300
25  libdispatch.dylib              0x0000000181e5a6f4 0x181e56000 + 18164
26  FBSharedFramework              0x000000010031b730 0x1002b8000 + 407344
27  FBSharedFramework              0x000000010031b3cc 0x1002b8000 + 406476
28  InstagramNotificationExtension 0x00000001000c7704 0x1000c0000 + 30468
29  InstagramNotificationExtension 0x00000001000c6794 0x1000c0000 + 26516
30  UserNotifications              0x0000000189603820 0x1895fe000 + 22560
31  Foundation                     0x00000001826b14f0 0x182464000 + 2413808
32  Foundation                     0x00000001824bb138 0x182464000 + 356664
33  Foundation                     0x00000001826b1614 0x182464000 + 2414100
34  libxpc.dylib                   0x0000000181daf898 0x181da2000 + 55448
35  libxpc.dylib                   0x0000000181dafc1c 0x181da2000 + 56348
36  libdispatch.dylib              0x0000000181e590d8 0x181e56000 + 12504
37  libdispatch.dylib              0x0000000181e6f8e4 0x181e56000 + 104676
38  libdispatch.dylib              0x0000000181e5f354 0x181e56000 + 37716
39  libdispatch.dylib              0x0000000181e70898 0x181e56000 + 108696
40  libdispatch.dylib              0x0000000181e704f0 0x181e56000 + 107760
41  libdispatch.dylib              0x0000000181e5f354 0x181e56000 + 37716
42  libdispatch.dylib              0x0000000181e5fee8 0x181e56000 + 40680
43  libdispatch.dylib              0x0000000181e68f20 0x181e56000 + 77600
44  libsystem_pthread.dylib        0x0000000181ebeaa0 0x181ebb000 + 15008
45  libsystem_pthread.dylib        0x0000000181ec4c78 0x181ebb000 + 40056

Thread 2:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 3:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 4:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 5:
0   libsystem_pthread.dylib        0x0000000181ec4c70 0x181ebb000 + 40048

Thread 1 crashed with ARM Thread State (64-bit):
    x0: 0x000000000000003e   x1: 0x000000018ba85ff9   x2: 0x000000018ba86069   x3: 0x0000000000000011
    x4: 0x0000000127e1fd00   x5: 0x0000000000000000   x6: 0x0000000000000000   x7: 0x0000000000000000
    x8: 0x000000016fdc7000   x9: 0x00000001001b1840  x10: 0x0000000000000005  x11: 0x00000000000000f5
   x12: 0x0000000002200200  x13: 0x00000000ffffffff  x14: 0x0000000020489945  x15: 0x0000000000001dae
   x16: 0x0000000181ebd1c0  x17: 0x00000001bf58fff8  x18: 0x0000000000000000  x19: 0x00000001ca2d7d10
   x20: 0x0000000127e04610  x21: 0x00000001b9fd5447  x22: 0x00000001ba3e281c  x23: 0x0000000181ec7864
   x24: 0x0000000000000001  x25: 0x00000001ca25cbbc  x26: 0x000000016fdc70e0  x27: 0x0000000000000001
   x28: 0x0000000127d12800   fp: 0x000000016fdc4ea0   lr: 0x000000018b2fa9d4
    sp: 0x000000016fdc4e70   pc: 0x0000000189dc4e90 cpsr: 0x60000000
   esr: 0xf2000000  Address size fault

Binary Images:
0x1000c0000 - 0x1000c7fff InstagramNotificationExtension arm64  <2a066ef0b5573a85aed3c6c473c08138> /var/containers/Bundle/Application/1F5E29F0-DDE8-4C5F-8864-5668546ED447/Instagram.app/PlugIns/InstagramNotificationExtension.appex/InstagramNotificationExtension
0x100140000 - 0x1001a7fff dyld arm64e   /usr/lib/dyld
0x1002b8000 - 0x100eb7fff FBSharedFramework arm64  <36c6d60c08bc374fbc2fe89b0a6c99ab> /var/containers/Bundle/Application/1F5E29F0-DDE8-4C5F-8864-5668546ED447/Instagram.app/Frameworks/FBSharedFramework.framework/FBSharedFramework
0x10177c000 - 0x101787fff libobjc-trampolines.dylib arm64e   /usr/lib/libobjc-trampolines.dylib
0x181d8b000 - 0x181da1fff libsystem_trace.dylib arm64e  <9bc16767c7a83e15bc8c0965e9f8f00b> /usr/lib/system/libsystem_trace.dylib
0x181da2000 - 0x181dd5fff libxpc.dylib arm64e   /usr/lib/system/libxpc.dylib
0x181dd6000 - 0x181dd6fff libsystem_blocks.dylib arm64e  <91adb2b4377434cc84f88e9a634b6b86> /usr/lib/system/libsystem_blocks.dylib
0x181dd7000 - 0x181e55fff libsystem_c.dylib arm64e  <15628be24f6937c5a96d72724762f01f> /usr/lib/system/libsystem_c.dylib
0x181e56000 - 0x181e92fff libdispatch.dylib arm64e   /usr/lib/system/libdispatch.dylib
0x181e93000 - 0x181eb3fff libsystem_malloc.dylib arm64e  <4aad0fafde283814af10e7123dc72aca> /usr/lib/system/libsystem_malloc.dylib
0x181eb4000 - 0x181ebafff libsystem_platform.dylib arm64e  <0591390bba0734a7a59d0c652d159244> /usr/lib/system/libsystem_platform.dylib
0x181ebb000 - 0x181ec5fff libsystem_pthread.dylib arm64e   /usr/lib/system/libsystem_pthread.dylib
0x181ec6000 - 0x181ef6fff libobjc.A.dylib arm64e   /usr/lib/libobjc.A.dylib
0x181ef7000 - 0x181f62fff libcorecrypto.dylib arm64e   /usr/lib/system/libcorecrypto.dylib
0x181f63000 - 0x181f76fff libc++abi.dylib arm64e   /usr/lib/libc++abi.dylib
0x181f77000 - 0x181fa5fff libsystem_kernel.dylib arm64e   /usr/lib/system/libsystem_kernel.dylib
0x181fa6000 - 0x181fd9fff libdyld.dylib arm64e  <0dc9a4bac3e8348799db1b5c86597af5> /usr/lib/system/libdyld.dylib
0x181fda000 - 0x181fe1fff libsystem_darwin.dylib arm64e   /usr/lib/system/libsystem_darwin.dylib
0x181fe2000 - 0x18203cfff libc++.1.dylib arm64e   /usr/lib/libc++.1.dylib
0x18203d000 - 0x18207efff libsystem_info.dylib arm64e   /usr/lib/system/libsystem_info.dylib
0x18207f000 - 0x1823fcfff CoreFoundation arm64e  <97285acb7b21393aabf603f1dbb5d2a2> /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
0x1823fd000 - 0x182463fff SystemConfiguration arm64e  <3dca61e2168c36d98acf0c3602dfff4d> /System/Library/Frameworks/SystemConfiguration.framework/SystemConfiguration
0x182464000 - 0x18272ffff Foundation arm64e  <672cf0cb49513b9189df55e953aea00f> /System/Library/Frameworks/Foundation.framework/Foundation
0x182730000 - 0x182762fff libCRFSuite.dylib arm64e  <8f291818397432cf9cc7dd75e11f721f> /usr/lib/libCRFSuite.dylib
0x182763000 - 0x1828e3fff CoreServices arm64e   /System/Library/Frameworks/CoreServices.framework/CoreServices
0x1828e4000 - 0x182946fff libSparse.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparse.dylib
0x182947000 - 0x182e41fff ImageIO arm64e   /System/Library/Frameworks/ImageIO.framework/ImageIO
0x182e42000 - 0x182e44fff ConstantClasses arm64e  <1c8835aab27331239abded3207f06916> /System/Library/PrivateFrameworks/ConstantClasses.framework/ConstantClasses
0x182e45000 - 0x182fddfff CoreText arm64e   /System/Library/Frameworks/CoreText.framework/CoreText
0x182fde000 - 0x183111fff Security arm64e  <975adc2ff8ed3e0dba4ba01c1c1f10f1> /System/Library/Frameworks/Security.framework/Security
0x183112000 - 0x1831b7fff IOKit arm64e  <74b273d7cd333f4a96f47e702f1b4428> /System/Library/Frameworks/IOKit.framework/Versions/A/IOKit
0x1831b8000 - 0x1831effff libMobileGestalt.dylib arm64e   /usr/lib/libMobileGestalt.dylib
0x1831f0000 - 0x18324efff libprotobuf.dylib arm64e  <94ce72ce21e03c94b69234fa728738c4> /usr/lib/libprotobuf.dylib
0x18324f000 - 0x183261fff libprotobuf-lite.dylib arm64e  <9d7cc6eb89b43fa39ef21dddc473d549> /usr/lib/libprotobuf-lite.dylib
0x183262000 - 0x1834c2fff libicucore.A.dylib arm64e   /usr/lib/libicucore.A.dylib
0x1834ed000 - 0x183534fff WirelessDiagnostics arm64e  <940df8c52a17312e9088248a1ac77ec4> /System/Library/PrivateFrameworks/WirelessDiagnostics.framework/WirelessDiagnostics
0x183535000 - 0x183570fff libAWDSupport.dylib arm64e   /usr/lib/libAWDSupport.dylib
0x183571000 - 0x1839b9fff CoreAudio arm64e   /System/Library/Frameworks/CoreAudio.framework/CoreAudio
0x1839ba000 - 0x183c91fff CoreImage arm64e   /System/Library/Frameworks/CoreImage.framework/CoreImage
0x183c92000 - 0x183d85fff LanguageModeling arm64e   /System/Library/PrivateFrameworks/LanguageModeling.framework/LanguageModeling
0x183d86000 - 0x183dccfff Lexicon arm64e  <7e605c9d37a63fd1bb3e2431b4b1cf31> /System/Library/PrivateFrameworks/Lexicon.framework/Lexicon
0x183dcd000 - 0x183f53fff libsqlite3.dylib arm64e  <854e207ecbe73f469cb5926001a2f44c> /usr/lib/libsqlite3.dylib
0x183f54000 - 0x183f84fff MobileKeyBag arm64e  <9fa13c6af29a3dcfa93ca614ad26993d> /System/Library/PrivateFrameworks/MobileKeyBag.framework/MobileKeyBag
0x183f85000 - 0x183f8efff libsystem_notify.dylib arm64e  <5375361fa96637b9a0a22e0205daa144> /usr/lib/system/libsystem_notify.dylib
0x183f8f000 - 0x184163fff CoreDuet arm64e  <7cac3a71d35432cb99113d778987444e> /System/Library/PrivateFrameworks/CoreDuet.framework/CoreDuet
0x184164000 - 0x1842aafff Montreal arm64e  <54161f809bac3b1eb6aed6387d7b0e13> /System/Library/PrivateFrameworks/Montreal.framework/Montreal
0x1842ab000 - 0x184390fff NLP arm64e  <57d4cfec4efa3b35a273f6a2ae80591e> /System/Library/PrivateFrameworks/NLP.framework/NLP
0x184391000 - 0x1843affff CellularPlanManager arm64e  <77e3a92c13e23094946b85819a495c92> /System/Library/PrivateFrameworks/CellularPlanManager.framework/CellularPlanManager
0x1843b0000 - 0x1843edfff AppSupport arm64e  <32acaa08e6c338919a25a231cfdc7904> /System/Library/PrivateFrameworks/AppSupport.framework/AppSupport
0x1843ee000 - 0x1848c3fff libnetwork.dylib arm64e   /usr/lib/libnetwork.dylib
0x1848c4000 - 0x1849d3fff ManagedConfiguration arm64e   /System/Library/PrivateFrameworks/ManagedConfiguration.framework/ManagedConfiguration
0x1849d4000 - 0x1849fefff CoreServicesStore arm64e   /System/Library/PrivateFrameworks/CoreServicesStore.framework/CoreServicesStore
0x1849ff000 - 0x184a20fff UserManagement arm64e   /System/Library/PrivateFrameworks/UserManagement.framework/UserManagement
0x184a21000 - 0x184cd6fff CoreML arm64e   /System/Library/Frameworks/CoreML.framework/CoreML
0x184cd7000 - 0x184cedfff ProtocolBuffer arm64e  <25d0db0f98163d56a690dec5c392720f> /System/Library/PrivateFrameworks/ProtocolBuffer.framework/ProtocolBuffer
0x184cee000 - 0x184d08fff CommonUtilities arm64e  <880c2e0f46943769b9775a3cfd7a5ba3> /System/Library/PrivateFrameworks/CommonUtilities.framework/CommonUtilities
0x184d09000 - 0x184d09fff libenergytrace.dylib arm64e   /usr/lib/libenergytrace.dylib
0x184d0a000 - 0x184d42fff RunningBoardServices arm64e  <420e18b822f530ba8221c5687ad7cfe9> /System/Library/PrivateFrameworks/RunningBoardServices.framework/RunningBoardServices
0x184d43000 - 0x184db9fff BaseBoard arm64e   /System/Library/PrivateFrameworks/BaseBoard.framework/BaseBoard
0x184dba000 - 0x185301fff SiriTTS arm64e  <6ba2ed1468683c1e92cec1e36a13a8e2> /System/Library/PrivateFrameworks/SiriTTS.framework/SiriTTS
0x185302000 - 0x185372fff CoreLocation arm64e   /System/Library/Frameworks/CoreLocation.framework/CoreLocation
0x185380000 - 0x1853d6fff Accounts arm64e   /System/Library/Frameworks/Accounts.framework/Accounts
0x1853d7000 - 0x1853e7fff SharedWebCredentials arm64e   /System/Library/PrivateFrameworks/SharedWebCredentials.framework/SharedWebCredentials
0x1853e8000 - 0x185733fff CFNetwork arm64e  <32dfbf260bc43fb89aeb35182c8b35fa> /System/Library/Frameworks/CFNetwork.framework/CFNetwork
0x185734000 - 0x185816fff UIFoundation arm64e   /System/Library/PrivateFrameworks/UIFoundation.framework/UIFoundation
0x185817000 - 0x186916fff UIKitCore arm64e  <55d60569dbb73bc98a97dcac95c64d4b> /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
0x186917000 - 0x186925fff AssertionServices arm64e   /System/Library/PrivateFrameworks/AssertionServices.framework/AssertionServices
0x186926000 - 0x1869fdfff CoreTelephony arm64e   /System/Library/Frameworks/CoreTelephony.framework/CoreTelephony
0x1869fe000 - 0x186a03fff AggregateDictionary arm64e  <7bfbeed0934d3cad8026c500c4cb9173> /System/Library/PrivateFrameworks/AggregateDictionary.framework/AggregateDictionary
0x186a04000 - 0x186a1afff libsystem_asl.dylib arm64e   /usr/lib/system/libsystem_asl.dylib
0x186a1b000 - 0x186a95fff CloudDocs arm64e  <09d573a82e9f386daabb22a65ef0b77a> /System/Library/PrivateFrameworks/CloudDocs.framework/CloudDocs
0x186a96000 - 0x186dc3fff CoreData arm64e  <66a9b561b6e733cb85e66e436fd8a348> /System/Library/Frameworks/CoreData.framework/CoreData
0x186dc4000 - 0x186ff0fff Vision arm64e  <84dd2e1d9c003e629f0a6d1117301f85> /System/Library/Frameworks/Vision.framework/Vision
0x186ff1000 - 0x187036fff PhotoFoundation arm64e  <9fdff28a73bf3c3a9ea2114e1d28538d> /System/Library/PrivateFrameworks/PhotoFoundation.framework/PhotoFoundation
0x187037000 - 0x187062fff BoardServices arm64e  <09dd53b0b100312987ca528acbee68d7> /System/Library/PrivateFrameworks/BoardServices.framework/BoardServices
0x187114000 - 0x187122fff libsystem_networkextension.dylib arm64e   /usr/lib/system/libsystem_networkextension.dylib
0x187123000 - 0x187143fff CoreAnalytics arm64e   /System/Library/PrivateFrameworks/CoreAnalytics.framework/CoreAnalytics
0x187144000 - 0x1872bdfff CloudKit arm64e  <667e79d9af13349d82a41fc755c5b11e> /System/Library/Frameworks/CloudKit.framework/CloudKit
0x1872be000 - 0x18730dfff SpringBoardServices arm64e  <44c86adef590305ab8c8dba50c5420b4> /System/Library/PrivateFrameworks/SpringBoardServices.framework/SpringBoardServices
0x18730e000 - 0x187385fff FrontBoardServices arm64e  <124b166d39053f51a46a646ae3424213> /System/Library/PrivateFrameworks/FrontBoardServices.framework/FrontBoardServices
0x187386000 - 0x18749efff Network arm64e  <941ed8db788b37bfb15509b8b0fc310a> /System/Library/Frameworks/Network.framework/Network
0x1874fc000 - 0x187503fff libsystem_symptoms.dylib arm64e  <93716677a360386b97d6493788ec1bc7> /usr/lib/system/libsystem_symptoms.dylib
0x187504000 - 0x1883e1fff GeoServices arm64e   /System/Library/PrivateFrameworks/GeoServices.framework/GeoServices
0x1883e2000 - 0x1883eafff TCC arm64e  <917f36636e14374cb4659fe0e4f09ea8> /System/Library/PrivateFrameworks/TCC.framework/TCC
0x1883eb000 - 0x188446fff IMFoundation arm64e  <1e66d8a98893359b8320f34a171f538d> /System/Library/PrivateFrameworks/IMFoundation.framework/IMFoundation
0x188447000 - 0x1885acfff CoreUtils arm64e   /System/Library/PrivateFrameworks/CoreUtils.framework/CoreUtils
0x1885ad000 - 0x188657fff IMSharedUtilities arm64e   /System/Library/PrivateFrameworks/IMSharedUtilities.framework/IMSharedUtilities
0x188658000 - 0x1886a6fff ImageCaptureCore arm64e  <5032c500bb9b3bb8a2298beddc9ccb60> /System/Library/Frameworks/ImageCaptureCore.framework/ImageCaptureCore
0x1886a7000 - 0x1886b0fff libsystem_containermanager.dylib arm64e  <09db2936a8d334ffa634596093545f0d> /usr/lib/system/libsystem_containermanager.dylib
0x1886b1000 - 0x18872efff AppleAccount arm64e  <1da968ef2dd73a26b6a11569abe8900f> /System/Library/PrivateFrameworks/AppleAccount.framework/AppleAccount
0x18872f000 - 0x18874afff ApplePushService arm64e   /System/Library/PrivateFrameworks/ApplePushService.framework/ApplePushService
0x18874b000 - 0x18883bfff IDS arm64e  <3f6b6175001c3983958aed33ead82d0b> /System/Library/PrivateFrameworks/IDS.framework/IDS
0x18883c000 - 0x18896bfff IDSFoundation arm64e   /System/Library/PrivateFrameworks/IDSFoundation.framework/IDSFoundation
0x18896c000 - 0x18896dfff libCTGreenTeaLogger.dylib arm64e   /usr/lib/libCTGreenTeaLogger.dylib
0x1889d1000 - 0x188ad2fff CoreMedia arm64e   /System/Library/Frameworks/CoreMedia.framework/CoreMedia
0x188ad3000 - 0x188ae3fff UIKitServices arm64e   /System/Library/PrivateFrameworks/UIKitServices.framework/UIKitServices
0x188ae4000 - 0x188b38fff BackBoardServices arm64e  <5b4b7dc5abee30ce92ad6dcb02d9a26a> /System/Library/PrivateFrameworks/BackBoardServices.framework/BackBoardServices
0x188b39000 - 0x188d8ffff QuartzCore arm64e  <68e87e8e72753847b0e57936442b19fc> /System/Library/Frameworks/QuartzCore.framework/QuartzCore
0x188d90000 - 0x188f4dfff ColorSync arm64e  <49b450513c43328d84f78fe799d9584b> /System/Library/PrivateFrameworks/ColorSync.framework/ColorSync
0x188f4e000 - 0x1894c1fff CoreGraphics arm64e   /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
0x1894c2000 - 0x1895fdfff Contacts arm64e  <756942596c2d34a1828be0a506c23f35> /System/Library/Frameworks/Contacts.framework/Contacts
0x1895fe000 - 0x18962efff UserNotifications arm64e   /System/Library/Frameworks/UserNotifications.framework/UserNotifications
0x18962f000 - 0x189652fff LocationSupport arm64e  <57abf27237773d1dbf2ca0b421406418> /System/Library/PrivateFrameworks/LocationSupport.framework/LocationSupport
0x189653000 - 0x1897b3fff Sharing arm64e   /System/Library/PrivateFrameworks/Sharing.framework/Sharing
0x1897b4000 - 0x189db9fff WebKit arm64e   /System/Library/Frameworks/WebKit.framework/WebKit
0x189dba000 - 0x18bac3fff WebCore arm64e   /System/Library/PrivateFrameworks/WebCore.framework/WebCore
0x18bac4000 - 0x18badcfff libAccessibility.dylib arm64e   /usr/lib/libAccessibility.dylib
0x18badd000 - 0x18bae8fff AXCoreUtilities arm64e   /System/Library/PrivateFrameworks/AXCoreUtilities.framework/AXCoreUtilities
0x18bae9000 - 0x18bb62fff ContactsFoundation arm64e   /System/Library/PrivateFrameworks/ContactsFoundation.framework/ContactsFoundation
0x18bb63000 - 0x18bb77fff PowerLog arm64e   /System/Library/PrivateFrameworks/PowerLog.framework/PowerLog
0x18bb78000 - 0x18bb89fff IOSurface arm64e  <9ebb87f8232d3ceb81bbb317926db148> /System/Library/Frameworks/IOSurface.framework/IOSurface
0x18bb8a000 - 0x18c28dfff MediaToolbox arm64e  <469251e5c7973035a25c9d80f905bb94> /System/Library/Frameworks/MediaToolbox.framework/MediaToolbox
0x18c28e000 - 0x18c296fff GraphicsServices arm64e  <762205923bb4354a947f8d3c1682cd5f> /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
0x18c297000 - 0x18c37dfff AccessibilityUtilities arm64e  <65a09870cc5939199697e648f0e7b705> /System/Library/PrivateFrameworks/AccessibilityUtilities.framework/AccessibilityUtilities
0x18c37e000 - 0x18c579fff AVFoundation arm64e  <3f38b86cc2c23972ac9e6d18d71c4926> /System/Library/Frameworks/AVFoundation.framework/AVFoundation
0x18c57a000 - 0x18c5b1fff OnBoardingKit arm64e  <51bcdf0941d037338d36d8603e7d816e> /System/Library/PrivateFrameworks/OnBoardingKit.framework/OnBoardingKit
0x18c5b2000 - 0x18c600fff MobileWiFi arm64e  <62323a0ad7723b8390cb3a53b3bdc36b> /System/Library/PrivateFrameworks/MobileWiFi.framework/MobileWiFi
0x18c601000 - 0x18c619fff MobileAsset arm64e  <935b5b2f446436cd9d95606354216819> /System/Library/PrivateFrameworks/MobileAsset.framework/MobileAsset
0x18c61a000 - 0x18c627fff libGSFont.dylib arm64e  <9ac0608f9d633bb096d953f69350a33d> /System/Library/PrivateFrameworks/FontServices.framework/libGSFont.dylib
0x18c628000 - 0x18c631fff FontServices arm64e  <2602fad7a7ab3d3eb4148892543f14d5> /System/Library/PrivateFrameworks/FontServices.framework/FontServices
0x18c632000 - 0x18c780fff libFontParser.dylib arm64e  <5466f8e6057038f2bb98222c3eb439c7> /System/Library/PrivateFrameworks/FontServices.framework/libFontParser.dylib
0x18c781000 - 0x18c7ccfff AXRuntime arm64e  <200d75736aa630a49b99f01dfca75f4a> /System/Library/PrivateFrameworks/AXRuntime.framework/AXRuntime
0x18c7cd000 - 0x18c7cffff libAXSafeCategoryBundle.dylib arm64e  <49893a519a7b365a8f18c8efde5409cd> /usr/lib/libAXSafeCategoryBundle.dylib
0x18c7d0000 - 0x18c912fff SearchFoundation arm64e  <9d493eef58d73a96be3f9d7a1cbf4967> /System/Library/PrivateFrameworks/SearchFoundation.framework/SearchFoundation
0x18c913000 - 0x18ca37fff Preferences arm64e  <07276a7416ee3c4f8835bbacffee4c16> /System/Library/PrivateFrameworks/Preferences.framework/Preferences
0x18ca38000 - 0x18d0b2fff PhotoLibraryServices arm64e  <91c02d9c1deb32b9897164279f6aafad> /System/Library/PrivateFrameworks/PhotoLibraryServices.framework/PhotoLibraryServices
0x18d0b3000 - 0x18d340fff vImage arm64e  <23c5969efbc53cba95071dc7faa4e938> /System/Library/Frameworks/Accelerate.framework/Frameworks/vImage.framework/vImage
0x18d341000 - 0x18d56dfff AudioToolbox arm64e   /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
0x18d56e000 - 0x18d5a3fff libAudioToolboxUtility.dylib arm64e  <379be4b3915c3bc18e95fd62ee6916db> /usr/lib/libAudioToolboxUtility.dylib
0x18d5a4000 - 0x18d75bfff ContactsUI arm64e  <6bdb40ae383434918dd2e83e916a56ec> /System/Library/Frameworks/ContactsUI.framework/ContactsUI
0x18d75c000 - 0x18d7c8fff UIAccessibility arm64e  <355f17fdc5d036d6a4cf55c3880c7ff5> /System/Library/PrivateFrameworks/UIAccessibility.framework/UIAccessibility
0x18d7c9000 - 0x18d9d5fff Photos arm64e  <1192e2c1466336689267b4b9e67d84e6> /System/Library/Frameworks/Photos.framework/Photos
0x18d9d6000 - 0x18da6bfff ShareSheet arm64e   /System/Library/PrivateFrameworks/ShareSheet.framework/ShareSheet
0x18da6c000 - 0x18da7ffff BaseBoardUI arm64e   /System/Library/PrivateFrameworks/BaseBoardUI.framework/BaseBoardUI
0x18da80000 - 0x18db36fff PDFKit arm64e  <86ba46b9c90b38e2ae95fbe9dc1e0c4b> /System/Library/Frameworks/PDFKit.framework/PDFKit
0x18dbb8000 - 0x18dbe6fff DocumentManager arm64e  <03ea7f6d443b3c1aa621ff290d3bcb7e> /System/Library/PrivateFrameworks/DocumentManager.framework/DocumentManager
0x18dbe7000 - 0x18de47fff libmecabra.dylib arm64e   /usr/lib/libmecabra.dylib
0x18de48000 - 0x18debffff AuthKit arm64e  <090914b11d78388083eaf714ead56050> /System/Library/PrivateFrameworks/AuthKit.framework/AuthKit
0x18dec0000 - 0x18e2e7fff Intents arm64e  <686b616c210e336589c278e8514f3e3b> /System/Library/Frameworks/Intents.framework/Intents
0x18e2fd000 - 0x18e44cfff WebKitLegacy arm64e  <3526c37744d23540809529793b145515> /System/Library/PrivateFrameworks/WebKitLegacy.framework/WebKitLegacy
0x18e44d000 - 0x18e4b8fff TextInput arm64e   /System/Library/PrivateFrameworks/TextInput.framework/TextInput
0x18e4b9000 - 0x18e537fff AXMediaUtilities arm64e  <1bfd515ddf64344f8380405bc5d7e3d3> /System/Library/PrivateFrameworks/AXMediaUtilities.framework/AXMediaUtilities
0x18e538000 - 0x18e53bfff XCTTargetBootstrap arm64e  <9c6a5db621c63ac280255bca37ff49ea> /System/Library/PrivateFrameworks/XCTTargetBootstrap.framework/XCTTargetBootstrap
0x18e53c000 - 0x18e5f2fff CorePDF arm64e   /System/Library/PrivateFrameworks/CorePDF.framework/CorePDF
0x18e5f3000 - 0x18e62efff AccessibilityUIUtilities arm64e  <930d3cea341936bfaeac9e16d80658d6> /System/Library/PrivateFrameworks/Accessibility.framework/Frameworks/AccessibilityUIUtilities.framework/AccessibilityUIUtilities
0x18e62f000 - 0x18e9ecfff MediaPlayer arm64e  <134daba2c3483ccf902648acd43bb482> /System/Library/Frameworks/MediaPlayer.framework/MediaPlayer
0x18e9ed000 - 0x18ecfdfff AppleMediaServices arm64e  <3efdf44040ec317a834abbd1ba81088a> /System/Library/PrivateFrameworks/AppleMediaServices.framework/AppleMediaServices
0x18ecfe000 - 0x18ed25fff CacheDelete arm64e  <57ee9e41f919379ebf70cdd6ca04f73c> /System/Library/PrivateFrameworks/CacheDelete.framework/CacheDelete
0x18ed26000 - 0x18eeeafff CoreMotion arm64e  <69d41764d0ed3b0893ba853ce6ee1828> /System/Library/Frameworks/CoreMotion.framework/CoreMotion
0x18eeeb000 - 0x18efd7fff AVFAudio arm64e   /System/Library/Frameworks/AVFoundation.framework/Frameworks/AVFAudio.framework/AVFAudio
0x18f1d5000 - 0x18f28efff CoreUI arm64e  <1308ae16e705312ca9662797bc2197b5> /System/Library/PrivateFrameworks/CoreUI.framework/CoreUI
0x18f28f000 - 0x18f2b3fff AppSupportUI arm64e  <5559927294e43ceab2cf338fa77bb364> /System/Library/PrivateFrameworks/AppSupportUI.framework/AppSupportUI
0x18f2b4000 - 0x18f2eafff CoreVideo arm64e  <0a926baaf4523997a6f4caa26bdabea9> /System/Library/Frameworks/CoreVideo.framework/CoreVideo
0x18f2eb000 - 0x18f525fff AudioToolboxCore arm64e   /System/Library/PrivateFrameworks/AudioToolboxCore.framework/AudioToolboxCore
0x18f526000 - 0x18f56cfff CoreDuetContext arm64e   /System/Library/PrivateFrameworks/CoreDuetContext.framework/CoreDuetContext
0x18f56d000 - 0x18f5a7fff SetupAssistant arm64e   /System/Library/PrivateFrameworks/SetupAssistant.framework/SetupAssistant
0x18f5a8000 - 0x18f666fff TelephonyUtilities arm64e  <384b5bafe8703c3d873486f1310f8e3a> /System/Library/PrivateFrameworks/TelephonyUtilities.framework/TelephonyUtilities
0x18f667000 - 0x18f691fff PlugInKit arm64e  <55a924c2787a34c28d1f39b5ef052bf2> /System/Library/PrivateFrameworks/PlugInKit.framework/PlugInKit
0x18fa1f000 - 0x18fb57fff AssistantServices arm64e   /System/Library/PrivateFrameworks/AssistantServices.framework/AssistantServices
0x18fb58000 - 0x18fbb9fff ProactiveSupport arm64e   /System/Library/PrivateFrameworks/ProactiveSupport.framework/ProactiveSupport
0x18fbba000 - 0x18fe01fff MapKit arm64e  <1fc802e79e9330dba1517fd020a0876d> /System/Library/Frameworks/MapKit.framework/MapKit
0x18fe02000 - 0x18fe1afff PrototypeTools arm64e  <212a2cde1a5d350c8ce03106d91e8a1c> /System/Library/PrivateFrameworks/PrototypeTools.framework/PrototypeTools
0x18fe1b000 - 0x18ff0bfff MediaExperience arm64e   /System/Library/PrivateFrameworks/MediaExperience.framework/MediaExperience
0x18ff0c000 - 0x1901c7fff Celestial arm64e   /System/Library/PrivateFrameworks/Celestial.framework/Celestial
0x1901c8000 - 0x190222fff CallKit arm64e  <21bfbb540c8e33d69d60afe419a39a74> /System/Library/Frameworks/CallKit.framework/CallKit
0x1903ee000 - 0x190adffff VectorKit arm64e  <31025f51084d3ec3b6332b0718f29d79> /System/Library/PrivateFrameworks/VectorKit.framework/VectorKit
0x190ae0000 - 0x190bb3fff AVKit arm64e  <9561f6349f9933469f2e160dd8f5e657> /System/Library/Frameworks/AVKit.framework/AVKit
0x190bb4000 - 0x190be4fff Pegasus arm64e  <5aa2be18a31b32a3a67691d2704aba10> /System/Library/PrivateFrameworks/Pegasus.framework/Pegasus
0x190be5000 - 0x190beafff libapp_launch_measurement.dylib arm64e   /usr/lib/libapp_launch_measurement.dylib
0x190cc8000 - 0x190d2bfff CoreSpotlight arm64e  <8a7c5ab6175b32efb6292152fcf215f0> /System/Library/Frameworks/CoreSpotlight.framework/CoreSpotlight
0x190d2c000 - 0x190dc1fff AddressBookLegacy arm64e  <76c629f0ef503aa9a5660dc0c7e70554> /System/Library/PrivateFrameworks/AddressBookLegacy.framework/AddressBookLegacy
0x190dc2000 - 0x190dd1fff CrashReporterSupport arm64e   /System/Library/PrivateFrameworks/CrashReporterSupport.framework/CrashReporterSupport
0x190dd2000 - 0x190de4fff MobileBluetooth arm64e   /System/Library/PrivateFrameworks/MobileBluetooth.framework/MobileBluetooth
0x190de5000 - 0x190ea3fff LinkPresentation arm64e   /System/Library/Frameworks/LinkPresentation.framework/LinkPresentation
0x190ea4000 - 0x190ed9fff StoreKit arm64e   /System/Library/Frameworks/StoreKit.framework/StoreKit
0x190eda000 - 0x190edefff libsystem_configuration.dylib arm64e  <834289b5a67f34d1aab1f341ca817c23> /usr/lib/system/libsystem_configuration.dylib
0x190edf000 - 0x190f38fff RemoteUI arm64e  <3963e39e62423392b89b41a2c6e8d190> /System/Library/PrivateFrameworks/RemoteUI.framework/RemoteUI
0x190f39000 - 0x190f89fff AuthKitUI arm64e   /System/Library/PrivateFrameworks/AuthKitUI.framework/AuthKitUI
0x190f8a000 - 0x190feffff CoreRecognition arm64e   /System/Library/PrivateFrameworks/CoreRecognition.framework/CoreRecognition
0x190ff0000 - 0x191076fff Social arm64e  <361e489b655634e4a6c1a4e36b2e8f0d> /System/Library/Frameworks/Social.framework/Social
0x1910c7000 - 0x1910d5fff HangTracer arm64e  <9d3a32b50fd63a299bb861a5ca57790c> /System/Library/PrivateFrameworks/HangTracer.framework/HangTracer
0x1910d6000 - 0x19113efff CoreNLP arm64e  <4cd34810c6513eb197c070c40d83013f> /System/Library/PrivateFrameworks/CoreNLP.framework/CoreNLP
0x19113f000 - 0x191140fff liblangid.dylib arm64e  <344868eff5f033e6856968bb1818250d> /usr/lib/liblangid.dylib
0x191141000 - 0x191f39fff JavaScriptCore arm64e  <5c35e53043713551b0955f5c3a5d00b8> /System/Library/Frameworks/JavaScriptCore.framework/JavaScriptCore
0x191f3a000 - 0x191fc6fff libTelephonyUtilDynamic.dylib arm64e  <83581f4af84934ce9d0d4df8713443e8> /usr/lib/libTelephonyUtilDynamic.dylib
0x191fdc000 - 0x192263fff StoreServices arm64e  <7cb5480bb4cd305eac82ae86ada03d4e> /System/Library/PrivateFrameworks/StoreServices.framework/StoreServices
0x192264000 - 0x19226dfff IOMobileFramebuffer arm64e  <0a2350f50d863219a104edb22f154164> /System/Library/PrivateFrameworks/IOMobileFramebuffer.framework/IOMobileFramebuffer
0x19226e000 - 0x1923d5fff SafariServices arm64e  <9a3aeda6f832316cb9636858de7ba19f> /System/Library/Frameworks/SafariServices.framework/SafariServices
0x1923d6000 - 0x1925b2fff Message arm64e  <2ef8851a79b73a85a0a648e2806475b1> /System/Library/PrivateFrameworks/Message.framework/Message
0x1925ca000 - 0x1925e4fff CoreMaterial arm64e  <6230b5ee758e369caa919ebc6fbb3e42> /System/Library/PrivateFrameworks/CoreMaterial.framework/CoreMaterial
0x1925e5000 - 0x1926cffff libxml2.2.dylib arm64e  <5845f30c219f3697b344a5f59bb539fe> /usr/lib/libxml2.2.dylib
0x193d97000 - 0x193de0fff MetadataUtilities arm64e   /System/Library/PrivateFrameworks/MetadataUtilities.framework/MetadataUtilities
0x193de1000 - 0x193e3bfff UserActivity arm64e  <6024cc1a91283ee096785edc4219007a> /System/Library/PrivateFrameworks/UserActivity.framework/UserActivity
0x1947ab000 - 0x1949d0fff NetworkExtension arm64e  <3779e9f08b083f58924728125eda16be> /System/Library/Frameworks/NetworkExtension.framework/NetworkExtension
0x1949d1000 - 0x194a07fff DataDetectorsCore arm64e  <8d1286a57727341d825c6edf1b4b998f> /System/Library/PrivateFrameworks/DataDetectorsCore.framework/DataDetectorsCore
0x194a08000 - 0x194a6afff CalendarFoundation arm64e  <7c05d84b84b43614ba32328d63b31512> /System/Library/PrivateFrameworks/CalendarFoundation.framework/CalendarFoundation
0x194a6b000 - 0x194b64fff EventKit arm64e   /System/Library/Frameworks/EventKit.framework/EventKit
0x194b65000 - 0x194b9afff MediaServices arm64e  <92b16719a5b93941880b3c6a0d339bed> /System/Library/PrivateFrameworks/MediaServices.framework/MediaServices
0x194cac000 - 0x194e56fff PencilKit arm64e  <23f76961f88b31448ac007a40265b78a> /System/Library/Frameworks/PencilKit.framework/PencilKit
0x194e57000 - 0x194fadfff MessageUI arm64e  <6b2e7f6c5a6a3c068fb43362181b3686> /System/Library/Frameworks/MessageUI.framework/MessageUI
0x194ffc000 - 0x19503dfff BiometricKit arm64e  <8c98a7039d1139989bbb5399513a2176> /System/Library/PrivateFrameworks/BiometricKit.framework/BiometricKit
0x19503e000 - 0x19506afff PersistentConnection arm64e   /System/Library/PrivateFrameworks/PersistentConnection.framework/PersistentConnection
0x19506b000 - 0x1950befff CalendarDaemon arm64e  <45521ef9bea93382a0884b0f594a999e> /System/Library/PrivateFrameworks/CalendarDaemon.framework/CalendarDaemon
0x1950bf000 - 0x195158fff CalendarDatabase arm64e   /System/Library/PrivateFrameworks/CalendarDatabase.framework/CalendarDatabase
0x195159000 - 0x19533dfff MediaRemote arm64e   /System/Library/PrivateFrameworks/MediaRemote.framework/MediaRemote
0x19533e000 - 0x195346fff CorePhoneNumbers arm64e   /System/Library/PrivateFrameworks/CorePhoneNumbers.framework/CorePhoneNumbers
0x195357000 - 0x19537dfff DuetActivityScheduler arm64e   /System/Library/PrivateFrameworks/DuetActivityScheduler.framework/DuetActivityScheduler
0x195441000 - 0x195482fff ContactsAutocompleteUI arm64e  <9c7a49a58e233448b769300c10a79c0e> /System/Library/PrivateFrameworks/ContactsAutocompleteUI.framework/ContactsAutocompleteUI
0x195483000 - 0x1954a6fff CoreSVG arm64e   /System/Library/PrivateFrameworks/CoreSVG.framework/CoreSVG
0x1954c5000 - 0x1954e2fff ProactiveEventTracker arm64e   /System/Library/PrivateFrameworks/ProactiveEventTracker.framework/ProactiveEventTracker
0x1954e3000 - 0x1954edfff MallocStackLogging arm64e   /System/Library/PrivateFrameworks/MallocStackLogging.framework/MallocStackLogging
0x1954ee000 - 0x195586fff CoreSuggestions arm64e  <6cf5ec42aab0305e8fe7ba22bf0bbe3f> /System/Library/PrivateFrameworks/CoreSuggestions.framework/CoreSuggestions
0x195587000 - 0x195738fff IMCore arm64e  <16a4f935d7203b4db86e63a06e6fc6dc> /System/Library/PrivateFrameworks/IMCore.framework/IMCore
0x195739000 - 0x19578afff DeviceManagement arm64e  <773d278fcb4a3c6e8356aa7e31e8a16b> /System/Library/PrivateFrameworks/DeviceManagement.framework/DeviceManagement
0x195f94000 - 0x195fa0fff BluetoothManager arm64e  <60f0af538e453460a41a992ade811952> /System/Library/PrivateFrameworks/BluetoothManager.framework/BluetoothManager
0x195fa1000 - 0x195fd6fff CoreBluetooth arm64e  <46ee878b3c7a3d8bb8a9c70c47c0475d> /System/Library/Frameworks/CoreBluetooth.framework/CoreBluetooth
0x195fd7000 - 0x195fd9fff libsystem_sandbox.dylib arm64e  <467a2efb2e4f3c26b721563089869695> /usr/lib/system/libsystem_sandbox.dylib
0x196104000 - 0x196110fff ContextKit arm64e  <38f80b5f25be34a68557a1b941c0e427> /System/Library/PrivateFrameworks/ContextKit.framework/ContextKit
0x196141000 - 0x1961abfff Rapport arm64e   /System/Library/PrivateFrameworks/Rapport.framework/Rapport
0x1961ac000 - 0x1961d8fff OSAnalytics arm64e  <9939f18f483c365e912a4d970c54cf61> /System/Library/PrivateFrameworks/OSAnalytics.framework/OSAnalytics
0x1961d9000 - 0x196207fff MobileInstallation arm64e  <5e08658c0df43a2997b7cd91e8bf0259> /System/Library/PrivateFrameworks/MobileInstallation.framework/MobileInstallation
0x196208000 - 0x1962a6fff Metal arm64e  <9c859f4029b73378b008fb573ea44dfa> /System/Library/Frameworks/Metal.framework/Metal
0x1962a7000 - 0x1962acfff IOAccelerator arm64e   /System/Library/PrivateFrameworks/IOAccelerator.framework/IOAccelerator
0x1962ad000 - 0x1962b8fff MediaAccessibility arm64e   /System/Library/Frameworks/MediaAccessibility.framework/MediaAccessibility
0x1962da000 - 0x1962e1fff libsystem_dnssd.dylib arm64e   /usr/lib/system/libsystem_dnssd.dylib
0x1962e2000 - 0x1962e8fff PushKit arm64e  <2bb95f922cc0377bb6126a4215a1d2e3> /System/Library/Frameworks/PushKit.framework/PushKit
0x1962e9000 - 0x1963f7fff FileProvider arm64e  <429dd66df0cb3862b71ca152d32ad5c3> /System/Library/Frameworks/FileProvider.framework/FileProvider
0x19640a000 - 0x19640bfff BackgroundTaskAgent arm64e  <2674c3df97923075b00e2e2fcab84c01> /System/Library/PrivateFrameworks/BackgroundTaskAgent.framework/BackgroundTaskAgent
0x19640c000 - 0x196410fff LinguisticData arm64e  <2bfaa83c53d638a1bf23b9e3af64ddbc> /System/Library/PrivateFrameworks/LinguisticData.framework/LinguisticData
0x196411000 - 0x196429fff CoreSDB arm64e   /System/Library/PrivateFrameworks/CoreSDB.framework/CoreSDB
0x19642a000 - 0x19643afff Categories arm64e  <54569c0088293df18892dfbcb07eb650> /System/Library/PrivateFrameworks/Categories.framework/Categories
0x19643b000 - 0x196455fff DoNotDisturb arm64e  <360bcf63df203332b30eaef88d842a54> /System/Library/PrivateFrameworks/DoNotDisturb.framework/DoNotDisturb
0x196456000 - 0x196511fff VideoToolbox arm64e  <923c76f6e23433fb933f59ca84c5ddcf> /System/Library/Frameworks/VideoToolbox.framework/VideoToolbox
0x19695c000 - 0x19695dfff MessageSupport arm64e  <7fec9b70985d3e33ab2b7ad960b8ce6b> /System/Library/PrivateFrameworks/MessageSupport.framework/MessageSupport
0x19695e000 - 0x1969bbfff PersonalizationPortrait arm64e  <8fdd6ca53441360ead0636ea65816d86> /System/Library/PrivateFrameworks/PersonalizationPortrait.framework/PersonalizationPortrait
0x1969bc000 - 0x196a2dfff AppStoreDaemon arm64e   /System/Library/PrivateFrameworks/AppStoreDaemon.framework/AppStoreDaemon
0x196a88000 - 0x196a90fff SymptomDiagnosticReporter arm64e   /System/Library/PrivateFrameworks/SymptomDiagnosticReporter.framework/SymptomDiagnosticReporter
0x196a91000 - 0x196a93fff IOSurfaceAccelerator arm64e  <8fc590a48393309ea0218f94c4c46b4c> /System/Library/PrivateFrameworks/IOSurfaceAccelerator.framework/IOSurfaceAccelerator
0x196a94000 - 0x196b44fff AssetsLibraryServices arm64e  <13f23866fd2d3f868a4f2628ce2b917d> /System/Library/PrivateFrameworks/AssetsLibraryServices.framework/AssetsLibraryServices
0x196b45000 - 0x196b74fff DataAccessExpress arm64e  <5245005200f63a7d9a54d4467f3a548c> /System/Library/PrivateFrameworks/DataAccessExpress.framework/DataAccessExpress
0x196b75000 - 0x196be5fff EmailFoundation arm64e  <29514ad9eaa737a0bbfa378d65badb4a> /System/Library/PrivateFrameworks/EmailFoundation.framework/EmailFoundation
0x196be6000 - 0x196bfbfff CoreFollowUp arm64e   /System/Library/PrivateFrameworks/CoreFollowUp.framework/CoreFollowUp
0x196bfc000 - 0x196c04fff FamilyCircle arm64e  <36c223c5a0ea3559968c572ebb34616f> /System/Library/PrivateFrameworks/FamilyCircle.framework/FamilyCircle
0x196c05000 - 0x196c1bfff libcoretls.dylib arm64e  <8e358428a0eb395085121d746ef02139> /usr/lib/libcoretls.dylib
0x196c73000 - 0x196d06fff libate.dylib arm64e  <9e2bf4f77825325f97c0741da5d57be7> /usr/lib/libate.dylib
0x197d5c000 - 0x197dabfff FTServices arm64e  <4477516436883739a4112101351c86b2> /System/Library/PrivateFrameworks/FTServices.framework/FTServices
0x197e50000 - 0x197e61fff MaterialKit arm64e  <98470cd9c3f03ca4b3c45373d3b492c8> /System/Library/PrivateFrameworks/MaterialKit.framework/MaterialKit
0x197e62000 - 0x197e9bfff SAObjects arm64e   /System/Library/PrivateFrameworks/SAObjects.framework/SAObjects
0x197e9c000 - 0x197ea6fff CoreRecents arm64e   /System/Library/PrivateFrameworks/CoreRecents.framework/CoreRecents
0x197ea7000 - 0x197eeefff MIME arm64e   /System/Library/PrivateFrameworks/MIME.framework/MIME
0x197f53000 - 0x197f60fff DataMigration arm64e  <9df84a1014cd3d2aa5288203981fd346> /System/Library/PrivateFrameworks/DataMigration.framework/DataMigration
0x19806b000 - 0x1980c7fff EmailCore arm64e   /System/Library/PrivateFrameworks/EmailCore.framework/EmailCore
0x19811c000 - 0x198141fff IconServices arm64e  <47f8c81ce2103b34b41de435142ee060> /System/Library/PrivateFrameworks/IconServices.framework/IconServices
0x198142000 - 0x198336fff iTunesCloud arm64e  <92e45d8b00f134bfac4471e9826ce218> /System/Library/PrivateFrameworks/iTunesCloud.framework/iTunesCloud
0x198337000 - 0x1985a4fff MusicLibrary arm64e  <33d6dbd5ad6a38058aa75a02569854be> /System/Library/PrivateFrameworks/MusicLibrary.framework/MusicLibrary
0x1985a5000 - 0x1985a6fff WatchdogClient arm64e  <1442bd13d71d3f9cad36867f3616e95a> /System/Library/PrivateFrameworks/WatchdogClient.framework/WatchdogClient
0x1985a7000 - 0x1985b8fff libprequelite.dylib arm64e   /usr/lib/libprequelite.dylib
0x1985d8000 - 0x1985ddfff IDSKVStore arm64e  <876eb9b541fd359cb3874b47284c5395> /System/Library/PrivateFrameworks/IDSKVStore.framework/IDSKVStore
0x1985de000 - 0x1985eefff CoreEmoji arm64e  <9be70ba67ebb308fb175edf2650940a7> /System/Library/PrivateFrameworks/CoreEmoji.framework/CoreEmoji
0x1985ef000 - 0x198683fff Email arm64e  <685bdd308b4f36e2abf2a2cf519ebccc> /System/Library/PrivateFrameworks/Email.framework/Email
0x198684000 - 0x1986d4fff ClassKit arm64e  <6c973a1b48b23910ab2a051764506cd3> /System/Library/Frameworks/ClassKit.framework/ClassKit
0x198742000 - 0x19874cfff CPMS arm64e  <6318ff48c5dd3319bc33f5dc69bc48a5> /System/Library/PrivateFrameworks/CPMS.framework/CPMS
0x19874d000 - 0x198755fff RTCReporting arm64e   /System/Library/PrivateFrameworks/RTCReporting.framework/RTCReporting
0x1988b7000 - 0x198904fff MobileBackup arm64e  <97c1ac8728603aaf8642f4467e62afc0> /System/Library/PrivateFrameworks/MobileBackup.framework/MobileBackup
0x1989b8000 - 0x1989bffff CoreTime arm64e  <5cadc26812c430b1b1f4044d89bb1797> /System/Library/PrivateFrameworks/CoreTime.framework/CoreTime
0x1989f6000 - 0x198b33fff IMDPersistence arm64e   /System/Library/PrivateFrameworks/IMDPersistence.framework/IMDPersistence
0x198bd9000 - 0x198c28fff DataAccess arm64e   /System/Library/PrivateFrameworks/DataAccess.framework/DataAccess
0x198f6b000 - 0x198fc0fff ToneLibrary arm64e  <3b90c3d36a603676b2afefbe8d4469a4> /System/Library/PrivateFrameworks/ToneLibrary.framework/ToneLibrary
0x19929c000 - 0x1992bbfff AppConduit arm64e  <11b2b86dfd973a5787cccd5411826136> /System/Library/PrivateFrameworks/AppConduit.framework/AppConduit
0x1992bc000 - 0x1992d5fff IntlPreferences arm64e  <1dc2a8927af734bcacf04bfad1c3bcde> /System/Library/PrivateFrameworks/IntlPreferences.framework/IntlPreferences
0x19964c000 - 0x199721fff CoreBrightness arm64e   /System/Library/PrivateFrameworks/CoreBrightness.framework/CoreBrightness
0x199722000 - 0x199729fff libIOReport.dylib arm64e  <118ed37de8fc3409ad361c2048436658> /usr/lib/libIOReport.dylib
0x1998c3000 - 0x199a91fff libBNNS.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBNNS.dylib
0x199a92000 - 0x199a98fff StudyLog arm64e  <9900b355dd993487a5571479bcb69379> /System/Library/PrivateFrameworks/StudyLog.framework/StudyLog
0x199a99000 - 0x199b21fff BulletinBoard arm64e  <15c7909177393908b72eb170e9f4feb7> /System/Library/PrivateFrameworks/BulletinBoard.framework/BulletinBoard
0x199b22000 - 0x199bb2fff iTunesStore arm64e   /System/Library/PrivateFrameworks/iTunesStore.framework/iTunesStore
0x19a618000 - 0x19a672fff SafariCore arm64e  <153830cc06e0381eb13f40f28d17edc1> /System/Library/PrivateFrameworks/SafariCore.framework/SafariCore
0x19a673000 - 0x19a6d7fff ScreenTimeCore arm64e  <51ce7e8ab8873dc680057f9fb582e7a9> /System/Library/PrivateFrameworks/ScreenTimeCore.framework/ScreenTimeCore
0x19acfd000 - 0x19ad11fff LocalAuthentication arm64e  <9cdc36765b6137e4b39d2ab814c4b18b> /System/Library/Frameworks/LocalAuthentication.framework/LocalAuthentication
0x19ad12000 - 0x19ad16fff CommunicationsFilter arm64e   /System/Library/PrivateFrameworks/CommunicationsFilter.framework/CommunicationsFilter
0x19ad17000 - 0x19ad3afff AddressBook arm64e   /System/Library/Frameworks/AddressBook.framework/AddressBook
0x19ad3b000 - 0x19ad46fff CaptiveNetwork arm64e  <2ce00a624c1a3cd4b5fcd0fed79af757> /System/Library/PrivateFrameworks/CaptiveNetwork.framework/CaptiveNetwork
0x19ad47000 - 0x19ad47fff AdSupport arm64e  <64f2847a1b993cdfab7a882a94347acf> /System/Library/Frameworks/AdSupport.framework/AdSupport
0x19ae96000 - 0x19af70fff libBLAS.dylib arm64e  <2642ebc655a03a18bc004e0215086334> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libBLAS.dylib
0x19af71000 - 0x19af7ffff CTCarrierSpace arm64e   /System/Library/PrivateFrameworks/CTCarrierSpace.framework/CTCarrierSpace
0x19b778000 - 0x19b849fff CoreParsec arm64e   /System/Library/PrivateFrameworks/CoreParsec.framework/CoreParsec
0x19ba46000 - 0x19ba5ffff libtailspin.dylib arm64e   /usr/lib/libtailspin.dylib
0x19babf000 - 0x19bad4fff ContactsDonation arm64e   /System/Library/PrivateFrameworks/ContactsDonation.framework/ContactsDonation
0x19bb1e000 - 0x19bb27fff MobileActivation arm64e  <7372ed004d0f3f588e3aaa8354e89b03> /System/Library/PrivateFrameworks/MobileActivation.framework/MobileActivation
0x19bbb3000 - 0x19bbc2fff MobileIcons arm64e  <5d593a64a24b3599906c8e6d5331019c> /System/Library/PrivateFrameworks/MobileIcons.framework/MobileIcons
0x19bbc3000 - 0x19bcc4fff ResponseKit arm64e  <94340f96ace2302aa27d65e89dd04ad9> /System/Library/PrivateFrameworks/ResponseKit.framework/ResponseKit
0x19bce1000 - 0x19bd1bfff Notes arm64e   /System/Library/PrivateFrameworks/Notes.framework/Notes
0x19bd1c000 - 0x19bd34fff MetalKit arm64e  <746cbd622e3a38b2861b353421e05ae9> /System/Library/Frameworks/MetalKit.framework/MetalKit
0x19bd93000 - 0x19bddbfff CoreHaptics arm64e  <3a33ccf057fe3cffb4328a67c89cabcd> /System/Library/Frameworks/CoreHaptics.framework/CoreHaptics
0x19bddc000 - 0x19bea6fff ProofReader arm64e  <245be40f9ff83c65b0048ace3824eb27> /System/Library/PrivateFrameworks/ProofReader.framework/ProofReader
0x19bef6000 - 0x19bf01fff EmailAddressing arm64e  <323885dc79a53ca5b9fd9d50a3f878a9> /System/Library/PrivateFrameworks/EmailAddressing.framework/EmailAddressing
0x19bf02000 - 0x19bf18fff MailServices arm64e  <045b2512b00a3027a11996b950982c0b> /System/Library/PrivateFrameworks/MailServices.framework/MailServices
0x19bf19000 - 0x19bf9efff CoreSymbolication arm64e  <3b60713d87c3314a9964d3a8d16ad596> /System/Library/PrivateFrameworks/CoreSymbolication.framework/CoreSymbolication
0x19bf9f000 - 0x19bfa5fff IdleTimerServices arm64e  <72fe495d6519318992bc841bafd8abed> /System/Library/PrivateFrameworks/IdleTimerServices.framework/IdleTimerServices
0x19c086000 - 0x19c143fff VideoSubscriberAccount arm64e  <8929b80edaee3978b145e7a3a7526959> /System/Library/Frameworks/VideoSubscriberAccount.framework/VideoSubscriberAccount
0x19c158000 - 0x19c15bfff FTClientServices arm64e  <063e727d0db432e382e2b68c7f84f518> /System/Library/PrivateFrameworks/FTClientServices.framework/FTClientServices
0x19c15c000 - 0x19c1c5fff ContactsUICore arm64e  <81abb06fb3423e8eabf85dceb19cc9c3> /System/Library/PrivateFrameworks/ContactsUICore.framework/ContactsUICore
0x19c655000 - 0x19c69dfff LoggingSupport arm64e  <01ca388902cd3471b550bec78c3f9e7d> /System/Library/PrivateFrameworks/LoggingSupport.framework/LoggingSupport
0x19c7ac000 - 0x19c807fff ProtectedCloudStorage arm64e  <300e1a077b6c3b11b65d50cdeb8b53a4> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/ProtectedCloudStorage
0x19c8f6000 - 0x19c901fff OpenGLES arm64e  <702b7aef0c6833d395c8496af15d07dd> /System/Library/Frameworks/OpenGLES.framework/OpenGLES
0x19ca6b000 - 0x19ca74fff libGFXShared.dylib arm64e   /System/Library/Frameworks/OpenGLES.framework/libGFXShared.dylib
0x19ca75000 - 0x19caa9fff SharedUtils arm64e   /System/Library/Frameworks/LocalAuthentication.framework/Support/SharedUtils.framework/SharedUtils
0x19caaa000 - 0x19caf8fff PhotosFormats arm64e   /System/Library/PrivateFrameworks/PhotosFormats.framework/PhotosFormats
0x19db9f000 - 0x19dbdbfff StreamingZip arm64e  <5e336c546bf53392a17b8875760807ce> /System/Library/PrivateFrameworks/StreamingZip.framework/StreamingZip
0x19e845000 - 0x19ea7bfff SafariShared arm64e   /System/Library/PrivateFrameworks/SafariShared.framework/SafariShared
0x19eb03000 - 0x19eb05fff InternationalTextSearch arm64e  <67efb041157e3a1588983b11c121632d> /System/Library/PrivateFrameworks/InternationalTextSearch.framework/InternationalTextSearch
0x19eb24000 - 0x19eb41fff AssetCacheServices arm64e  <2e06fe8cbe39350185716dfa153638f4> /System/Library/PrivateFrameworks/AssetCacheServices.framework/AssetCacheServices
0x19f4cf000 - 0x19f4d4fff IncomingCallFilter arm64e  <7b0f5016c14a356c95115bfd8716aca2> /System/Library/PrivateFrameworks/IncomingCallFilter.framework/IncomingCallFilter
0x19f4f0000 - 0x19f508fff NetworkStatistics arm64e  <7d5b038d755f3f1b9730786aa581ce52> /System/Library/PrivateFrameworks/NetworkStatistics.framework/NetworkStatistics
0x19f977000 - 0x19f97dfff Netrb arm64e  <181d438cbd1c346d914badbe1f776de1> /System/Library/PrivateFrameworks/Netrb.framework/Netrb
0x19f981000 - 0x19f9b1fff EAP8021X arm64e  <018a579ceefc3e1a9ec8107ad82b7004> /System/Library/PrivateFrameworks/EAP8021X.framework/EAP8021X
0x19f9b2000 - 0x19f9b4fff OSAServicesClient arm64e  <7966858bf8f8384eb7eaba6d5a8dee35> /System/Library/PrivateFrameworks/OSAServicesClient.framework/OSAServicesClient
0x19fb58000 - 0x19fb5cfff libgermantok.dylib arm64e  <0f199acc0f5d37aea1e995c1e859c4c6> /usr/lib/libgermantok.dylib
0x19fb5d000 - 0x19fc10fff libmecab.dylib arm64e   /usr/lib/libmecab.dylib
0x19fc11000 - 0x19fc4dfff Catalyst arm64e   /System/Library/PrivateFrameworks/Catalyst.framework/Catalyst
0x19fd9f000 - 0x19fddbfff VoiceServices arm64e   /System/Library/PrivateFrameworks/VoiceServices.framework/VoiceServices
0x19fddc000 - 0x19fef7fff Navigation arm64e  <98cf063150db382cb681933807d04fc7> /System/Library/PrivateFrameworks/Navigation.framework/Navigation
0x1a020f000 - 0x1a021dfff CoreDuetDaemonProtocol arm64e  <5fd40e5ba6313dc4892b1f910d9038d8> /System/Library/PrivateFrameworks/CoreDuetDaemonProtocol.framework/CoreDuetDaemonProtocol
0x1a021e000 - 0x1a023efff FTAWD arm64e  <32644471341b392cb241cdcf587e2fed> /System/Library/PrivateFrameworks/FTAWD.framework/FTAWD
0x1a124f000 - 0x1a1251fff OAuth arm64e  <8a810004f7f43d7dad3e3555bf9230e4> /System/Library/PrivateFrameworks/OAuth.framework/OAuth
0x1a150f000 - 0x1a154cfff DifferentialPrivacy arm64e   /System/Library/PrivateFrameworks/DifferentialPrivacy.framework/DifferentialPrivacy
0x1a17f3000 - 0x1a1982fff EmailDaemon arm64e   /System/Library/PrivateFrameworks/EmailDaemon.framework/EmailDaemon
0x1a1cf1000 - 0x1a1d1efff MailSupport arm64e   /System/Library/PrivateFrameworks/MailSupport.framework/MailSupport
0x1a1d1f000 - 0x1a1d8ffff libarchive.2.dylib arm64e  <87025e7a53043890a7f0bf34f1da4432> /usr/lib/libarchive.2.dylib
0x1a1d90000 - 0x1a1dbffff C2 arm64e  <125104cd2ff63f07ad47d76d2d28046f> /System/Library/PrivateFrameworks/C2.framework/C2
0x1a1dc0000 - 0x1a1df4fff NaturalLanguage arm64e   /System/Library/Frameworks/NaturalLanguage.framework/NaturalLanguage
0x1a1e8a000 - 0x1a1e8bfff libsystem_coreservices.dylib arm64e  <62efb55b6fb2355181d65985144da65d> /usr/lib/system/libsystem_coreservices.dylib
0x1a1e9d000 - 0x1a1eaefff libmis.dylib arm64e   /usr/lib/libmis.dylib
0x1a1eaf000 - 0x1a1f06fff WebBookmarks arm64e  <7ddc5239ae573fa4a4274cc6266db303> /System/Library/PrivateFrameworks/WebBookmarks.framework/WebBookmarks
0x1a1f07000 - 0x1a1f14fff DCIMServices arm64e  <08d156fae0c73433a07f88f2f6566f9c> /System/Library/PrivateFrameworks/DCIMServices.framework/DCIMServices
0x1a1f15000 - 0x1a2070fff CloudPhotoLibrary arm64e   /System/Library/PrivateFrameworks/CloudPhotoLibrary.framework/CloudPhotoLibrary
0x1a2071000 - 0x1a20abfff ContactsAutocomplete arm64e  <19d9ae392b63303993b3d89472c13e1c> /System/Library/PrivateFrameworks/ContactsAutocomplete.framework/ContactsAutocomplete
0x1a20ac000 - 0x1a20b4fff libcopyfile.dylib arm64e   /usr/lib/system/libcopyfile.dylib
0x1a20b5000 - 0x1a20d5fff UsageTracking arm64e   /System/Library/PrivateFrameworks/UsageTracking.framework/UsageTracking
0x1a2417000 - 0x1a24a9fff AccountsDaemon arm64e  <9de20c2bd7b2381baaffdbaa44beda17> /System/Library/PrivateFrameworks/AccountsDaemon.framework/AccountsDaemon
0x1a24aa000 - 0x1a24b5fff AppleIDSSOAuthentication arm64e   /System/Library/PrivateFrameworks/AppleIDSSOAuthentication.framework/AppleIDSSOAuthentication
0x1a24b6000 - 0x1a24c7fff SettingsFoundation arm64e   /System/Library/PrivateFrameworks/SettingsFoundation.framework/SettingsFoundation
0x1a25f0000 - 0x1a266dfff Symbolication arm64e  <64e12c95c71b3080b5f49bb7b492d374> /System/Library/PrivateFrameworks/Symbolication.framework/Symbolication
0x1a2831000 - 0x1a2880fff ChunkingLibrary arm64e  <70e30c0e35cb33e0a8a11c141b7760a8> /System/Library/PrivateFrameworks/ChunkingLibrary.framework/ChunkingLibrary
0x1a2884000 - 0x1a2888fff DAAPKit arm64e   /System/Library/PrivateFrameworks/DAAPKit.framework/DAAPKit
0x1a2d8f000 - 0x1a2d91fff CoreDuetDebugLogging arm64e   /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/CoreDuetDebugLogging
0x1a3890000 - 0x1a38cefff SignpostSupport arm64e   /System/Library/PrivateFrameworks/SignpostSupport.framework/SignpostSupport
0x1a3b0f000 - 0x1a3b18fff SignpostCollection arm64e   /System/Library/PrivateFrameworks/SignpostCollection.framework/SignpostCollection
0x1a4265000 - 0x1a426cfff URLFormatting arm64e  <22638e420fc23b1fbf7cd0c2698b5c7b> /System/Library/PrivateFrameworks/URLFormatting.framework/URLFormatting
0x1a4281000 - 0x1a4329fff MMCS arm64e  <759122ec91083f5aa8d39187b5e12bcc> /System/Library/PrivateFrameworks/MMCS.framework/MMCS
0x1a4383000 - 0x1a45aefff MobileSpotlightIndex arm64e   /System/Library/PrivateFrameworks/MobileSpotlightIndex.framework/MobileSpotlightIndex
0x1a49aa000 - 0x1a49f1fff CoreLocationProtobuf arm64e  <7670d13e0e9b32208f9ff00afd2c1547> /System/Library/PrivateFrameworks/CoreLocationProtobuf.framework/CoreLocationProtobuf
0x1a4a7f000 - 0x1a4afafff Quagga arm64e  <6395c719ab773d9395757decaa9693e3> /System/Library/PrivateFrameworks/Quagga.framework/Quagga
0x1a4d99000 - 0x1a4da6fff libAXSpeechManager.dylib arm64e   /usr/lib/libAXSpeechManager.dylib
0x1a4e0d000 - 0x1a4e21fff libEDR arm64e  <3418f5ad9482391e86214d7da413f70c> /System/Library/PrivateFrameworks/libEDR.framework/libEDR
0x1a5a63000 - 0x1a5a71fff libperfcheck.dylib arm64e  <65fa28c4026c39f5ba309f9e7c62cf4f> /usr/lib/libperfcheck.dylib
0x1a5a72000 - 0x1a5a7dfff libAudioStatistics.dylib arm64e   /usr/lib/libAudioStatistics.dylib
0x1a5c3d000 - 0x1a5c4dfff caulk arm64e   /System/Library/PrivateFrameworks/caulk.framework/caulk
0x1a5c8d000 - 0x1a5c93fff MobileSystemServices arm64e  <1c6232e16abc3a809157f27c8f0316a4> /System/Library/PrivateFrameworks/MobileSystemServices.framework/MobileSystemServices
0x1a5e32000 - 0x1a5e4afff TextToSpeech arm64e   /System/Library/PrivateFrameworks/TextToSpeech.framework/TextToSpeech
0x1a69f3000 - 0x1a6a08fff RemoteXPC arm64e   /System/Library/PrivateFrameworks/RemoteXPC.framework/RemoteXPC
0x1a6d76000 - 0x1a6db2fff libGLImage.dylib arm64e  <40476c4fdcbb38ccb06885af767a2a62> /System/Library/Frameworks/OpenGLES.framework/libGLImage.dylib
0x1a71ec000 - 0x1a71fdfff libSparseBLAS.dylib arm64e  <328e22435fb338b8bb20fd740eccc01c> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libSparseBLAS.dylib
0x1a71fe000 - 0x1a7212fff Engram arm64e  <42d74263c9833bc08c507b0526593889> /System/Library/PrivateFrameworks/Engram.framework/Engram
0x1a728d000 - 0x1a72c8fff DataDetectorsNaturalLanguage arm64e  <5d57d312a07030adbd1b8a472d9c8b01> /System/Library/PrivateFrameworks/DataDetectorsNaturalLanguage.framework/DataDetectorsNaturalLanguage
0x1a75ba000 - 0x1a75c2fff FSEvents arm64e  <543b3c11bbc43388bc77e860b780e223> /System/Library/PrivateFrameworks/FSEvents.framework/FSEvents
0x1a75d2000 - 0x1a7651fff CoreDAV arm64e   /System/Library/PrivateFrameworks/CoreDAV.framework/CoreDAV
0x1a7f5d000 - 0x1a7f6dfff RemoteTextInput arm64e  <413eddd2de853186b654983723b68524> /System/Library/PrivateFrameworks/RemoteTextInput.framework/RemoteTextInput
0x1a7f96000 - 0x1a7fc6fff iCalendar arm64e  <5ee0e6556cd133a9bf65125c0c2a91dd> /System/Library/PrivateFrameworks/iCalendar.framework/iCalendar
0x1a7fe3000 - 0x1a7fecfff CloudPhotoServices arm64e  <7d0e0ab4edaf36f08c8a5a5fa6330308> /System/Library/PrivateFrameworks/CloudPhotoServices.framework/CloudPhotoServices
0x1a802c000 - 0x1a8040fff libLinearAlgebra.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLinearAlgebra.dylib
0x1a80d3000 - 0x1a81dbfff ConfigurationEngineModel arm64e  <4325a3bee37d3504b989ef03a6fdb5bd> /System/Library/PrivateFrameworks/ConfigurationEngineModel.framework/ConfigurationEngineModel
0x1a81dc000 - 0x1a81e3fff CertUI arm64e   /System/Library/PrivateFrameworks/CertUI.framework/CertUI
0x1a82ea000 - 0x1a82f8fff CoreAUC arm64e  <625babb086c2316c8b61c736c7ef33c4> /System/Library/PrivateFrameworks/CoreAUC.framework/CoreAUC
0x1a8d33000 - 0x1a8d7afff PhysicsKit arm64e  <24933c9f5cd93de28a52a8d2e85f1df6> /System/Library/PrivateFrameworks/PhysicsKit.framework/PhysicsKit
0x1a8d7b000 - 0x1a8dcdfff CorePrediction arm64e  <1eec72976aa43d778f5945e152b1d7b1> /System/Library/PrivateFrameworks/CorePrediction.framework/CorePrediction
0x1a921d000 - 0x1a9265fff SafariSafeBrowsing arm64e   /System/Library/PrivateFrameworks/SafariSafeBrowsing.framework/SafariSafeBrowsing
0x1a9618000 - 0x1a968ffff HomeSharing arm64e  <161b3212eee735588cec76e7282393cf> /System/Library/PrivateFrameworks/HomeSharing.framework/HomeSharing
0x1a9722000 - 0x1a9740fff GenerationalStorage arm64e  <62db70b3bcc0380a93039eac8c83f1a0> /System/Library/PrivateFrameworks/GenerationalStorage.framework/GenerationalStorage
0x1a97a5000 - 0x1a97b0fff PersonaKit arm64e   /System/Library/PrivateFrameworks/PersonaKit.framework/PersonaKit
0x1a97b1000 - 0x1a97bdfff PersonaUI arm64e   /System/Library/PrivateFrameworks/PersonaUI.framework/PersonaUI
0x1a9bcd000 - 0x1a9bd2fff kperf arm64e  <67921ebb9b0c3ec2847ce00eb8a8d1b6> /System/Library/PrivateFrameworks/kperf.framework/kperf
0x1a9d66000 - 0x1a9d75fff AssetsLibrary arm64e   /System/Library/Frameworks/AssetsLibrary.framework/AssetsLibrary
0x1a9da3000 - 0x1a9ddafff libpcap.A.dylib arm64e  <93abeafa93953f76bd95a57443580200> /usr/lib/libpcap.A.dylib
0x1aa0a3000 - 0x1aa0b9fff WebUI arm64e   /System/Library/PrivateFrameworks/WebUI.framework/WebUI
0x1aa0ba000 - 0x1aa0d1fff SafariFoundation arm64e  <90b27d51e91c3bd09a3372e86cc65460> /System/Library/PrivateFrameworks/SafariFoundation.framework/SafariFoundation
0x1aa11a000 - 0x1aa1c0fff libvDSP.dylib arm64e  <9e7ceedfde2c3432aa5cf73999e05dd2> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvDSP.dylib
0x1aa1c1000 - 0x1aa1edfff vCard arm64e   /System/Library/PrivateFrameworks/vCard.framework/vCard
0x1aa230000 - 0x1aa2bdfff SampleAnalysis arm64e  <48de37f04dcf347fbc3d3069cdd66c8d> /System/Library/PrivateFrameworks/SampleAnalysis.framework/SampleAnalysis
0x1aa2be000 - 0x1aa2c9fff IntentsFoundation arm64e  <62acc39c9a1d3816b292309ec178fa91> /System/Library/PrivateFrameworks/IntentsFoundation.framework/IntentsFoundation
0x1aa4ba000 - 0x1aa4bbfff ParsecSubscriptionServiceSupport arm64e  <03e432abcde438b6810bcc75e0153b0a> /System/Library/PrivateFrameworks/ParsecSubscriptionServiceSupport.framework/ParsecSubscriptionServiceSupport
0x1aa4bc000 - 0x1aa548fff MediaPlatform arm64e   /System/Library/PrivateFrameworks/MediaPlatform.framework/MediaPlatform
0x1aa549000 - 0x1aa815fff MediaLibraryCore arm64e   /System/Library/PrivateFrameworks/MediaLibraryCore.framework/MediaLibraryCore
0x1aa877000 - 0x1aa8b0fff PhotosImagingFoundation arm64e  <69ffed4d0d2e347f94e441e1a8937970> /System/Library/PrivateFrameworks/PhotosImagingFoundation.framework/PhotosImagingFoundation
0x1aa8b1000 - 0x1aa8d3fff MediaConversionService arm64e   /System/Library/PrivateFrameworks/MediaConversionService.framework/MediaConversionService
0x1aa8d4000 - 0x1aa8f2fff MediaStream arm64e  <7435aab400dd37be96f4dd3bf68fce5a> /System/Library/PrivateFrameworks/MediaStream.framework/MediaStream
0x1aa8f3000 - 0x1aa9f4fff CoreMediaStream arm64e  <0a53f260826032698a6e28a5691253e7> /System/Library/PrivateFrameworks/CoreMediaStream.framework/CoreMediaStream
0x1aab0e000 - 0x1aab0efff Accelerate arm64e   /System/Library/Frameworks/Accelerate.framework/Accelerate
0x1aab10000 - 0x1aae4dfff libLAPACK.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libLAPACK.dylib
0x1aae4e000 - 0x1aae52fff libQuadrature.dylib arm64e  <541a519ace41385b9d84b4af10b39213> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libQuadrature.dylib
0x1aae53000 - 0x1aaeacfff libvMisc.dylib arm64e   /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/libvMisc.dylib
0x1aaead000 - 0x1aaeadfff vecLib arm64e  <5320a9f197cc319b9fc7c76e84da2491> /System/Library/Frameworks/Accelerate.framework/Frameworks/vecLib.framework/vecLib
0x1aaeb6000 - 0x1aaec3fff AuthenticationServices arm64e  <7150a56bcbd4383ca0f1fee8f698ee44> /System/Library/Frameworks/AuthenticationServices.framework/AuthenticationServices
0x1ab024000 - 0x1ab073fff CoreMIDI arm64e  <4daf52ff1f2b3d74ac0c460612e617b4> /System/Library/Frameworks/CoreMIDI.framework/CoreMIDI
0x1ab242000 - 0x1ab268fff GLKit arm64e   /System/Library/Frameworks/GLKit.framework/GLKit
0x1ab269000 - 0x1ab296fff GSS arm64e  <61287c2c4a4d3ea7854daa7acbbf3435> /System/Library/Frameworks/GSS.framework/GSS
0x1ab2aa000 - 0x1ab2dcfff MPSCore arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSCore.framework/MPSCore
0x1ab2dd000 - 0x1ab356fff MPSImage arm64e  <5627b80e55e83480b5b0dae1bc071ae9> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSImage.framework/MPSImage
0x1ab357000 - 0x1ab379fff MPSMatrix arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSMatrix.framework/MPSMatrix
0x1ab37a000 - 0x1ab38efff MPSNDArray arm64e  <63ebbd974b273e1298d81166541870a5> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNDArray.framework/MPSNDArray
0x1ab38f000 - 0x1ab524fff MPSNeuralNetwork arm64e  <1d04f375820e3b909884eab7c82fbf08> /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSNeuralNetwork.framework/MPSNeuralNetwork
0x1ab525000 - 0x1ab56afff MPSRayIntersector arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/Frameworks/MPSRayIntersector.framework/MPSRayIntersector
0x1ab56b000 - 0x1ab56bfff MetalPerformanceShaders arm64e   /System/Library/Frameworks/MetalPerformanceShaders.framework/MetalPerformanceShaders
0x1ab578000 - 0x1ab578fff MobileCoreServices arm64e   /System/Library/Frameworks/MobileCoreServices.framework/MobileCoreServices
0x1ab583000 - 0x1ab584fff libCVMSPluginSupport.dylib arm64e   /System/Library/Frameworks/OpenGLES.framework/libCVMSPluginSupport.dylib
0x1ab585000 - 0x1ab58bfff libCoreFSCache.dylib arm64e  <37f349c974f930c6bf872f8a1d5ce8be> /System/Library/Frameworks/OpenGLES.framework/libCoreFSCache.dylib
0x1ab58c000 - 0x1ab591fff libCoreVMClient.dylib arm64e  <6507dea92aae3de8a002f2d9a475e07e> /System/Library/Frameworks/OpenGLES.framework/libCoreVMClient.dylib
0x1ab5c6000 - 0x1ab5fcfff QuickLookThumbnailing arm64e   /System/Library/Frameworks/QuickLookThumbnailing.framework/QuickLookThumbnailing
0x1aba6e000 - 0x1aba6efff UIKit arm64e   /System/Library/Frameworks/UIKit.framework/UIKit
0x1aba90000 - 0x1abb56fff VisionKit arm64e   /System/Library/Frameworks/VisionKit.framework/VisionKit
0x1abe28000 - 0x1abf60fff ANECompiler arm64e  <2f663fe7cd863aeb9e8c83696336371a> /System/Library/PrivateFrameworks/ANECompiler.framework/ANECompiler
0x1abf61000 - 0x1abf72fff ANEServices arm64e   /System/Library/PrivateFrameworks/ANEServices.framework/ANEServices
0x1ac00d000 - 0x1ac011fff ASEProcessing arm64e  <230084eda99e3404ae36c4ec1afd8e63> /System/Library/PrivateFrameworks/ASEProcessing.framework/ASEProcessing
0x1ac116000 - 0x1ac14ffff AccessibilitySharedSupport arm64e   /System/Library/PrivateFrameworks/AccessibilitySharedSupport.framework/AccessibilitySharedSupport
0x1ac1ad000 - 0x1ac1b8fff AccountSettings arm64e  <1d8c3c51334935e284f2e20dccd10943> /System/Library/PrivateFrameworks/AccountSettings.framework/AccountSettings
0x1acba9000 - 0x1acbb7fff AppleFSCompression arm64e  <2d9cebf822963598a1a9c79949d7ed82> /System/Library/PrivateFrameworks/AppleFSCompression.framework/AppleFSCompression
0x1acbbe000 - 0x1acbc8fff AppleIDAuthSupport arm64e  <9c5c840287d338fda168939769a2bced> /System/Library/PrivateFrameworks/AppleIDAuthSupport.framework/AppleIDAuthSupport
0x1acbc9000 - 0x1acc0bfff AppleJPEG arm64e  <79a818f233f933da8883b061a07a9b7f> /System/Library/PrivateFrameworks/AppleJPEG.framework/AppleJPEG
0x1acc27000 - 0x1acc38fff AppleNeuralEngine arm64e  <258f9f4ee31c34b8abe2357d49c1d492> /System/Library/PrivateFrameworks/AppleNeuralEngine.framework/AppleNeuralEngine
0x1acc3f000 - 0x1acc62fff AppleSauce arm64e  <4837b25d7836325dae7599489c5cd809> /System/Library/PrivateFrameworks/AppleSauce.framework/AppleSauce
0x1ace63000 - 0x1ace93fff Bom arm64e  <11103b9e286338f2b5b59081d28b6ddd> /System/Library/PrivateFrameworks/Bom.framework/Bom
0x1ad926000 - 0x1ad92dfff CommonAuth arm64e   /System/Library/PrivateFrameworks/CommonAuth.framework/CommonAuth
0x1adc52000 - 0x1add44fff CoreHandwriting arm64e  <7edf837bdf34370798510792cd84bdf8> /System/Library/PrivateFrameworks/CoreHandwriting.framework/CoreHandwriting
0x1add5b000 - 0x1add5efff CoreOptimization arm64e  <875ade7864a736f1af291a226583afd4> /System/Library/PrivateFrameworks/CoreOptimization.framework/CoreOptimization
0x1ade79000 - 0x1ade84fff DeviceIdentity arm64e  <8d58ebaafda93e3d83c111a9910872f7> /System/Library/PrivateFrameworks/DeviceIdentity.framework/DeviceIdentity
0x1ae015000 - 0x1ae030fff DocumentManagerCore arm64e  <6926e11b034035f392cde2453d7b0c5f> /System/Library/PrivateFrameworks/DocumentManagerCore.framework/DocumentManagerCore
0x1ae0f1000 - 0x1ae6adfff Espresso arm64e   /System/Library/PrivateFrameworks/Espresso.framework/Espresso
0x1ae97e000 - 0x1aed91fff FaceCore arm64e  <8ad0d68b4abd3a0bbdfb1d05b1599d33> /System/Library/PrivateFrameworks/FaceCore.framework/FaceCore
0x1aee66000 - 0x1aee79fff libGSFontCache.dylib arm64e  <95e7d15348ae3f39a79e27b22d38310c> /System/Library/PrivateFrameworks/FontServices.framework/libGSFontCache.dylib
0x1aeee0000 - 0x1aeeecfff libhvf.dylib arm64e  <0292acc17fae38d8b9e5e9481faee212> /System/Library/PrivateFrameworks/FontServices.framework/libhvf.dylib
0x1aef0e000 - 0x1aef22fff Futhark arm64e  <672f533948893ebf9f802945048fbb05> /System/Library/PrivateFrameworks/Futhark.framework/Futhark
0x1afc29000 - 0x1afc35fff GraphVisualizer arm64e  <70712b0f09253ad69e12a16f2325cbbb> /System/Library/PrivateFrameworks/GraphVisualizer.framework/GraphVisualizer
0x1b05b5000 - 0x1b0625fff Heimdal arm64e   /System/Library/PrivateFrameworks/Heimdal.framework/Heimdal
0x1b0b58000 - 0x1b0b5efff InternationalSupport arm64e  <792be37f42e738e2a85f940e589904ad> /System/Library/PrivateFrameworks/InternationalSupport.framework/InternationalSupport
0x1b0e1f000 - 0x1b0e1ffff Marco arm64e   /System/Library/PrivateFrameworks/Marco.framework/Marco
0x1b12eb000 - 0x1b1315fff MetricsKit arm64e  <438868c0db0c3ca5b7ef525d7175931f> /System/Library/PrivateFrameworks/MetricsKit.framework/MetricsKit
0x1b1323000 - 0x1b1335fff MobileDeviceLink arm64e   /System/Library/PrivateFrameworks/MobileDeviceLink.framework/MobileDeviceLink
0x1b1347000 - 0x1b1350fff MobileStorage arm64e  <278fb24b853333feb96bc2b672037bb7> /System/Library/PrivateFrameworks/MobileStorage.framework/MobileStorage
0x1b15ed000 - 0x1b162dfff OTSVG arm64e   /System/Library/PrivateFrameworks/OTSVG.framework/OTSVG
0x1b1cb1000 - 0x1b1cb1fff PhoneNumbers arm64e  <7e38d788f45631b592f24c1815b4425d> /System/Library/PrivateFrameworks/PhoneNumbers.framework/PhoneNumbers
0x1b3645000 - 0x1b3651fff RemoteServiceDiscovery arm64e  <35e081844fb93bf681d7727925f55aec> /System/Library/PrivateFrameworks/RemoteServiceDiscovery.framework/RemoteServiceDiscovery
0x1b36ac000 - 0x1b36b0fff RevealCore arm64e   /System/Library/PrivateFrameworks/RevealCore.framework/RevealCore
0x1b37a2000 - 0x1b37d4fff ScreenReaderCore arm64e  <3c0a5b4a949a3b96b560a0ea5f9fc236> /System/Library/PrivateFrameworks/ScreenReaderCore.framework/ScreenReaderCore
0x1b3848000 - 0x1b3854fff SetupAssistantSupport arm64e  <67af340cbb44383abea532d69c051c4d> /System/Library/PrivateFrameworks/SetupAssistantSupport.framework/SetupAssistantSupport
0x1b3873000 - 0x1b3873fff SignpostMetrics arm64e  <8491b11f8bdd35b5a2341b5dbfaf3e7a> /System/Library/PrivateFrameworks/SignpostMetrics.framework/SignpostMetrics
0x1b38a2000 - 0x1b38befff SiriInstrumentation arm64e  <1f021f3ff9273b23a1b4fd2a5a789107> /System/Library/PrivateFrameworks/SiriInstrumentation.framework/SiriInstrumentation
0x1b4047000 - 0x1b4167fff TextRecognition arm64e   /System/Library/PrivateFrameworks/TextRecognition.framework/TextRecognition
0x1b4168000 - 0x1b420cfff TextureIO arm64e   /System/Library/PrivateFrameworks/TextureIO.framework/TextureIO
0x1b504e000 - 0x1b554bfff libwebrtc.dylib arm64e   /System/Library/PrivateFrameworks/WebCore.framework/Frameworks/libwebrtc.dylib
0x1b56e5000 - 0x1b56edfff kperfdata arm64e  <268ed5f452853e16970edd86308648e6> /System/Library/PrivateFrameworks/kperfdata.framework/kperfdata
0x1b56ee000 - 0x1b5737fff ktrace arm64e  <6ae5fc68b5c43669a7966bc0dbfb906a> /System/Library/PrivateFrameworks/ktrace.framework/ktrace
0x1b5750000 - 0x1b575cfff perfdata arm64e  <2f57b5d4778c3edeaff896eb3f1ae0a4> /System/Library/PrivateFrameworks/perfdata.framework/perfdata
0x1b575d000 - 0x1b576bfff zudp arm64e  <5bd9dbe3109c3c31a698f8d10a4704ce> /System/Library/PrivateFrameworks/zudp.framework/zudp
0x1b5b33000 - 0x1b5e34fff libAWDSupportFramework.dylib arm64e   /usr/lib/libAWDSupportFramework.dylib
0x1b5fe6000 - 0x1b5ff0fff libChineseTokenizer.dylib arm64e  <8e294bf75bd03ac0b337808c053718a2> /usr/lib/libChineseTokenizer.dylib
0x1b6015000 - 0x1b61d9fff libFosl_dynamic.dylib arm64e   /usr/lib/libFosl_dynamic.dylib
0x1b6256000 - 0x1b625dfff libMatch.1.dylib arm64e   /usr/lib/libMatch.1.dylib
0x1b630f000 - 0x1b6310fff libSystem.B.dylib arm64e   /usr/lib/libSystem.B.dylib
0x1b6319000 - 0x1b631afff libThaiTokenizer.dylib arm64e  <5714b83e0221351eaed33967533ee8ac> /usr/lib/libThaiTokenizer.dylib
0x1b641a000 - 0x1b642ffff libapple_nghttp2.dylib arm64e  <20c588bb07ca3f33a0128400556f5576> /usr/lib/libapple_nghttp2.dylib
0x1b64a8000 - 0x1b64b8fff libbsm.0.dylib arm64e   /usr/lib/libbsm.0.dylib
0x1b64b9000 - 0x1b64c5fff libbz2.1.0.dylib arm64e  <6b253115be113d3a98728dccc97b5bb4> /usr/lib/libbz2.1.0.dylib
0x1b64c6000 - 0x1b64c6fff libcharset.1.dylib arm64e   /usr/lib/libcharset.1.dylib
0x1b64c7000 - 0x1b64d8fff libcmph.dylib arm64e  <3518804827d43966a3680ff1d59cc23e> /usr/lib/libcmph.dylib
0x1b64d9000 - 0x1b64f0fff libcompression.dylib arm64e   /usr/lib/libcompression.dylib
0x1b64f1000 - 0x1b64f2fff libcoretls_cfhelpers.dylib arm64e   /usr/lib/libcoretls_cfhelpers.dylib
0x1b64f3000 - 0x1b64f9fff libcupolicy.dylib arm64e  <83f09dda7f83394bb7c19fbacf9d73e4> /usr/lib/libcupolicy.dylib
0x1b653a000 - 0x1b6543fff libdscsym.dylib arm64e  <5d63488dd8793920b7e07d32b6702938> /usr/lib/libdscsym.dylib
0x1b6544000 - 0x1b6561fff libedit.3.dylib arm64e  <5bfc3fd2d7e43f589951c0e331470a17> /usr/lib/libedit.3.dylib
0x1b657b000 - 0x1b6580fff libheimdal-asn1.dylib arm64e  <48250f2339a03afd89a1f299c63b6c7f> /usr/lib/libheimdal-asn1.dylib
0x1b6581000 - 0x1b6673fff libiconv.2.dylib arm64e   /usr/lib/libiconv.2.dylib
0x1b6689000 - 0x1b6694fff liblockdown.dylib arm64e  <67069c6e24c03429bcc947e9e37219b8> /usr/lib/liblockdown.dylib
0x1b66ae000 - 0x1b66c6fff liblzma.5.dylib arm64e  <8f71f57782fc37129edf4e65a4ba057f> /usr/lib/liblzma.5.dylib
0x1b6a41000 - 0x1b6a71fff libncurses.5.4.dylib arm64e  <7f2d88671e0c3059a800ef9cbd1237bb> /usr/lib/libncurses.5.4.dylib
0x1b6a72000 - 0x1b6a86fff libnetworkextension.dylib arm64e  <6a7f46a0ca633f42808eba6390024d46> /usr/lib/libnetworkextension.dylib
0x1b6e12000 - 0x1b6e2afff libresolv.9.dylib arm64e  <547a0667b3403e76af0de0ae6b64e3c9> /usr/lib/libresolv.9.dylib
0x1b6e2b000 - 0x1b6e2dfff libsandbox.1.dylib arm64e  <6510d9eb36023e1d967bd1a42a84e614> /usr/lib/libsandbox.1.dylib
0x1b6e2e000 - 0x1b6e33fff libsysdiagnose.dylib arm64e   /usr/lib/libsysdiagnose.dylib
0x1b6e34000 - 0x1b6e65fff libtidy.A.dylib arm64e   /usr/lib/libtidy.A.dylib
0x1b6e6d000 - 0x1b6e70fff libutil.dylib arm64e  <3f0b39a6c4cf3b93995718087a08cf73> /usr/lib/libutil.dylib
0x1b6e9e000 - 0x1b6eaffff libz.1.dylib arm64e   /usr/lib/libz.1.dylib
0x1b72f1000 - 0x1b72f6fff libcache.dylib arm64e  <2dddbc36aa7732c0b95056290ae4eb5a> /usr/lib/system/libcache.dylib
0x1b72f7000 - 0x1b7307fff libcommonCrypto.dylib arm64e  <7925a57ae194355ea75633fb5fb3311f> /usr/lib/system/libcommonCrypto.dylib
0x1b7308000 - 0x1b730bfff libcompiler_rt.dylib arm64e  <0d4001df92c13e228a2a9f5b1b00ed08> /usr/lib/system/libcompiler_rt.dylib
0x1b73e2000 - 0x1b73e2fff liblaunch.dylib arm64e   /usr/lib/system/liblaunch.dylib
0x1b73e3000 - 0x1b73e8fff libmacho.dylib arm64e  <39c6830065b53de4b67e8a1ea71cf80d> /usr/lib/system/libmacho.dylib
0x1b73e9000 - 0x1b73eafff libremovefile.dylib arm64e  <7e5f05477aa23c14be26a918f669f1a4> /usr/lib/system/libremovefile.dylib
0x1b73eb000 - 0x1b73ecfff libsystem_featureflags.dylib arm64e  <6a91c6101f8d31a39361086939778789> /usr/lib/system/libsystem_featureflags.dylib
0x1b73ed000 - 0x1b741afff libsystem_m.dylib arm64e  <69aafc9e28c133999dd9b5b93d3c21a9> /usr/lib/system/libsystem_m.dylib
0x1b741b000 - 0x1b7420fff libunwind.dylib arm64e  <18bdcd9f8dd332f4abd51ebcb12586c7> /usr/lib/system/libunwind.dylib
0x1b7702000 - 0x1b7771fff NanoRegistry arm64e   /System/Library/PrivateFrameworks/NanoRegistry.framework/NanoRegistry
0x1b7772000 - 0x1b777ffff NanoPreferencesSync arm64e   /System/Library/PrivateFrameworks/NanoPreferencesSync.framework/NanoPreferencesSync
0x1b94a6000 - 0x1b94c3fff AppSSO arm64e   /System/Library/PrivateFrameworks/AppSSO.framework/AppSSO

EOF
Date/Time:        2019-10-29 07:31:17 +0900
End time:         2019-10-29 07:33:15 +0900
OS Version:       iPhone OS 13.1.3 (Build 17A878)
Architecture:     arm64e
Report Version:   29
Incident Identifier: 0FF21582-3D41-4D1E-8791-C1D479848812

Data Source:      Microstackshots
Shared Cache:     0x427f0000 EB6D17E0-913A-3787-8A6C-95AC8AF05D40

Command:          MiHome
Path:             /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
Identifier:       com.xiaomi.mihome
Version:          4.22.1 (4.22.1.2)
Beta Identifier:  7A349A31-75DF-4B1A-91D5-CD50A47F8B52
PID:              2976

Event:            wakeups
Action taken:     none
Wakeups:          45001 wakeups over the last 119 seconds (379 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45001
Wakeups duration: 119s
Duration:         118.71s
Duration Sampled: 8.03s
Steps:            7

Hardware model:   iPhone11,8
Active cpus:      6


Heaviest stack for the target process:
  4  ??? (libsystem_pthread.dylib + 7516) [0x1c295cd5c]
  3  ??? (MiHome + 21270328) [0x1020d8f38]
  3  ??? (MiHome + 21245516) [0x1020d2e4c]
  2  ??? (MiHome + 21261876) [0x1020d6e34]
  1  ??? (MiHome + 21327924) [0x1020e7034]


Powerstats for:   MiHome [2976]
Bundle ID:        com.xiaomi.mihome
Adam ID:          957323480
Is first party:   No
App version:      4.22.1
Build version:    4.22.1.2
Is Beta:          No
Share with Devs:  No
UUID:             C2F6B942-B443-31A0-A449-2B1512BD85FF
Path:             /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
Architecture:     arm64
Footprint:        240.86 MB
Pageins:          7 pages
Start time:       2019-10-29 07:33:04 +0900
End time:         2019-10-29 07:33:12 +0900
Num samples:      7 (100%)
CPU Time:         0.974s
Primary state:    5 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS Default, Requested Thread QoS Default, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 0 samples Active, 7 samples Unknown
Power Source:     0 samples on Battery, 0 samples on AC, 7 samples Unknown
  4  ??? (libsystem_pthread.dylib + 7516) [0x1c295cd5c]
    3  ??? (MiHome + 21270328) [0x1020d8f38]
      3  ??? (MiHome + 21245516) [0x1020d2e4c]
        2  ??? (MiHome + 21261876) [0x1020d6e34]
          1  ??? (MiHome + 21327924) [0x1020e7034]
          1  ??? (MiHome + 21159872) [0x1020bdfc0]
            1  ??? (MiHome + 21329416) [0x1020e7608]
        1  ??? (MiHome + 21261824) [0x1020d6e00]
          1  ??? (MiHome + 20977068) [0x1020915ac]
    1  ??? (MiHome + 21268288) [0x1020d8740]
      1  ??? (MiHome + 21269604) [0x1020d8c64]
        1  ??? (MiHome + 21003740) [0x102097ddc]
          1  ??? (MiHome + 20990752) [0x102094b20]
            1  ??? (MiHome + 21311444) [0x1020e2fd4]
  1  ??? (libdyld.dylib + 3888) [0x1c2a46f30]
    1  ??? (MiHome + 7364852) [0x1013960f4]
      1  ??? (UIKitCore + 10684332) [0x1c6ce77ac]
        1  ??? (GraphicsServices + 13620) [0x1ccd31534]
          1  ??? (CoreFoundation + 688280) [0x1c2bc7098]
            1  ??? (CoreFoundation + 691232) [0x1c2bc7c20]
              1  ??? (CoreFoundation + 712680) [0x1c2bccfe8]
                1  ??? (CoreFoundation + 715036) [0x1c2bcd91c]
                  1  ??? (CoreFoundation + 540468) [0x1c2ba2f34]
                    1  ??? (QuartzCore + 920880) [0x1c96b9d30]
                      1  ??? (QuartzCore + 74296) [0x1c95eb238]
                        1  ??? (MiHome + 26833900) [0x1026273ec]
                          1  ??? (MiHome + 26834420) [0x1026275f4]
                            1  ??? (QuartzCore + 1743416) [0x1c9782a38]
                              1  ??? (QuartzCore + 1387784) [0x1c972bd08]
                                1  ??? (CoreFoundation + 722168) [0x1c2bcf4f8]
                                  1  ??? (CoreGraphics + 2701920) [0x1c9c81a60]
                                    1  ??? (CoreGraphics + 2700960) [0x1c9c816a0]
                                      1  
  1  ??? (libsystem_pthread.dylib + 40048) [0x1c2964c70]
    1  
  1  ??? (libsystem_pthread.dylib + 15008) [0x1c295eaa0]
    1  ??? (libdispatch.dylib + 77600) [0x1c2908f20]
      1  ??? (libdispatch.dylib + 40624) [0x1c28ffeb0]
        1  ??? (libdispatch.dylib + 37716) [0x1c28ff354]
          1  ??? (libdispatch.dylib + 88260) [0x1c290b8c4]
            1  ??? (libdispatch.dylib + 89880) [0x1c290bf18]
              1  ??? (libdispatch.dylib + 22412) [0x1c28fb78c]
                1  ??? (libdispatch.dylib + 12300) [0x1c28f900c]
                  1  ??? (MiHome + 25391952) [0x1024c7350]
                    1  ??? (MiHome + 25392648) [0x1024c7608]
                      1  ??? (MiHome + 25392940) [0x1024c772c]
                        1  ??? (MiHome + 25619628) [0x1024fecac]
                          1  ??? (MiHome + 25624496) [0x1024fffb0]
                            1  ??? (MiHome + 25562656) [0x1024f0e20]
                              1  ??? (MiHome + 16004784) [0x101bd36b0]
                                1  ??? (MiHome + 14043316) [0x1019f48b4]
                                  1  ??? (MiHome + 21226500) [0x1020ce404]
                                    1  ??? (MiHome + 21309616) [0x1020e28b0]

  Binary Images:
           0x100c90000 -                ???  com.xiaomi.mihome 4.22.1 (4.22.1.2)   /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
           0x1c28f6000 -        0x1c2932fff  libdispatch.dylib                     /usr/lib/system/libdispatch.dylib
           0x1c295b000 -        0x1c2965fff  libsystem_pthread.dylib               /usr/lib/system/libsystem_pthread.dylib
           0x1c2a46000 -        0x1c2a79fff  libdyld.dylib                       <0DC9A4BA-C3E8-3487-99DB-1B5C86597AF5>  /usr/lib/system/libdyld.dylib
           0x1c2b1f000 -        0x1c2e9cfff  CoreFoundation                      <97285ACB-7B21-393A-ABF6-03F1DBB5D2A2>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x1c62b7000 -        0x1c73b6fff  UIKitCore                           <55D60569-DBB7-3BC9-8A97-DCAC95C64D4B>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x1c95d9000 -        0x1c982ffff  QuartzCore                          <68E87E8E-7275-3847-B0E5-7936442B19FC>  /System/Library/Frameworks/QuartzCore.framework/QuartzCore
           0x1c99ee000 -        0x1c9f61fff  CoreGraphics                          /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
           0x1ccd2e000 -        0x1ccd36fff  GraphicsServices                    <76220592-3BB4-354A-947F-8D3C1682CD5F>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServicesDate/Time:        2019-10-26 09:07:27 +0900
End time:         2019-10-26 09:08:25 +0900
OS Version:       iPhone OS 13.1.3 (Build 17A878)
Architecture:     arm64e
Report Version:   29
Incident Identifier: 4B077A34-415A-43CE-8038-DDBC39B8C99B

Data Source:      Microstackshots
Shared Cache:     0x1d50000 EB6D17E0-913A-3787-8A6C-95AC8AF05D40

Command:          MiHome
Path:             /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
Identifier:       com.xiaomi.mihome
Version:          4.22.1 (4.22.1.2)
Beta Identifier:  7A349A31-75DF-4B1A-91D5-CD50A47F8B52
PID:              2874

Event:            wakeups
Action taken:     none
Wakeups:          45001 wakeups over the last 58 seconds (771 wakeups per second average), exceeding limit of 150 wakeups per second over 300 seconds
Wakeups limit:    45000
Limit duration:   300s
Wakeups caused:   45001
Wakeups duration: 58s
Duration:         58.38s
Duration Sampled: 12.05s
Steps:            7

Hardware model:   iPhone11,8
Active cpus:      6


Heaviest stack for the target process:
  3  ??? (libsystem_pthread.dylib + 7516) [0x181ebcd5c]
  1  ??? (libsystem_kernel.dylib + 156032) [0x181f9d180]


Powerstats for:   MiHome [2874]
Bundle ID:        com.xiaomi.mihome
Adam ID:          957323480
Is first party:   No
App version:      4.22.1
Build version:    4.22.1.2
Is Beta:          No
Share with Devs:  No
UUID:             C2F6B942-B443-31A0-A449-2B1512BD85FF
Path:             /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
Architecture:     arm64
Footprint:        117.39 MB
Start time:       2019-10-26 09:08:11 +0900
End time:         2019-10-26 09:08:23 +0900
Num samples:      7 (100%)
CPU Time:         0.643s
Primary state:    2 samples Frontmost App, Non-Suppressed, User mode, Effective Thread QoS User Interactive, Requested Thread QoS User Interactive, Override Thread QoS Unspecified
User Activity:    0 samples Idle, 0 samples Active, 7 samples Unknown
Power Source:     0 samples on Battery, 0 samples on AC, 7 samples Unknown
  3  ??? (libsystem_pthread.dylib + 7516) [0x181ebcd5c]
    1  ??? (libAudioToolboxUtility.dylib + 63528) [0x18d57d828]
      1  ??? (AudioToolbox + 1571304) [0x18d4c09e8]
        1  ??? (CoreFoundation + 688280) [0x182127098]
          1  ??? (CoreFoundation + 691232) [0x182127c20]
            1  ??? (CoreFoundation + 712680) [0x18212cfe8]
              1  ??? (CoreFoundation + 715036) [0x18212d91c]
                1  ??? (libAudioToolboxUtility.dylib + 71364) [0x18d57f6c4]
                  1  ??? (AudioToolbox + 1865280) [0x18d508640]
                    1  ??? (AudioToolbox + 1563792) [0x18d4bec90]
                      1  ??? (libsystem_kernel.dylib + 15300) [0x181f7abc4]
                        1  
    1  ??? (libsystem_kernel.dylib + 156032) [0x181f9d180]
      1  
    1  ??? (MiHome + 8356256) [0x1051d01a0]
      1  ??? (libsystem_kernel.dylib + 155712) [0x181f9d040]
        1  
  2  ??? (libdyld.dylib + 3888) [0x181fa6f30]
    2  ??? (MiHome + 7364852) [0x1050de0f4]
      2  ??? (UIKitCore + 10684332) [0x1862477ac]
        2  ??? (GraphicsServices + 13620) [0x18c291534]
          2  ??? (CoreFoundation + 688280) [0x182127098]
            2  ??? (CoreFoundation + 691232) [0x182127c20]
              2  ??? (CoreFoundation + 712680) [0x18212cfe8]
                2  ??? (CoreFoundation + 715036) [0x18212d91c]
                  2  ??? (CoreFoundation + 540468) [0x182102f34]
                    1  ??? (QuartzCore + 920880) [0x188c19d30]
                      1  ??? (QuartzCore + 74556) [0x188b4b33c]
                        1  ??? (QuartzCore + 887768) [0x188c11bd8]
                          1  ??? (QuartzCore + 714268) [0x188be761c]
                            1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                              1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                  1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                    1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                      1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                        1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                          1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                            1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                              1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                                1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                                  1  ??? (QuartzCore + 1478888) [0x188ca20e8]
                                                    1  ??? (QuartzCore + 1479020) [0x188ca216c]
                                                      1  ??? (QuartzCore + 717520) [0x188be82d0]
                                                        1  ??? (QuartzCore + 1744248) [0x188ce2d78]
                                                          1  ??? (QuartzCore + 1157464) [0x188c53958]
                                                            1  ??? (CoreGraphics + 2701316) [0x1891e1804]
                                                              1  ??? (CoreGraphics + 2014832) [0x189139e70]
                                                                1  ??? (CoreGraphics + 2701512) [0x1891e18c8]
                    1  ??? (QuartzCore + 76280) [0x188b4b9f8]
  1  ??? (libsystem_pthread.dylib + 15064) [0x181ebead8]
    1  ??? (libdispatch.dylib + 75636) [0x181e68774]
      1  ??? (libdispatch.dylib + 121604) [0x181e73b04]
        1  ??? (libdispatch.dylib + 91920) [0x181e6c710]
          1  ??? (libdispatch.dylib + 47480) [0x181e61978]
            1  ??? (libdispatch.dylib + 61076) [0x181e64e94]
              1  ??? (libdispatch.dylib + 57204) [0x181e63f74]
                1  ??? (libdispatch.dylib + 199956) [0x181e86d14]
                  1  ??? (libsystem_kernel.dylib + 15300) [0x181f7abc4]
                    1  
  1  ??? (libsystem_pthread.dylib + 15008) [0x181ebeaa0]
    1  ??? (libdispatch.dylib + 77600) [0x181e68f20]
      1  ??? (libdispatch.dylib + 40624) [0x181e5feb0]
        1  ??? (libdispatch.dylib + 38020) [0x181e5f484]
          1  ??? (libdispatch.dylib + 12300) [0x181e5900c]
            1  ??? (GLEngine + 442888) [0x19c874208]
              1  ??? (GLEngine + 826708) [0x19c8d1d54]
                1  ??? (GLEngine + 826980) [0x19c8d1e64]
                  1  ??? (QuartzCore + 916668) [0x188c18cbc]
                    1  ??? (QuartzCore + 1584840) [0x188cbbec8]
                      1  ??? (QuartzCore + 1583964) [0x188cbbb5c]
                        1  ??? (libsystem_kernel.dylib + 15300) [0x181f7abc4]
                          1  

  Binary Images:
           0x1049d8000 -                ???  com.xiaomi.mihome 4.22.1 (4.22.1.2)   /private/var/containers/Bundle/Application/9BD4E471-ACC9-488B-A6F7-D760DB2879F9/MiHome.app/MiHome
           0x181e56000 -        0x181e92fff  libdispatch.dylib                     /usr/lib/system/libdispatch.dylib
           0x181ebb000 -        0x181ec5fff  libsystem_pthread.dylib               /usr/lib/system/libsystem_pthread.dylib
           0x181f77000 -        0x181fa5fff  libsystem_kernel.dylib                /usr/lib/system/libsystem_kernel.dylib
           0x181fa6000 -        0x181fd9fff  libdyld.dylib                       <0DC9A4BA-C3E8-3487-99DB-1B5C86597AF5>  /usr/lib/system/libdyld.dylib
           0x18207f000 -        0x1823fcfff  CoreFoundation                      <97285ACB-7B21-393A-ABF6-03F1DBB5D2A2>  /System/Library/Frameworks/CoreFoundation.framework/CoreFoundation
           0x185817000 -        0x186916fff  UIKitCore                           <55D60569-DBB7-3BC9-8A97-DCAC95C64D4B>  /System/Library/PrivateFrameworks/UIKitCore.framework/UIKitCore
           0x188b39000 -        0x188d8ffff  QuartzCore                          <68E87E8E-7275-3847-B0E5-7936442B19FC>  /System/Library/Frameworks/QuartzCore.framework/QuartzCore
           0x188f4e000 -        0x1894c1fff  CoreGraphics                          /System/Library/Frameworks/CoreGraphics.framework/CoreGraphics
           0x18c28e000 -        0x18c296fff  GraphicsServices                    <76220592-3BB4-354A-947F-8D3C1682CD5F>  /System/Library/PrivateFrameworks/GraphicsServices.framework/GraphicsServices
           0x18d341000 -        0x18d56dfff  AudioToolbox                          /System/Library/Frameworks/AudioToolbox.framework/AudioToolbox
           0x18d56e000 -        0x18d5a3fff  libAudioToolboxUtility.dylib        <379BE4B3-915C-3BC1-8E95-FD62EE6916DB>  /usr/lib/libAudioToolboxUtility.dylib
           0x19c808000 -        0x19c8d7fff  GLEngine                            <45072627-9356-32D2-971C-20790F5A04B4>  /System/Library/Frameworks/OpenGLES.framework/GLEngine.bundle/GLEngine


'Blog History' 카테고리의 다른 글

아이폰 개발자가 추천하는 지하철 앱  (0) 2020.03.15
114  (0) 2020.03.15
112  (0) 2020.03.13
111  (0) 2020.03.13
110  (0) 2020.03.13

2020-03-19 10:23:10.2041350900 MBASS[2031:210011] selectDfct:(DDTBT_DFCT *) query: select a.cd_dong                            ,a.nohs                            ,a.cd_loc_clsf                            ,a.id_loc                            ,a.id_rgon                            ,a.id_dfct_ctyp                            ,a.id_dfct_type                            ,a.id_dfct_caus                            ,a.id_dfct_cl                            ,a.dfct_cnts                            ,ifnull(a.id_wrk_fmer_pic_atch_file,'') as id_wrk_fmer_pic_atch_file                            ,ifnull(a.id_wrk_aftr_pic_atch_file,'') as id_wrk_aftr_pic_atch_file                            ,a.yn_re_clsf_rqst                            ,b.cd_tppg                            ,ifnull(c.nm_dfct_ctyp,'') as nm_dfct_ctyp                            ,ifnull(d.nm_dfct_caus,'') as nm_dfct_caus                            ,ifnull(e.nm_dfct_cl,'') as nm_dfct_cl                            ,a.mode                            ,a.cd_hndl_stat                            ,ifnull(f.nm_loc,'') as nm_loc                            ,ifnull(g.nm_rgon,'') as nm_rgon                            ,ifnull(h.nm_dfct_type,'') as nm_dfct_type                            ,a.yn_svr_trsm                            ,i.nm_dong                            ,ifnull(cd_re_rcpt_resn,'')                            ,ifnull(nm_re_rcpt_resn,'')                            ,a.cd_cpny                            ,a.seq_nipt                            from ddtbt_dfct a                            inner join ddtbt_hosh b on b.cd_dong=a.cd_dong and b.nohs=a.nohs                            left outer join ddtbt_rgon_dfct_ctyp c on c.id_rgon=a.id_rgon                            left outer join ddtbt_dfct_caus d on d.id_dfct_caus=a.id_dfct_caus                            left outer join ddtbt_dfct_cl e on e.id_dfct_cl=a.id_dfct_cl                            left outer join ddtbt_site_tppg_loc f on f.cd_tppg=b.cd_tppg and f.id_loc=a.id_loc                            left outer join ddtbt_site_loc_rgon g on g.id_loc=a.id_loc and g.id_rgon=a.id_rgon                            left outer join ddtbt_rgon_dfct_type h on h.id_rgon=a.id_rgon and h.id_dfct_type=a.id_dfct_type                            left outer join ddtbt_dong i on i.cd_dong=a.cd_dong                            where a.id_mbil=18;
2020-03-19 10:23:10.2096410900 MBASS[2031:210011] [logging] no such column: nm_dfct_type in select nm_dfct_type                            from ddtbt_rgon_dfct_ctyp                            where  id_dfct_ctyp=12                            order by nm_dfct_type DESC;
2020-03-19 10:23:10.2130280900 MBASS[2031:210011] 하자내용재접수사유 :   

       //UILabel* label = [[UILabel alloc] initWithFrame:self.bounds];
        //label.autoresizingMask = UIViewAutoresizingFlexibleWidth | UIViewAutoresizingFlexibleRightMargin;
        //label.lineBreakMode = NSLineBreakByTruncatingTail;
        //[self addSubview: label];
        //self.label = label;


2020-03-19 10:23:10.2133820900 MBASS[2031:210011] selectSiteTppgLoc_SqlUtils.m
2020-03-19 10:23:10.2154420900 MBASS[2031:210011] superSelectSiteLocRgon
2020-03-19 10:23:10.2192890900 MBASS[2031:210011] BsQtChkEdtg2902397516057523
select a.id_mbil                            ,a.cd_dong                            ,a.nohs                            ,c.nm_loc                            ,d.nm_rgon                            ,e.nm_dfct_type                            ,a.dfct_cnts                            ,a.cd_hndl_stat                            ,a.yn_re_clsf_rqst                            ,a.id_wrk_fmer_pic_atch_file                            ,a.id_wrk_aftr_pic_atch_file                            ,f.nm_dong                            ,a.dnt_rgst                            ,a.id_rgon                           ,a.cd_cpny                           from ddtbt_dfct a                            inner join ddtbt_hosh b on b.cd_dong=a.cd_dong and b.nohs=a.nohs                            inner join ddtbt_site_tppg_loc c on c.cd_tppg=b.cd_tppg and c.id_loc=a.id_loc                            inner join ddtbt_site_loc_rgon d on d.id_loc=a.id_loc and d.id_rgon=a.id_rgon                            inner join ddtbt_rgon_dfct_type e on e.id_rgon=a.id_rgon and e.id_dfct_type=a.id_dfct_type                            inner join ddtbt_dong f on f.cd_dong=a.cd_dong                            where a.cd_dong like '%' and a.nohs like '%' and a.yn_re_clsf_rqst like '%'                            and a.mode='U'                            and a.yn_svr_trsm<>'Y'                            and a.cd_hndl_stat like '%'                                     order by a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon;

 

 

Top 10 Monty Python's Flying Circus Moments


https://namu.wiki/w/%EB%AA%AC%ED%8B%B0%20%ED%8C%8C%EC%9D%B4%EC%84%A0


정보 폐쇄의 증거 사라지고 있네.
https://www.youtube.com/watch?v=MYK1ujdrbiQ
https://www.youtube.com/watch?v=OWcpklDPCqI




"아름다운게 추한 것보다 낫다." (Beautiful is better than ugly)
"명시적인 것이 암시적인 것 보다 낫다." (Explicit is better than implicit)
"단순함이 복잡함보다 낫다." (Simple is better than complex)
"복잡함이 난해한 것보다 낫다." (Complex is better than complicated)
"가독성은 중요하다." (Readability counts)

DDTBT_DFCT.ID_DFCT_CL = 10

//NSMutableDictionary *dic = [[NSMutableDictionary alloc] initWithCapacity:0];
    //[db selectHosh:dic withDongCd:mDongCd nohs:mNohs];

 static NSString *CellIdentifier_dong = @"CellHoshCd_dong";
    static NSString *CellIdentifier_flor = @"CellHoshCd_flor";
    static NSString *CellIdentifier_hosh = @"CellHoshCd_hosh";
  cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier_dong];

 cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier_dong];
o

static NSString *CellIdentifier = @"CheckInspectionCell";
UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];

cell = [[UITableViewCell alloc] initWithStyle:UITableViewCellStyleDefault reuseIdentifier:CellIdentifier];
        
    if( cell != nil)
        for(int i=0; i<=[cell.contentView.subviews count];i++)
            if([cell.contentView.subviews objectAtIndex:i] != nil)
                [[cell.contentView.subviews objectAtIndex:i] removeFromSuperview];
        //        UIButton *img = [cell.contentView.subviews objectAtIndex:1];
        //        if (YES == [data.cd_hndl_stat isEqualToString:@"E"]) {
        //            [img setBackgroundImage:[UIImage imageNamed:@"icon04.png"] forState:UIControlStateDisabled];
        //            [img setTitle:@"처리" forState:UIControlStateDisabled];
        //            [img setTitleColor:[UIColor whiteColor] forState:UIControlStateDisabled];
        //
        //        }
        //        else if (YES == [data.cd_hndl_stat isEqualToString:@"B"]) {
        //            [img setBackgroundImage:[UIImage imageNamed:@"icon03.png"] forState:UIControlStateDisabled];
        //            [img setTitle:@"접수" forState:UIControlStateDisabled];
        //            [img setTitleColor:[UIColor whiteColor] forState:UIControlStateDisabled];
        //
        //        }
        //        else {
        //            [img setBackgroundImage:[UIImage imageNamed:@"icon05.png"] forState:UIControlStateDisabled];
        //            [img setTitle:@"완료" forState:UIControlStateDisabled];
        //            [img setTitleColor:[UIColor blackColor] forState:UIControlStateDisabled];
        //        }
        //

//                       [UIImage imageWithContentsOfFile:filePath];
//    myImage.image = [UIImage imageNamed:@"checkmaker64.png"];
//                    DDTBT_DFCT *another = [[DDTBT_DFCT alloc] init];
    //                    [self selectDfct:another byMbilId:data.id_mbil];

    //    [text drawAtPoint:CGPointMake(0, textrect.origin.y-20 ) forWidth:textrect.origin.x withFont:font lineBreakMode:0];

점검조회 접수 건 완료 처리 관련 수정 사항
 
 
현재 현상
‘접수’ -> ‘완료’ 처리 후 해당 건을 ‘완료취소’ 하면 ‘처리’로 바뀜
  - 기존에는 처리 항목만 완료 할수 있었고 완료취소 하면 무조건 ‘처리’로 돌아갔음
 
 
 
변경내용
Local  DDTBT_DFCT  Table  컬럼추가
    CD_STAT_PREV VARCHAR(20)    ‘이전상태값
 
점검조회 및 확검에서 ‘완료’ 처리 시 현재 상태(DDTBT_DFCT.CD_HNDL_STAT) 값을 새로운 컬럼 (DDTBT_DFCT.CD_STAT_PREV) 에 저장
‘완료취소’ 할 때 DDTBT_DFCT.CD_STAT_PREV 값으로 되돌림
 
 1. 점검조회 화면 공사진행상황 아이콘 표시 확인
 
2. 사진 Tag 작업 – Local 사진 첨부 할 때 사진 비율에 따라 Tag 깨짐 현상처리
 
3. 현장선택 및 변경 관련 Processor 확인 및 안정화
 
4. 메인메뉴 표시 상태에서 메인화면 작동안되게 처리

SELECT DISTINCT A.ID_DFCT_CTYP "+
      " ,A.NM_DFCT_CTYP "+
      " ,B.CD_CPNY "+
      " ,B.NM_CPNY "+
      " FROM "+LocalDatabaseManager.TABLE_NAME_DDTBT_RGON_DFCT_CTYP +" A "+
      " INNER JOIN "+LocalDatabaseManager.TABLE_NAME_DDTBT_CPNY_NOHS_QOTA+ " B "+
      " ON  B.ID_DFCT_CTYP = A.ID_DFCT_CTYP " +
      " AND B.CD_DONG  ='%s'" +
      " AND A.ID_DFCT_CTYP  ='%s'" +
      " ORDER BY ODER_MKAR "

'Blog History' 카테고리의 다른 글

114  (0) 2020.03.15
113  (0) 2020.03.13
111  (0) 2020.03.13
110  (0) 2020.03.13
109  (0) 2020.03.13

name 'load_img' is not defined

 

No module named 'cv2'

 

pip install opencv-python

 

/Users/soralee/.conda/envs/env01/bin/python "/Applications/PyCharm with Anaconda plugin .app/Contents/plugins/python/helpers/pydev/pydevconsole.py" --mode=client --port=55109
import sys; print('Python %s on %s' % (sys.version, sys.platform))
sys.path.extend(['/Users/soralee/PycharmProjects/hajunho'])
Python 3.7.6 (default, Jan  8 2020, 13:42:34) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.12.0 -- An enhanced Interactive Python. Type '?' for help.
PyDev console: using IPython 7.12.0
Python 3.7.6 (default, Jan  8 2020, 13:42:34) 
[Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
runfile('/Users/soralee/PycharmProjects/hajunho/dnc.py', wdir='/Users/soralee/PycharmProjects/hajunho')
Using TensorFlow backend.
channels_last
2020-03-13 05:25:29.845822: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
Model: "sequential_1"
_________________________________________________________________
Layer (type)                 Output Shape              Param #   
=================================================================
conv2d_1 (Conv2D)            (None, 148, 148, 32)      896       
_________________________________________________________________
activation_1 (Activation)    (None, 148, 148, 32)      0         
_________________________________________________________________
max_pooling2d_1 (MaxPooling2 (None, 74, 74, 32)        0         
_________________________________________________________________
conv2d_2 (Conv2D)            (None, 72, 72, 32)        9248      
_________________________________________________________________
activation_2 (Activation)    (None, 72, 72, 32)        0         
_________________________________________________________________
max_pooling2d_2 (MaxPooling2 (None, 36, 36, 32)        0         
_________________________________________________________________
conv2d_3 (Conv2D)            (None, 34, 34, 64)        18496     
_________________________________________________________________
activation_3 (Activation)    (None, 34, 34, 64)        0         
_________________________________________________________________
max_pooling2d_3 (MaxPooling2 (None, 17, 17, 64)        0         
_________________________________________________________________
flatten_1 (Flatten)          (None, 18496)             0         
_________________________________________________________________
dense_1 (Dense)              (None, 64)                1183808   
_________________________________________________________________
activation_4 (Activation)    (None, 64)                0         
_________________________________________________________________
dropout_1 (Dropout)          (None, 64)                0         
_________________________________________________________________
dense_2 (Dense)              (None, 1)                 65        
_________________________________________________________________
activation_5 (Activation)    (None, 1)                 0         
=================================================================
Total params: 1,212,513
Trainable params: 1,212,513
Non-trainable params: 0
_________________________________________________________________
Epoch 1/30

 

Online인 경우 확검자료 내려받은후 점검조회 화면에서 접수 내역 수정 및 전송(확검전송)을 통해 자료 전송

 

 

프로그램 수정 시 유의 사항

점검 자료 편집 후 DDBTB_DFCT Table 자료 저장 시

DNT_RGST                 -> VARCHAR(8)  ‘YYYYMMDD’ 형태로 저장 Ex) 20190129

DNT_CHG                  -> VARCHAR(8)  ‘YYYYMMDD’ 형태로 저장 Ex) 20190129

ID_DFCT_CTYP            -> 변경된 공종으로 저장

CD_CPNY                  -> 공백으로 처리

형태로 저장 해 주세요

 

 

'Blog History' 카테고리의 다른 글

113  (0) 2020.03.13
112  (0) 2020.03.13
110  (0) 2020.03.13
109  (0) 2020.03.13
108  (0) 2020.03.13

I hope to hear the new feature to include the TF lite version later on. Even some of them are to easy to know based on scarce resources. And hope the iOS version indiscriminate supporting.

 

 

 

soralee@soraui-MacBookAir 001 % kaggle competitions download -c dogs-vs-cats
403 - Forbidden
soralee@soraui-MacBookAir 001 % kaggle competitions list

 

You have accepted the rules for this competition. Good luck!

 

https://www.kaggle.com/tongpython/cat-and-dog

 

Cat and Dog

Cats and Dogs dataset to train a DL model

www.kaggle.com

By clicking on the "I understand and accept" button, you indicate that you agree to be bound with the rules outlined below.

I Understand and Accept

 

Dogs vs. Cats

Create an algorithm to distinguish dogs from cats

www.kaggle.com

 

To proceed, you must verify your

Kaggle account via your mobile phone.

After submitting your phone number, you'll receive an SMS text message for a code that you will enter on the next screen. You will only need to do this once. Do not use a public number or share your number with others.

Please Note: your phone number can only be linked to one account.
If another account is already verified with this phone number, your new account will be blocked from use. Please either continue using your existing account, or delete the existing account and link your phone number to a new account.

It's important to not use a public number or share your number with others.

Message and data rates may apply.

Country Code

Select...

 

Phone Number

 

Your account has been successfully verified. Treat it nice, it's your only one!

 

soralee@soraui-MacBookAir 001 % kaggle competitions download -c dogs-vs-cats
Downloading dogs-vs-cats.zip to /Users/soralee/PycharmProjects/kaggle/001
  5%|████▋

 

after download All It's good After pushing the download All button. 

'Blog History' 카테고리의 다른 글

112  (0) 2020.03.13
111  (0) 2020.03.13
109  (0) 2020.03.13
108  (0) 2020.03.13
107  (0) 2020.03.13

soralee@soraui-MacBookAir 001 % pip install kaggle
Collecting kaggle
  Downloading https://files.pythonhosted.org/packages/62/ab/bb20f9b9e24f9a6250f95a432f8d9a7d745f8d24039d7a5a6eaadb7783ba/kaggle-1.5.6.tar.gz (58kB)
     |████████████████████████████████| 61kB 206kB/s
Requirement already satisfied: urllib3<1.25,>=1.21.1 in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (1.24.2)
Requirement already satisfied: six>=1.10 in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (1.12.0)
Requirement already satisfied: certifi in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (2019.9.11)
Requirement already satisfied: python-dateutil in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (2.8.0)
Requirement already satisfied: requests in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (2.22.0)
Requirement already satisfied: tqdm in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from kaggle) (4.36.1)
Collecting python-slugify (from kaggle)
  Downloading https://files.pythonhosted.org/packages/92/5f/7b84a0bba8a0fdd50c046f8b57dcf179dc16237ad33446079b7c484de04c/python-slugify-4.0.0.tar.gz
Requirement already satisfied: idna<2.9,>=2.5 in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from requests->kaggle) (2.8)
Requirement already satisfied: chardet<3.1.0,>=3.0.2 in /Users/soralee/opt/anaconda3/lib/python3.7/site-packages (from requests->kaggle) (3.0.4)
Collecting text-unidecode>=1.3 (from python-slugify->kaggle)
  Downloading https://files.pythonhosted.org/packages/a6/a5/c0b6468d3824fe3fde30dbb5e1f687b291608f9473681bbf7dabbf5a87d7/text_unidecode-1.3-py2.py3-none-any.whl (78kB)
     |████████████████████████████████| 81kB 500kB/s
Building wheels for collected packages: kaggle, python-slugify
  Building wheel for kaggle (setup.py) ... done
  Created wheel for kaggle: filename=kaggle-1.5.6-cp37-none-any.whl size=72859 sha256=7beb83b47aefa93f62ea67652c66a61217fc8149348f06f5f393c15f34cf81b5
  Stored in directory: /Users/soralee/Library/Caches/pip/wheels/57/4e/e8/bb28d035162fb8f17f8ca5d42c3230e284c6aa565b42b72674
  Building wheel for python-slugify (setup.py) ... done
  Created wheel for python-slugify: filename=python_slugify-4.0.0-py2.py3-none-any.whl size=5487 sha256=91a9dc5003fd24abad8d654c56b0761f521443d070ee445ce219d2761ebdeb01
  Stored in directory: /Users/soralee/Library/Caches/pip/wheels/11/94/81/312969455540cb0e6a773e5d68a73c14128bfdfd4a7969bb4f
Successfully built kaggle python-slugify
Installing collected packages: text-unidecode, python-slugify, kaggle
Successfully installed kaggle-1.5.6 python-slugify-4.0.0 text-unidecode-1.3
soralee@soraui-MacBookAir 001 % kaggle

 

SError: Could not find kaggle.js

불러오는 중입니다...

 

API

Using Kaggle's beta API, you can interact with Competitions and Datasets to download data, make submissions, and more via the command line. Read the docs

Create New API    

'Blog History' 카테고리의 다른 글

111  (0) 2020.03.13
110  (0) 2020.03.13
108  (0) 2020.03.13
107  (0) 2020.03.13
106  (0) 2020.03.11

1

6.24~28

(5)

□ C언어

- Embedded C 언어 기본

지필 평가실습결과 평가

하준호 CTO

(소라소프트)

 

5

7.22~26

(5, 9:00~16:00)

□ Board(라즈베리파이III 보드) Data sheet 회로도 이해

- ARM CortexA, Instruction set 설명

□ FW project # 1(부트로더 없이 기본 HW 입출력 응용 실습)

보드 레벨 Firmware 소스 코딩

- UART, I2C, USB, Bluetooth 활용 FW 설계

제공된 board 기본 소스코드를 제거하고 교육생이 직접 코딩 설계 지도

오실로스코프를 활용한 보드 회로 점검

하준호 CTO

(소라소프트)

 

7.23~26

(16:00~18:00)

□ 프로젝트 관리 이론

소프트웨어 공학요구사항 정의설계

박성천 책임

(ETRI)

 

7.26

(16:00~18:00)

□ 직장인 예절 교육

박장현 책임

(ETRI)

6

7.29~8.02

(5)

Showing Recent Messages

:-1: Build input file cannot be found: '/Users/junhoha/github/DONE_BEST/Legend-Wings/Angelica Fighti/Resources/Images/FX/fx_3.png'

 

 

□ 리눅스 project #2(부트로더 소스분석과 커스터마이징 설계)

- OS포팅 기본 이론, Make

부트로더(U-boot 구조와 소스코드 구성 분석

부트로더 내의 UART, I2C, USB, Bluetooth  디바이스 Bare-metal 소스 코드 분석 입출력 실습

부트로더 내의 UART, USB 코드 커스터마이징 설계/탑재/구동 실습

- Device Tree text 편집

□ 설계 실습 평가

하준호 CTO

(소라소프트)

7

8.05~09

(5)

□ 리눅스 project #3(우분투 리눅스 커널 컴파일 보드 포팅)

보드 상의 특정하는 하드웨어에 대한 리눅스 디바이스 드라이버 코딩/컴파일/포팅 실습(UART, USB, Bluetooth )

우분투 리눅스 커널 컴파일 포팅(Zimage, Rootfs 제작 포팅)

□ 설계 실습 평가

하준호 CTO

(소라소프트)

 

8.09

 

Showing Recent Messages

:-1: Build input file cannot be found: '/Users/junhoha/github/DONE_BEST/Legend-Wings/Angelica Fighti/Resources/Images/FX/fx_3.png'

 

(3시간)

□ 면접 발표 스킬

신소연 스피치소장

(위드HRD)

정그린 커리어소장

(위드HRD)

박성천 책임

(ETRI)

 

8.07

(16:00~18:00)

□ SoC설계 방법과 절차

노예철 실장

(ETRI)

8

8.12~16

(5)

□ 리눅스 project #4

- QT Programming, MFC, UI, Adroid

이기종 연결 Protocol 분석설계적용

교육생 프로젝트 계획요구사항 정의서 상세설계서 작성

□ 설계 실습 평가

- (1) IoT 프로젝트 : Serial port, BLE, MFC-Android UI, QT

- (2) Thingsboard.io, 100% open source, MQTT, CoAP, HTTP-라즈베리파이 보드 GPIO, Sensor <-> 플랫폼 연동

하준호 CTO

(소라소프트)

 

8.12~16(5)

(16:00~19:00)

□ 개인별 이력서 첨삭 진로 상담

박성천 책임

(ETRI)

9

8.19~23

(5)

□ AI project

딥러닝 소개  python 개론/Tensor Flow, Keras 개론/기본 Machine learning

· (과제) Tensor Flow 이용 Machine learning 기법 구현

- Linear regression 신경망 이론/딥러닝 실습(ReLu, DropOut, Batch normalization )

· (과제딥러닝 regression & classification

* GPU 서버활용 실습

□ AI project

딥러닝기반 영상처리(opencv 포함)/CNN 모델 저장 불러오기

· (과제입력 영상(streaming) 이용 AI Classification

- Custom data 실습/transfer learning/fine tuning 프로젝트 소개

· (과제) custom data classification AI 프로젝트

보드 임베딩 AI 실습 (CNN 모델들 응용 data augmentation/RNN&LSTM)

· (과제시계열 데이터 활용 AI 예측

보드 활용 실습

장동원 박사

(ETRI)

10

8.26~8.29

(4)

□ 최종 Project 완료 평가

교육생별 응용 프로그래밍 최종 정리

상용 제품 개발 프로세스 실무 협업 교육

- FirmWare 용어정리 개념

프로젝트 발표회(8/29)

□ Job-Fair

하준호 CTO

(소라소프트)

 

8.30

(1)

□ Program 테스트 기법 신뢰성

작성 코드를 소스로 테스트 프로그램 검증

□ 소스코드 정적 분석 활용 교육

코드 인스펙터 사용자 교육

김준 대표

(슈어소프트)

 

8.26~8.28

(3)

(16:00~19:00)

□ 개인별 발표 평가 자료 작성 발표 기법

박성천 책임

(ETRI)

 

from keras.preprocessing.image import ImageDataGenerator

 

datagen = ImageDataGenerator(

        rotation_range=40,

        width_shift_range=0.2,

        height_shift_range=0.2,

        rescale=1./255,

        shear_range=0.2,

        zoom_range=0.2,

        horizontal_flip=True,

        fill_mode='nearest')

 

 

soralee@soraui-MacBookAir anaconda3 % conda install ImageDataGenerator

Collecting package metadata (current_repodata.json): done

Solving environment: failed with initial frozen solve. Retrying with flexible solve.

Collecting package metadata (repodata.json): done

Solving environment: failed with initial frozen solve. Retrying with flexible solve.

 

PackagesNotFoundError: The following packages are not available from current channels:

 

  - imagedatagenerator

 

Current channels:

 

  - https://repo.anaconda.com/pkgs/main/osx-64

  - https://repo.anaconda.com/pkgs/main/noarch

  - https://repo.anaconda.com/pkgs/r/osx-64

  - https://repo.anaconda.com/pkgs/r/noarch

 

To search for alternate channels that may provide the conda package you're

looking for, navigate to

 

    https://anaconda.org

 

and use the search bar at the top of the page.

 

conda install -c conda-forge keras-preprocessing

 

Collecting package metadata (current_repodata.json): done

Solving environment: done

 

 

==> WARNING: A newer version of conda exists. <==

  current version: 4.7.12

  latest version: 4.8.2

 

Please update conda by running

 

    $ conda update -n base -c defaults conda

 

 

 

## Package Plan ##

 

  environment location: /Users/soralee/opt/anaconda3

 

  added / updated specs:

    - keras-preprocessing

 

 

The following packages will be downloaded:

 

    package                    |            build

    ---------------------------|-----------------

    conda-4.8.2                |           py37_0         3.0 MB  conda-forge

    keras-preprocessing-1.1.0  |             py_0          33 KB  conda-forge

    ------------------------------------------------------------

                                           Total:         3.1 MB

 

The following NEW packages will be INSTALLED:

 

  keras-preprocessi~ conda-forge/noarch::keras-preprocessing-1.1.0-py_0

 

The following packages will be UPDATED:

 

  conda                      pkgs/main::conda-4.7.12-py37_0 --> conda-forge::conda-4.8.2-py37_0

 

 

Proceed ([y]/n)? y

 

conda-4.8.2          | 3.0 MB    | ##################################### | 100%

keras-preprocessing- | 33 KB     | ##################################### | 100%

Preparing transaction: done

Verifying transaction: done

Executing transaction: done

 

soralee@soraui-MacBookAir anaconda3 % conda install -c conda-forge/label/gcc7 keras-preprocessing

Collecting package metadata (current_repodata.json): done

Solving environment: done

 

## Package Plan ##

 

  environment location: /Users/soralee/opt/anaconda3

 

  added / updated specs:

    - keras-preprocessing

 

 

The following packages will be UPDATED:

 

  keras-preprocessi~ conda-forge::keras-preprocessing-1.1.~ --> pkgs/main::keras-preprocessing-1.1.0-py_1

 

 

Proceed ([y]/n)? y

 

Preparing transaction: done

Verifying transaction: done

Executing transaction: done

 

'Blog History' 카테고리의 다른 글

110  (0) 2020.03.13
109  (0) 2020.03.13
107  (0) 2020.03.13
106  (0) 2020.03.11
105  (0) 2020.03.11

echo "export PATH=\$PATH:$(pwd)" >> ~/.bashrc

echo "export PATH=\$PATH:$(pwd)" >> ~/.zshrc

 

 

회귀 모델은 연속적인 값을 예측합니다. 예를 들어 회귀 모델은 다음과 같은 질문에 대한 답을 예측합니다.

  • 캘리포니아의 주택 가격이 얼마인가요?
  • 사용자가 이 광고를 클릭할 확률이 얼마인가요?

분류 모델은 불연속적인 값을 예측합니다. 예를 들어 분류 모델은 다음과 같은 질문에 대한 답을 예측합니다.

  • 주어진 이메일 메시지가 스팸인가요, 스팸이 아닌가요?
  • 이미지가 강아지, 고양이 또는 햄스터의 이미지인가요?

분류가 예측이라는 것은 일상 생활에서도 적용할 수 있다.

생각 자체가 틀렸을 수도 있다는 확률을 내포해야 함.

 

힌양대역 3번출구 공대 뒤쪽 FTC센터 - 3번 출구로 가면 망함...

 

parallels

주문해주셔서 감사합니다!

확인 이메일이 mynameis@hajunho.com으로 발송되었습니다.

저희로부터 이메일을 받지 못하신 경우 스팸, 벌크, 정크 메일 폴더를 확인하세요.

cleverbridge 참조번호

204076707

가장 신속하고 효율적인 서비스를 위해 저희에게 문의하실 항상 고객님의 참조번호를 알려주시기 바랍니다.

 

 

 

Memo's 나도 오랜 게이머지만 게임 하는 애들 대부분 쓰레기 맞다. 목소리가.. 누가 들어도 초딩인 유저가 게임 들어왔는데 못한다고 쌍욕. 그걸 본 초딩이 욕은 모르고 마이크로 그래도 최선을 다했다고 함. 일상 다반사다. 저런 애들한테 맞 욕하면 계정 정지에 잘리곸ㅋㅋ. 그 외 수 많은 이유가 있다. 게임 하는 애들 과반수는 쓰레기 맞다. 80%이상은 쓰레기거나 혹은, 방관자거나 어차피 사이버 세상이니. 내가 게임 만들고 게이머라서 팩트를 더 확실히 전달 할 수 있어 좋네. 물론 쓰레기 차단하고, 괜찮은 사람만 만나면 되는데 그러나 실 만남으로 갔을 때 돈 빌리고 안 갚은 애들도 여럿이랔ㅋㅋㅋ 그래도 해외 게임이라 한국 게임처럼 19금 걸지도 않고, 여자 다 벗겨 놓는 짓은 안해서 조금 낫다. 오히려 그 반대일지돜ㅋㅋ 

 

 

[YES24 북클럽] 하준호님, YES24 북클럽 1년(365일) 이용권 (크레마) 구매가 완료되었습니다. 구매하신 이용권은 등록 후 사용 가능합니다.

 

▶ 이용권 번호 :

C0B720220J824

 

 

재미있는 일화가 있다. *** 대표라고 사람들 많은데서 뒤통수를 세게 인간이다. 최근 100 투자 받아서 어디서 먹고 있다가 생각이 났는지 전화해서 벌어 먹고 사는지 걱정이라더라. ****** ***** 일했던 명만 모아도 증언자가 차고 넘칠 것이다. 내가 가족이 있고 *** 밑에 비슷한 SK 있어 나한테 쌍욕하는 것을 똑같이 갚아두려고 칼로 위협한 적이 있는데 꿇리기 싫었는지 지가 사람 죽인 있다고 하고 팔씨름 잘하는 영상 감독 나한테 붙였는데 내가 이겼다. 나중에 지치니까 팔씨름 하재서 해서 내가 졌는데 최근 전화해서 쌍욕하니까 녹음 했다면서 쪽팔리기 법망 이야기 한다. ** 대교에서 노조위원장 해서 아는 놈이 직원 많이 괴롭히다가 진짜 죽는다. 그리고 너희 회사 감사 받는데 내가 받은 180만원이 나오냐. 더러운 모습 보고 옆에 붙어있을 의과 대학 교수가 몇이나 되겠냐. 받아 먹고 논문 써주는 것도 한계가 있지 ㅋㅋ. 그리고 내가 뽑은게 비단 ***** 뿐이겠냐. 그림의 일부인데. 그리고 아니라 처단할 SK 많다. 

 

 

POISONING THE WELL : 어떤 특정 주장에 대한 반론이 일어날 수 있는 유일한 원천(우물)을 비판(독을 뿌림)하면서 반박 자체를 불가능하게 만들어 자신의 주장을 옹호하고자 하는 불공정한 전략. 이 채널은 원천봉쇄, 우물에 독 뿌리는 오류를 범하지 않기 위해 성격이 바뀌었습니다.

예문) 영세상인 보호를 위해 대형마트 영업 시간 제한 및 의무 휴무제는 반드시 시행해야 한다. 이 말에 이의를 제기하는 사람은 영세 상인을 죽이고 대형마트 배를 불려주자는 사람이다.

예문) 여기에 반대하는 놈은 다 빨갱이다, 여기에 찬성하는 놈은 다 정부의 알바다.

예문) 주사파라는 증거가 어디 있냐구요? 증거 묻는 사람이 바로 주사파입니다.

예문) 님들만이 정의고 진리이죠? 사고 방식이 어리시네요. 세상을 넓게 보시기 바랍니다.

예문) 페미니즘을 비판하는 사람들은 모두 가부장제를 공고히하려는 여성혐오자들이다.

예문) 히딩크가 오는 걸 반대해? 너는 축협 댓글알바인 게 분명하다.

예문) 나에게 악플 단 놈들은 중졸 학력, 기레기, 맛알못이다.

예문) 남성을 옹호하는 것 자체가 여성에 대한 2차 가해다.

예문) 외모지상주의를 비판하면 필시 사회에 불만이 많은 쿵쾅이일 것이다.

예문) 인종간에 우열이 없다고 주장하는 사람은 정치적 올바름을 신봉하는 사람이다.

예문) 일본 애니메이션은 침략국인 일본에서 만들어졌기 때문에 그것을 보아서는 안 된다.

예문) 넌 태생이 일본이잖아. 네가 하는 말은 다 틀렸어.

예문) 넌 범죄자 잖아. 니가 본 사실은 모두 사실이 아니야.

 

개인 블로그 : https://ioswift.tistory.com/

 

 

 

'Blog History' 카테고리의 다른 글

109  (0) 2020.03.13
108  (0) 2020.03.13
106  (0) 2020.03.11
105  (0) 2020.03.11
104  (0) 2020.03.09

2020-03-11 10:55:50.371520+0900 MBASS[7366:1592767] GlobalVar.globalVar.currSite_nmphs  local info
2020-03-11 10:55:50.413450+0900 MBASS[7366:1592767] [TableView] Warning once only: UITableView was told to layout its visible cells and other contents without being in the view hierarchy (the table view or one of its superviews has not been added to a window). This may cause bugs by forcing views inside the table view to load and perform layout without accurate information (e.g. table view bounds, trait collection, layout margins, safe area insets, etc), and will also cause unnecessary performance overhead due to extra layout passes. Make a symbolic breakpoint at UITableViewAlertForLayoutOutsideViewHierarchy to catch this in the debugger and see what caused this to occur, so you can avoid this action altogether if possible, or defer it until the table view has been added to a window. Table view: ; layer = ; contentOffset: {0, 0}; contentSize: {288, 312.5}; adjustedContentInset: {0, 0, 0, 0}; dataSource: >



대기업 프로젝트 팀에 있는데 최근 프리랜싱 개발자 한 분이 정말 일을 많이 하시고도 일을 그만 두셨고,

다른 프리랜싱 개발자분은 이 개발을 떠나시겠다고 하시며, 퇴사를 하셨습니다.

 

전자는 PM이 그 분이 안드로이드 및 서버까지 하시는 줄 몰라서 막 푸시를 한 이유였고,

실력 없다고 주변에 말하고 다니다가 새로 오신 분이 서버는 못하겠다고 해서 일정이 계속 지체되고

주변에서도 그 분 평판이 좋았다는 것을 알자, 그 분이 잘하는 분이었다고 말을 바꾼 상황입니다.

떠난 분 나이는 50대

 

후자는 iOS가 메탈로 바뀐지 몰라서(그 분은 안드로이드 개발자) 3D로 안드로이드 개발은 다 했는데,

결국 개발 일정이 밀렸습니다. 당연히 PM, PL은 몰랐고 그 팀에 iOS 개발자는 늦게 왔어요. iOS 개발자와

커뮤니케이션 하다 그 쪽 팀 사람들과 친해졌는데 그 분은 메탈로 모두 구현하셔서 마무리 하시며

OpenGL보다 메탈이 낫다고 하셨습니다. 이제 이 필드 이제 진저리 나고 나도 은퇴할 때 되었다며,

아예 개발을 관두신다며 퇴사하셨습니다. 나이는 이제 곧 60이 되시는.

 

어제 그 PM에게 말했습니다. 2명 퇴사하게 만들었는데 갑의 입장에서 직급으로 사람 찍어 누르지 말라고.

주변 증인도 3명 있어서, 나중에 이 글이 검증을 받기도 좋겠네요.

 

그래서 이 글을 씁니다.

 

뉴스 기자 분들이 파급력을 고려해서 진실도 타이밍을 맞춰서 보도 하는 것을 보고 정말 싫어했었는데,

6년이 지나서야 파급력이 왜 생기는지 왜 필요한지 알게 되었습니다.  그래서 최근 3개월 정도 ~억 ~억 

이라고 말하는 행동을 취하게 되었고, 오늘부터는 확실히 그렇게 해야 겠다는 생각이 들었습니다.

왜에 대한 모든 답을 할 수는 없지만 뭉뜽그려 말하면,

회사에서, 조용한 카페에서, 집에서 TV를 보면서도 생각을 하고 공부를 즐기시는 분들은 조용한데,

밖은 너무 시끄러운 세상이기 때문입니다. 저는 그렇게 생각하고 느껴서 자주 헤드폰을 쓰게 됩니다.

 

그리고 이건 뇌피셜입니다. iOS 개발자들은 대부분 영문으로 뭔가를  하기에 조용한 것 같고, 

어설픈 외국물 먹은 기획자 혹은 포주(격한 표현 ㅈㅅ)들이 마치 자기가 처음인냥 ... (오지지널스 안 봤는지...) 

그리고 그게 무슨 대단한 권력이라고 생각하는지 개발 일정을 어떻게든 줄이는 것에 분노하게 됩니다.

그러면 직접 개발하면 되지 소통 채널의 중심이 되지 정상적 커뮤니케이션을 넘어 개발 영역을 어이없게

침범하니 개발자 워라벨도 깨지는 것 같습니다. 최근 프로젝트 마무리 하고 떠난 iOS 개발자와 술 한잔

했었는데 뭐... 사실 PM 욕밖에 없어서 적지는 못하겠습니다. 저도 큰 기업에서 잠깐 PM 한 적은 있지만

외주랑 같이 개발하고 같이 호흡했거든요. 지금은 그 때 그 분들이 중소 기업들의 대표로 계셔서 재미있습니다.

 

이런 분노 외, 배움의 즐거움을 걸으며 인생까지 즐기시는 분들께 할 말은 아니나.

 

1. 세상에는 제 생각보다 개발자가 적고,

2. 개발을 이해하지 못하는 사람이 대부분이고,

3. 수십만 개(일전 대기업 솔루션 기준)의 버그와 혹은, 하나의 버그라도

 늘 버그와 함께 살았습니다. 생명과 관련되지 솔루션의 버그라면, 대수롭지 않게 생각했지만,

 많은 사람들이 너무도 크게 생각하는 것을 알게 되었습니다. 

 

1(조용한 닌자) 네트워크로 연결되어서 많아 보이지, 주변에는 얼마 되지 않는다는 점. 

그리고 연구직이라서 커뮤니케이션 보다는 혼자 공부하는 즐거움을 즐기는 것이 많다는 것이 개발자라는 점.

 

2(개발은 전문직) 사실, 8 시간의 일하는 시간 외에 대부분의 시간을 개발 관련 생각을 하고 살며 십 수년이 지나면

직업병이 생기는 것 같습니다. 아직 저도 실체 파악이 안되었지만 한 번 필터링 하고 말하지 않으면 주변 사람들이 

이해를 잘 못하는 것 같아요.

 

3(버그 발견하면 대부분 유레카) 페이스북은 왠만한 기업보다 시가 총액이 큽니다. 그런 페북앱도 가끔 죽거든요. 많은 곳에서

프리랜싱 하시는 분들이 혼자서 앱을 개발하는데 앱이 죽으면 유레카를 외치는 분이 많은 것 같아요. 물론, 개발자는

6시그마 정신으로 간헐적 버그도 수 많은 사람들에게 좋지 않은 인상을 줄 수도 있기 때문에 10달 임신 기간을 거치지

않더라도 회사에서 월급 루팡들의 톱니에 끼어 3달만에 한 번 아이를 출산해 보려고 노력 합니다. 다만, 잉여력이 좀

쌓여야 머리가 도는데 거의 반사적으로 버그들을 수정해야 할 때가 많죠.

 

저는 대부분의 경우에 NO라고 말할 수 있는 강심장을 가졌다고 생각하지만 아닌 분들.

대한민국 IT를 이끌어 오신 시니어 분들이 최근 연달에 회사를 떠나고,

그 뒷모습을 보며 참 많은 생각을 했더랬습니다.

 

저도 거짓말이 아닌 테두리 내에서 ~억 ~억 이라고 말하며 파급력을 가져 보려고 합니다.

추잡해 보이는데다 별 파급력이 없다는 것을 마케터도 알았으면 하고 많은 캐릭터들이

개발자를 따라가려고 하니 저도 상도를 깨고 해당 영역 침범하려구요. 물론, 코딩은 계속

합니다. 영원히 하려구요. ㅋㅋ

 

혹시, 이 글과 연루된 다른 분들이 이 글을 보신다면 늘 응원한다고 말씀드리고 싶습니다.

따로 이야기 한 것 외에도 이런 관점에서 늘 응원 한다고 말씀드리고 싶습니다.

그리고 대한민국 시니어 개발자 분들께 고맙다고 말씀드리고 싶어요.

 

P.S 저 아직 그 PM 과 일하고 있습니다. 다음 연봉 사인도 6개월이나 남았구요,.

자유로운 천성은 어쩔 수 없나봐요.ㅋㅋㅋㅋ


코드 제거

    // 네비게이션바 숨김
    //self.navigationController.navigationBar.hidden = YES;
    
    //     권한 현장이 없으면 홈버튼 사용불가
    //    [mBtnHome setEnabled:NO];

 
//    self.title = @"";

//    self.title = @"Home";
    /*
     if (nil == mQtChkLst) {
     mQtChkLst = [[DCH_BsQtChkLst alloc] initWithNibName:@"DCH_BsQtChkLst" bundle:[NSBundle mainBundle]];
     }
     self.title = @"";
     [mQtChkLst initializeData];
     [self.navigationController pushViewController:mQtChkLst animated:NO];
     */

 //    self.title = @"";

/*
    if (nil == mVrfChkInfoDwldList) {
    mVrfChkInfoDwldList = [[HJH_CheckingDownloadList alloc] initWithNibName:@"HJH_CheckingDownloadList" bundle:[NSBundle mainBundle]];
    }
    self.title = @"";
    [self.navigationController pushViewController:mVrfChkInfoDwldList animated:NO];
    */
    //    self.title = @"";

//    self.title = @"";

//    self.title = @"";

    /*
     if (nil == mMainMnu) {
     //mMainMnu = [[FrontViewController alloc] init];
     mMainMnu = [[FrontViewController alloc] initWithNibName:@"FrontViewController" bundle:[NSBundle mainBundle]];
     }
     self.title = @"";
     [self.navigationController pushViewController:mMainMnu animated:NO];
     */



    /*
     if (nil == mMainMnu) {
     //mMainMnu = [[FrontViewController alloc] init];
     mMainMnu = [[FrontViewController alloc] initWithNibName:@"FrontViewController" bundle:[NSBundle mainBundle]];
     }
     self.title = @"";
     [self.navigationController pushViewController:mMainMnu animated:NO];
     */

//    [[self.btnSiteInfo layer] setBorderColor:[UIColor colorWithRed:246/255 green:135/255 blue:38/255 alpha:1].CGColor];

//     GlobalVar.globalVar.userSelectionSiteInformation.nm_prgs_phs

//[GlobalVar alertMsgOKWithTitle:@"대림건설" message:@"로그인에 실패하였습니다."];

//[self 에러처리함수: sResult ];

/*
         if (0 == [list count]) {
         [GlobalVar alertMsgOKWithTitle:@"대림건설" message:@"권한 현장이 없습니다."];
         return -1;
         }
         */
        

//        [xmlRequest addFetchSQL:[NSString stringWithFormat:@""


//                                 ,mSiteCd//,GlobalVar.globalVar.currSite.cd_site

//[self 에러처리함수:[e reason]];

//    [self.btnProgressStep setTitle:
//    [GlobalVar loadFromUserDefaults:@"aptprogress"]
//                                       forState:UIControlStateNormal ];


/*
 - (id)initWithNibName:(NSString *)nibNameOrNil bundle:(NSBundle *)nibBundleOrNil
 {
 self = [super initWithNibName:nibNameOrNil bundle:nibBundleOrNil];
 if (self) {
 // Custom initialization
 }
 return self;
 }
 */

dnt_vrf_cplt="" dnt_vrf_rqst="" nm_nipt="주방TV위치 _ 상부장 우측(싱크대 좌측) 설치" nohs="0805" seq_nipt="6" yn_vrf_cplt="N">2020-03-11 13:43:45.390649+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] 신청 색상과 다름
2020-03-11 13:43:45.391189+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] 욕조 파손
2020-03-11 13:43:45.391551+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] 주방TV 미부착 확인바람
2020-03-11 13:43:45.391908+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] 우측모서리 찍힘
완료-[2020/03/05]
2020-03-11 13:43:45.392259+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/06] 거울파손 확인
2020-03-11 13:43:45.392617+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/06] 안덕선 작동 안함
2020-03-11 13:43:45.450046+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] 별매품) Jsksks / 강마루 색상_GREY OAK(TG-039A-2)
2020-03-11 13:43:45.490849+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/10] 인덕션 작동 불량
2020-03-11 13:43:45.628340+0900 MBASS[568:50453] cnst_vrf_rqst...요청-[2020/03/05] ㅓ나마나마??????
Message from debugger: Terminated due to memory issue


            //data.nm_cpny = [contentNode valueForAttributeNamed:@"nm_cpny"];
//            NSLog(@"data.cd_dong %@", data.cd_dong);
//            if([data.cnts_req_vrf isEqualToString:@""]) ; else
//            NSLog(@"cnst_vrf_rqst...%@", data.cnts_req_vrf);

//            NSString *d = [contentNode valueForAttributeNamed:@"cd_dong"];
//
//            data.cd_cpny = [d substringToIndex:10];
//            if([d length] > 10) data.nm_cpny=[d substringFromIndex:10];

//                                 ,mSiteCd//,GlobalVar.globalVar.currSite.cd_site

  for (int nIndex = 0; nIndex < nSize; nIndex++ ) {...} 

    sqlite3_finalize(compiledStatement);;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
            }
            sqlite3_close(database);;;;;;;;;;;;;;;;;;;;;;;;;;;;
            


        contentNode = [[userNode childElements]objectAtIndex:nIndex];
     
                    //!테이블 인서트
                    NSString *query = @"insert into ddtbt_hosh_nipt(cd_dong,nohs,cd_tppg,seq_nipt,nm_nipt,cnst_vrf_rqst,dnt_vrf_rqst,yn_vrf_cplt,dnt_vrf_cplt,cnts_req_vrf) values(?,?,?,?,?,?,?,?,?,?);";
                    const char *insert_stmt = [query UTF8String];
                    
                    if (sqlite3_prepare_v2(database, insert_stmt, -1, &statement, NULL) == SQLITE_OK) {
                        sqlite3_bind_text(statement, 1, [[contentNode valueForAttributeNamed:@"cd_dong"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 2, [[contentNode valueForAttributeNamed:@"nohs"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 3, [[contentNode valueForAttributeNamed:@"cd_tppg"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 4, [[contentNode valueForAttributeNamed:@"seq_nipt"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 5, [[contentNode valueForAttributeNamed:@"nm_nipt"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 6, [[contentNode valueForAttributeNamed:@"cnst_vrf_rqst"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 7, [[contentNode valueForAttributeNamed:@"dnt_vrf_rqst"]UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 8, [[contentNode valueForAttributeNamed:@"yn_vrf_cplt"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 9, [[contentNode valueForAttributeNamed:@"dnt_vrf_cplt"] UTF8String], -1, NULL);
                        sqlite3_bind_text(statement, 10, [[contentNode valueForAttributeNamed:@"cnts_req_vrf"] UTF8String], -1, NULL);
                    }
                    
                    sqlite3_step(statement);
                    sqlite3_reset(statement);
        
Message from debugger: Terminated due to memory issue

DB 작업은 개수 나눠서 해결.(개뻘짓)




'Blog History' 카테고리의 다른 글

108  (0) 2020.03.13
107  (0) 2020.03.13
105  (0) 2020.03.11
104  (0) 2020.03.09
103  (0) 2020.03.08

오픈소스 도입으로 license 변경

//Copyright 2020, DAELIM
//
//Licensed under the Apache License, Version 2.0 (the "License");
//you may not use this file except in compliance with the License.
//You may obtain a copy of the License at
//
//    http://www.apache.org/licenses/LICENSE-2.0
//
//Unless required by applicable law or agreed to in writing, software
//distributed under the License is distributed on an "AS IS" BASIS,
//WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
//See the License for the specific language governing permissions and
//limitations under the License.동호수 선택 in 점검편집



=//        [GlobalVar alertMsgOKWithTitle:@"대림건설" message:[e reason]];
        //            return -99;


2020-03-09 22:08:57.882500+0900 MBASS[39606:5121191] hjhImageFileTitledMapReturn2 59A.jpg 1 20200228112141656772.5047375062766.jpg
2020-03-09 22:08:57.883722+0900 MBASS[39606:5121191] onClickMap 59A.jpg 1 20200228112141656772.5047375062766.jpg  59A_J

2020-03-09 22:09:48.090258+0900 MBASS[39606:5121191] hjhImageFileTitledMapReturn2 59A.jpg 1 20200228112141656772.5047375062766.jpg
2020-03-09 22:09:48.090813+0900 MBASS[39606:5121191] onClickMap 59A.jpg 1 20200228112141656772.5047375062766.jpg  59A_J
2020-03-09 22:09:48.099133+0900 MBASS[39606:5121191] 292513_2

VC by VC darkmode

- (void)viewDidAppear:(BOOL)animated
{
    [super viewDidAppear:animated];
    self.overrideUserInterfaceStyle = UIUserInterfaceStyleDark;


- (void)viewDidLoad
{
    [super viewDidLoad];
    
    self.overrideUserInterfaceStyle = UIUserInterfaceStyleDark;


아래 코드 다 걷어냄.
/*

      NSMutableDictionary *dic = [[NSMutableDictionary alloc] initWithCapacity:0];
        [db selectHosh:dic withDongCd:mDongCd nohs:mFloor];
    
        NSString *dongNm = [dic valueForKey:@"nm_dong"];
        NSString *florNm = @"";
        NSString *ho = @"전체";
        if (YES == [mDongCd isEqualToString:@""]) {
            dongNm = @"전체동";
        }
    
        if (YES == [mFloor isEqualToString:@""]) {
            florNm = @"전체";
            [mLblHosh setText:[NSString stringWithFormat:@"%@→%@층→%@호", dongNm, florNm, ho]];
        }
        else {
    
            if (2 < [mFloor length]) {
                // 동층호 다 선택
                [mLblHosh setText:[NSString stringWithFormat:@"%@→%@호", dongNm, mFloor]];
            }
            else {
                florNm = mFloor;
                [mLblHosh setText:[NSString stringWithFormat:@"%@→%@층→%@호", dongNm, florNm, ho]];
            }
        }
    
               [db selectDfct:mList withDongCd:mDongCd nohs:mNohs ynReClsfRqst:@"" mode:@"" hndlStatCd:stat];

       [db inspectionSelectDfct:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" hndlStatCd:@"E" myandquery:@""];
        [db selectDfctreq1:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" mode:@"" hndlStatCd:@"X"];
       [db selectDfctreq1:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" mode:@"" hndlStatCd:@"B"];



                [db inspectionSelectDfct:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" hndlStatCd:@"B" myandquery:@"and yn_re_rcpt='Y' "]; //20200223
        

        [db inspectionSelectDfct2:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@""  hndlStatCd:@"B" myandquery:@"and yn_re_rcpt='Y' and yn_svr_trsm='N'"]; //20200223
    //    if(self.isFilterEnabled) [self keepFilter]; //20200223
    
    //    [self onFlag:@"onFlag button has been clicked in DCH_BSVrChkList.m"];

// Configure the cell...
        
        // cell바탕색 지정
        //[cell.contentView setBackgroundColor:[GlobalVar pastelCellColor]];
        /*
         
         // 성명
         UILabel *name = [[UILabel alloc] initWithFrame:CGRectMake(50, 2, 70, 40)];
         name.textAlignment = UITextAlignmentLeft;
         name.backgroundColor = [UIColor clearColor];
         name.font = [UIFont systemFontOfSize:14];
         [name setTag:1];
         [cell.contentView addSubview:name];
         [name release];
         
         // 소속
         UILabel *dept = [[UILabel alloc] initWithFrame:CGRectMake(120, 2, 90, 40)];
         dept.textAlignment = UITextAlignmentLeft;
         dept.backgroundColor = [UIColor clearColor];
         dept.font = [UIFont systemFontOfSize:14];
         dept.textColor = [GlobalVar pastelSilverColor];
         [dept setAdjustsFontSizeToFitWidth:YES];
         [dept setTag:2];
         [cell.contentView addSubview:dept];
         [dept release];
         
         // 휴대전화
         UILabel *hp = [[UILabel alloc] initWithFrame:CGRectMake(210, 2, 105, 40)];
         hp.textAlignment = UITextAlignmentLeft;
         hp.backgroundColor = [UIColor clearColor];
         hp.font = [UIFont systemFontOfSize:13];
         [hp setTag:3];
         [cell.contentView addSubview:hp];
         [hp release];
         */
                    //20200223
            //              [db inspectionSelectDfct:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"Y" mode:@"" hndlStatCd:@"B"]; //20200223
            //            [db inspectionSelectDfct:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" mode:@"" hndlStatCd:@"E"];
            //            [db selectDfctreq1:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@"" mode:@"" hndlStatCd:@"X"];



    //        [mList removeAllObjects];
    
    //        NSString *dongCd = [dic valueForKey:@"cd_dong"];
    //        NSString *dongNm = [dic valueForKey:@"nm_dong"];
    //        NSString *florCd = [dic valueForKey:@"cd_flor"];
    //        NSString *florNm = [dic valueForKey:@"nm_flor"];
    //    //    NSString *locClsfCd = [dic valueForKey:@"cd_loc_clsf"];
    //        NSString *nohs = [dic valueForKey:@"nohs"];
    //        NSString *ho = [dic valueForKey:@"ho"];
    //    //    NSString *tppgCd = [dic valueForKey:@"cd_tppg"];
    //
    //        // 동층호정보
    //        if (YES == [nohs isEqualToString:@""]) {
    //            [mLblHosh setText:[NSString stringWithFormat:@"→%@→%@→%@호", dongNm, florNm, ho]];
    //
    //            if (NO == [florCd isEqualToString:@""]) {
    //                nohs = florCd;
    //            }
    //        }
    //        else {
    //            [mLblHosh setText:[NSString stringWithFormat:@"→%@→%@호", dongNm, nohs]];
    //        }
    //
    //        NSString *yn = @"";
    //        if (YES == [mFlag isSelected]) yn = @"Y";
    //
    //        mDongCd = dongCd;
    //        mNohs = nohs;
    //
    //        // 동층호 정보를 가져왔으면
    //        // 조건에 맞는 하자들을 조회한다.


    //    //    [db selectDfct:mList withDongCd:dongCd nohs:nohs ynReClsfRqst:yn mode:@"" hndlStatCd:@""];
    //
    //
    //        for(int i=0; i<[mListFlor count]; i++) {
    //
    //            //        mNohs = [[mListFlor objectAtIndex:i] cd_flor];
    //            mNohs = [mListFlor objectAtIndex:i];
    //
    //            NSString *stat = @"";
    //            BOOL select = [mFlag isSelected];
    //            if (YES == select) stat = @"E";
    //            else stat = @"";
    //
    //            if(stat == @"") {
    //                [db vrfchklistselectDfct:mList withDongCd:mDongCd nohs:mNohs ynReClsfRqst:@"" mode:@"" hndlStatCd:@"E"];
    //                [db vrfchklistselectDfctreq1:mList withDongCd:mDongCd nohs:mNohs ynReClsfRqst:@"" mode:@"" hndlStatCd:@"X"];
    //                NSLog(@"It's a good day to die");
    //            } else {
    //                [db vrfchklistselectDfct:mList withDongCd:mDongCd nohs:mNohs ynReClsfRqst:@"" mode:@"" hndlStatCd:@"E"];
    //                //        [db selectDfct:mList withDongCd:mDongCd nohs:mNohs ynReClsfRqst:@"" mode:@"" hndlStatCd:stat];
    //                NSLog(@"My life for Aiur!");
    //            }
    //
    //        }
    
    
    
    //
    //        // 하자 상태별 건수
    //        [self setDfctCount];
    //
    //        [mTableView reloadData];
    //
    //        [mChkAll setSelected:NO];
            //            NSRunLoop * theRunLoop = [NSRunLoop currentRunLoop];
            //            [theRunLoop addTimer:timer forMode:NSDefaultRunLoopMode];
            //            NSString *urlAsString = [NSString stringWithFormat:@"mbassbim://""nmsite"":""%@""", @"송도현장"];

    //            NSRunLoop * theRunLoop = [NSRunLoop currentRunLoop];
    //            [theRunLoop addTimer:timer forMode:NSDefaultRunLoopMode];
    //            NSString *urlAsString = [NSString stringWithFormat:@"mbassbim://""nmsite"":""%@""", @"송도현장"];


       //        NSString *path = @"https://DownloadServer.co.kr/ProcFiledown.action?method=&id=C1900017&ver=1.0.1&platform=Android&deviceid=357145071353025&line1number=&nm_phys_file=201911250945216233186.200369983586.png&pth_file=/app_attach_mobile/dch/web_attach/swfupload/DCH70/060285/2019/11/20191125/15746427085076680.4052662714985/";




'Blog History' 카테고리의 다른 글

107  (0) 2020.03.13
106  (0) 2020.03.11
104  (0) 2020.03.09
103  (0) 2020.03.08
102  (0) 2020.03.08

_mNmTppg

tppgCd




dong.textAlignment = UITextAlignmentLeft;
        dong.lineBreakMode = NSLineBreakByWordWrapping;




//        else NSLog(@"data %@ is checked NO", data1.cd_flor);
//    [GlobalVar.globalVar.userSelectionSiteInformation.c

d_prgs_phs isEqualToString:@"100" ]|| //공사진행
           //    [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"A70" ]||
           //     [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"B70" ]||
           //      [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"C30"]) {

      //                 [mDfct.id_dfct_cl isEqualToString:@"A70" ]||
           //                  [mDfct.id_dfct_cl isEqualToString:@"B70" ]||


//HJH_SWITCH005           if (0 == [mDfct.atchListAftr count]) {
//
//                [GlobalVar alertMsgOKWithTitle:@"" message:@"완료 처리시 고객 점검건 인 경우, 작업 후 사진이 반드시 필요 합니다"];
//                return;
//            }


    //    [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"100" ]|| //공사진행
           //    [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"A70" ]||
           //     [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"B70" ]||
           //      [GlobalVar.globalVar.userSelectionSiteInformation.cd_prgs_phs isEqualToString:@"C30"]) {

 //                 [mDfct.id_dfct_cl isEqualToString:@"A70" ]||
           //                  [mDfct.id_dfct_cl isEqualToString:@"15" ]||
//HJH_SWITCH005            if (0 == [mDfct.atchListAftr count]) {
//
//                [GlobalVar alertMsgOKWithTitle:@"" message:@"완료 처리시 고객 점검건 인 경우, 작업 후 사진이 반드시 필요 합니다"];
//                return;
//            }
            //               areaSelectView.mTextDfctCnts = mTextDfctCnts;
//               areaSelectView.mHiddenNipt = _mHiddenNipt;

//        else NSLog(@"DDTBT_HOSH data %@ is checked NO", data1.cd_flor);


Okay
I can see that you have renewed the SSL but you have not issued the certificate again and installed it again, you will have to do the complete process again and then it will be active and reflect on the browser

Khushi P 11:16
You're welcome.
Khushi P 11:16
There's a rating option at the top, I would request you to please leave a feedback about our conversation. It will help us improve further.
Khushi P 11:16
It was a pleasure assisting you today, have a good day.
Khushi P has closed the chat.
2020-03-09 13:42:28.374182+0900 MBASS[39184:5043297] (BOOL) updateDfct:(DDTBT_DFCT *)data
2020-03-09 13:42:28.376077+0900 MBASS[39184:5043297] update ddtbt_dfct set                            cd_dong='0301'                            ,nohs='0101'                            ,cd_loc_clsf='H'                            ,id_loc=12442                            ,id_rgon=130                            ,id_dfct_ctyp=46                            ,id_dfct_type=86                            ,id_dfct_caus=8                            ,id_dfct_cl=7                            ,dfct_cnts='아이폰 사진Ghana'                            ,id_wrk_fmer_pic_atch_file='C20000052020030712242826'                            ,id_wrk_aftr_pic_atch_file=''                            ,yn_re_clsf_rqst='N'                            ,id_chg='C2000005'                            ,dnt_chg='20200309'                            ,yn_svr_trsm=''                            ,cd_hndl_stat='B'                            where id_mbil=9562;
2020-03-09 13:42:28.394895+0900 MBASS[39184:5043297] 데이터 저장 성공-4
2020-03-09 13:42:28.396417+0900 MBASS[39184:5043297] stringByAppendingPathComponent /var/mobile/Containers/Data/Application/AE02D76C-F076-4F7A-A550-AEB7EBBF45B6/Documents/images/202003071224504862438.4670981048685.jpg
2020-03-09 13:42:28.415444+0900 MBASS[39184:5043297] Watermark 0301
2020-03-09 13:42:28.418470+0900 MBASS[39184:5043297] 960.000000 960.000000 width height
2020-03-09 13:42:28.611582+0900 MBASS[39184:5043297] stringByAppendingPathComponent /var/mobile/Containers/Data/Application/AE02D76C-F076-4F7A-A550-AEB7EBBF45B6/Documents/images/202003071224516422544.719771858284.jpg
2020-03-09 13:42:28.620084+0900 MBASS[39184:5043297] Watermark 0301
2020-03-09 13:42:28.621561+0900 MBASS[39184:5043297] 960.000000 960.000000 width height
2020-03-09 13:42:28.792737+0900 MBASS[39184:5043297] stringByAppendingPathComponent /var/mobile/Containers/Data/Application/AE02D76C-F076-4F7A-A550-AEB7EBBF45B6/Documents/images/202003071224511115663.1248483033405.jpg
2020-03-09 13:42:28.799266+0900 MBASS[39184:5043297] Watermark 0301
2020-03-09 13:42:28.800829+0900 MBASS[39184:5043297] 960.000000 960.000000 width height
2020-03-09 13:42:28.966665+0900 MBASS[39184:5043297] stringByAppendingPathComponent /var/mobile/Containers/Data/Application/AE02D76C-F076-4F7A-A550-AEB7EBBF45B6/Documents/images/202003071224522674315.337264068101.jpg
2020-03-09 13:42:28.973337+0900 MBASS[39184:5043297] Watermark 0301
2020-03-09 13:42:28.974817+0900 MBASS[39184:5043297] 960.000000 960.000000 width height
2020-03-09 13:42:29.145046+0900 MBASS[39184:5043297] [logging] API call with invalid database connection pointer
2020-03-09 13:42:29.145183+0900 MBASS[39184:5043297] [logging] misuse at line 131400 of [378230ae7f]
2020-03-09 13:42:29.145241+0900 MBASS[39184:5043297] [logging] API called with NULL prepared statement
2020-03-09 13:42:29.145271+0900 MBASS[39184:5043297] [logging] misuse at line 88650 of [378230ae7f]
2020-03-09 13:42:29.145301+0900 MBASS[39184:5043297] [logging] API call with invalid database connection pointer
2020-03-09 13:42:29.145353+0900 MBASS[39184:5043297] [logging] misuse at line 162918 of [378230ae7f]
2020-03-09 13:42:29.145455+0900 MBASS[39184:5043297] SerchingResult : initializeData mDongCD , hosu  mNmCD (null)
2020-03-09 13:42:29.147213+0900 MBASS[39184:5043297] finderCTYP = 0
2020-03-09 13:42:29.147907+0900 MBASS[39184:5043297] selectCD_CPNY query = select a.CD_CPNY                            from DDTBT_CPNY_NOHS_QOTA a                            where a.NM_CPNY=''
2020-03-09 13:42:29.148747+0900 MBASS[39184:5043297] hjhSearchingDefect has been called. enterprise , search001~3 0 0 0 idLoc 0 noCd
2020-03-09 13:42:29.149577+0900 MBASS[39184:5043297] tIdloc  tNoCD  tCtyp
2020-03-09 13:42:29.149685+0900 MBASS[39184:5043297] hjhselectdefect query = select a.id_mbil                            ,a.cd_dong                            ,a.nohs                            ,c.nm_loc                            ,d.nm_rgon                            ,e.nm_dfct_type                            ,a.dfct_cnts                            ,a.cd_hndl_stat                            ,a.yn_re_clsf_rqst                            ,a.id_wrk_fmer_pic_atch_file                            ,a.id_wrk_aftr_pic_atch_file                            ,f.nm_dong                            ,a.dnt_rgst                            ,a.id_rgon                           ,a.cd_cpny                           from ddtbt_dfct a                            inner join ddtbt_hosh b on b.cd_dong=a.cd_dong and b.nohs=a.nohs                            inner join ddtbt_site_tppg_loc c on c.cd_tppg=b.cd_tppg and c.id_loc=a.id_loc                            inner join ddtbt_site_loc_rgon d on d.id_loc=a.id_loc and d.id_rgon=a.id_rgon                            inner join ddtbt_rgon_dfct_type e on e.id_rgon=a.id_rgon and e.id_dfct_type=a.id_dfct_type                            inner join ddtbt_dong f on f.cd_dong=a.cd_dong                            where a.cd_dong like '%' and a.nohs like '%' and a.yn_re_clsf_rqst like '%'                            and a.mode like '%'                            and a.yn_svr_trsm<>'Y'                            and a.cd_hndl_stat like '%'     and A.cd_hndl_stat='B'                                order by a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon;
2020-03-09 13:42:29.157286+0900 MBASS[39184:5043297] [db selectNoCd:mNmCd] =


(BOOL) updateDfctImg:(DDTBT_DFCT *)dat


4206: [self insertingWaterMark:atch data:data];

insert
query2insert
hjhinsert

 
                    //////////////////////////////WATERMARK//////////////////////
                    /*
                     NSString *path = [FileManager getDirImage];
                     NSString *hfilePath = [path stringByAppendingPathComponent:atch.nm_phys_file];
                     NSLog(@"stringByAppendingPathComponent %@", hfilePath.description);
                     //                       [UIImage imageWithContentsOfFile:filePath];
                     
                     
                     UIImageView *myImage = [[UIImageView alloc] initWithFrame:CGRectMake(0, 110, 320, [UIScreen mainScreen].bounds.size.height - 260)];
                     //    myImage.image = [UIImage imageNamed:@"checkmaker64.png"];
                     myImage.image = [UIImage imageWithContentsOfFile:hfilePath];
                     
                     
                     NSString *good2date = [NSString stringWithFormat:@"%@-%@-%@",
                     [data.dnt_chg substringToIndex:4],
                     [data.dnt_chg substringWithRange:NSMakeRange(4, 2)],
                     [data.dnt_chg substringFromIndex:6]
                     
                     ];
                     
                     //                    DDTBT_DFCT *another = [[DDTBT_DFCT alloc] init];
                     //                    [self selectDfct:another byMbilId:data.id_mbil];
                     [self hSettingNMloc:data byId:data.id_loc];
                     [self hSettingNMRgon:data byId:data.id_rgon];
                     [self hSettingNMDfctType:data byId:data.id_dfct_type];
                     
                     NSString *sora = [NSString stringWithFormat:@"%@ %@ %@호 :%@→%@→%@",
                     GlobalVar.globalVar.userSelectionSiteInformation.nm_site,
                     data.nm_dong,
                     data.nohs,
                     data.nm_loc,
                     data.nm_rgon,
                     data.nm_dfct_type
                     ];
                     
                     //                     NSString *sora = [NSString stringWithFormat:@"%@ %@ %@호 :%@→%@→%@",
                     //                                                          GlobalVar.globalVar.userSelectionSiteInformation.nm_site,
                     //                                                          data.nm_dong,
                     //                                                          data.nohs,
                     //                                                          another.nm_loc,
                     //                                                           another.nm_rgon,
                     //                                                          another.nm_dfct_type
                     //                                                          ];
                     
                     NSString *soul = [NSString stringWithFormat:@"%@ %@",
                     data.dfct_cnts,
                     good2date];
                     
                     myImage.image = [self drawText:sora tText:soul inImage:myImage.image];
                     
                     
                     NSData *imageData = [NSData dataWithData:UIImageJPEGRepresentation(myImage.image, 1)];
                     [imageData writeToFile:hfilePath atomically:YES];
                     
                     *//////////////////////////////WATERMARK//////////////////////

'Blog History' 카테고리의 다른 글

106  (0) 2020.03.11
105  (0) 2020.03.11
103  (0) 2020.03.08
102  (0) 2020.03.08
101  (0) 2020.03.08

maximum recursion depth exceeded in comparison

 

import sys

sys.setrecursionlimit(99909)

 

 

More than 20 figures have been opened

 

import matplotlib.pyplot as plt

plt.rcParams.update({'figure.max_open_warning': 0})

 

 

## **Symptoms**

 

## **Cause**

 

## **Resolution**

 

## **For more information**

 

 

 

reason: 'Attemped to add a SKNode which already has a parent

 

sudo killall -9 com.apple.CoreSimulator.CoreSimulatorService

 

 

/Users/soralee/.conda/envs/env01/bin/python "/Applications/PyCharm with Anaconda plugin .app/Contents/plugins/python/helpers/pydev/pydevconsole.py" --mode=client --port=55503
import sys; print('Python %s on %s' % (sys.version, sys.platform))
sys.path.extend(['/Users/soralee/PycharmProjects/untitled4'])
Python 3.7.6 (default, Jan  8 2020, 13:42:34) 
Type 'copyright', 'credits' or 'license' for more information
IPython 7.12.0 -- An enhanced Interactive Python. Type '?' for help.
PyDev console: using IPython 7.12.0
Python 3.7.6 (default, Jan  8 2020, 13:42:34) 
[Clang 4.0.1 (tags/RELEASE_401/final)] on darwin
runfile('/Users/soralee/PycharmProjects/untitled4/002.py', wdir='/Users/soralee/PycharmProjects/untitled4')
2.0.0
2020-03-08 16:27:29.264190: I tensorflow/core/platform/cpu_feature_guard.cc:142] Your CPU supports instructions that this TensorFlow binary was not compiled to use: SSE4.1 SSE4.2 AVX AVX2 FMA
Train on 60000 samples
Epoch 1/5
60000/60000 [==============================] - 13s 216us/sample - loss: 0.4971 - accuracy: 0.8261
Epoch 2/5
60000/60000 [==============================] - 12s 203us/sample - loss: 0.3747 - accuracy: 0.8647
Epoch 3/5
60000/60000 [==============================] - 12s 199us/sample - loss: 0.3350 - accuracy: 0.8774
Epoch 4/5
60000/60000 [==============================] - 13s 214us/sample - loss: 0.3147 - accuracy: 0.8837
Epoch 5/5
60000/60000 [==============================] - 11s 187us/sample - loss: 0.2943 - accuracy: 0.8905
10000/1 - 1s - loss: 0.2679 - accuracy: 0.8715
테스트 정확도: 0.8715

 

'Blog History' 카테고리의 다른 글

105  (0) 2020.03.11
104  (0) 2020.03.09
102  (0) 2020.03.08
101  (0) 2020.03.08
100  (0) 2020.03.06

soralee@soraui-MacBookAir anaconda3 % ls
Anaconda-Navigator.app phrasebooks
bin pkgs
conda-meta plugins
condabin python.app
doc qml
etc resources
include sbin
lib share
libexec shell
man ssl
mkspecs translations

 

 

soralee@soraui-MacBookAir bin % echo $PATH
/usr/local/bin:/usr/bin:/bin:/usr/sbin:/sbin
soralee@soraui-MacBookAir bin % echo "export PATH=\$PATH:$(pwd)" >> ~/.bashrc
soralee@soraui-MacBookAir bin % cd ..
soralee@soraui-MacBookAir anaconda3 % conda
zsh: command not found: conda
soralee@soraui-MacBookAir anaconda3 % source ~/.bashrc
soralee@soraui-MacBookAir anaconda3 % conda

'Blog History' 카테고리의 다른 글

104  (0) 2020.03.09
103  (0) 2020.03.08
101  (0) 2020.03.08
100  (0) 2020.03.06
099  (0) 2020.03.04

Objective-C Coder to be Swift Coder

 

1. 

NSLog(@“…%@”, a));

debugPrint(“…”, a)

.

.

.

 

학력

 

서울대학교 의과대학 협동과정 방사선응용생명과학 전공 석박사통합과정 수료

 

강원대학교 공과대학 정보통신공학과 공학사

 

삼성전자 Software Membership (SSM) 15 회원

서울대학교 의학연구원 연구원

() Oklahoma State University (OSU) 전기전자공학부 국비유학생

() National Institute of Indian Technology (NIIT) 컴퓨터공학부 국비유학생

대학 교원은 크게 두 가지로 구분됩니다.

전임교원/ 비전임교원.

우리들이 보통 말하는 '교수'는 전임교원에 해당됩니다.

요즘 대학에는 이런저런 비전임직이 많이 생겼습니다.

강의전담교수, 학술연구교수, BK교수, 또 님이 말씀하시는 그냥 연구교수도 있고요,

초빙교수니 겸임교수니 하는 것들은 이미 오래 전부터 있어왔고요.

이들간의 공통점은 다 순수 계약제라는 점입니다.

전임의 경우 계약제라고 해도 기간이 끝나면 일정 재임용 요건만 통과되면

다시 임용이 되지만 비전임직은 기간 만료와 함께 계약은 끝나고

재계약 여부는 전적으로 학교의 의사에 달려 있습니다.

예전에는 비전임직이라고 해도 강의전담교수의 경우 재계약을 갱신해주는 경우가

많았으나 요즘은 고용 기간에 따른 비정규직의 정규직 전환 문제와 관련하여

재계약 회수를 가급적 줄이려는 학교가 점점 더 많이 늘고 있습니다.

비전임직의 경우 전임이 될려면 별개의 공채 절차를 다시 거쳐야 합니다.

페이는 아무래도 일반 교수직보다는 적습니다만

교수 월급 자체가 학교마다 천차만별이니 일률적으로 말씀드리는 힘듭니다.

 

제가 알기로는 연구교수는 한마디로 비정규직 노동자

전임이나 교수는 정규직 노동자. 생각하시면 맞아요.

연구교수는 정말 일반 전임과도 확연히 차이납니다.

2~3년 안에 계약 끝나면 다른 자리 알아봐야해요.

그리고 그 대학에 TO 생겨도 절대로 임용에 가산점 이런것 없습니다. 모집공고 내고 다른 지원자들이랑 똑같이 심사 받아요.

페이는 우리나라 대학 정규 교수 페이도 열악하니(대기업에 비해서요) 말할것도 없이 작아요.

제가 아는분은 박사 졸업하고 연구교수 연봉 3000정도 간신히 된다 했습니다. (서울소재 사립대)

 

인데요..

외국서 학위받구, 포닥 (post doc.)거쳐서 연구교수입니다

학교마다 bk21 이니 뭐니 하니 연구계획에 따라 연구교수 혹은 연구원을 뽑는데,

기간에 따라 3년 혹은 3년+3년 이런식으로 연장하더군요

연봉은 4000정도예요. 각학교 마다 차이는 많더라구요.

경력에는 아무래도 도움되요.

TOOLBOX SUBSCRIPTION AGREEMENT FOR EDUCATION

Version 3.2, effective as of June 26th, 2019

IMPORTANT! READ CAREFULLY:

THIS IS A LEGAL AGREEMENT. BY CLICKING ON THE «I AGREE» (OR SIMILAR) BUTTON THAT IS PRESENTED TO YOU AT THE TIME OF YOUR PURCHASE, OR BY DOWNLOADING, INSTALLING, COPYING, SAVING ON YOUR DEVICE, OR OTHERWISE USING JETBRAINS SOFTWARE, SUPPORT OR PRODUCTS, YOU ARE BECOMING A PARTY TO THIS AGREEMENT, YOU DECLARE YOU HAVE THE LEGAL CAPACITY TO ENTER INTO SUCH AGREEMENT, AND YOU ARE CONSENTING TO BE BOUND BY ALL THE TERMS AND CONDITIONS SET FORTH BELOW.

1. PARTIES

1.1. «JetBrains» or «We» means JetBrains s.r.o., having its principal place of business at Na Hrebenech II 1718/10, Prague, 14000, Czech Republic, registered in the Commercial Register maintained by the Municipal Court of Prague, Section C, File 86211, ID. No.: 265 02 275.

1.2. «Customer» or «You» means a student or an instructor specified in the Subscription Confirmation who is at least 13 years old, or in the case of Redistributable Products the sole proprietor or legal entity with sufficient legal capacity to enter into this Agreement using the Redistributable Product in accordance with this Agreement. For the purpose of this Agreement:
(A) «student» is an individual who is enrolled at a recognized educational institution (university, college, high school, primary school or a similar institution with educational goals), and upon request by JetBrains is able to provide proof of such enrollment;
(B) «instructor» is an individual who gives lectures and/or seminars at a recognized educational institution (university, college, high school, primary school or a similar institution with educational goals), and upon request by JetBrains is able to provide proof of such involvement.

2. DEFINITIONS

2.1. «Agreement» means this Toolbox Subscription Agreement.

2.2. «Product» for the purposes of this Agreement means any software provided under the JetBrains Toolbox and included in JetBrains Educational Program at and any third party software programs that are owned and licensed pursuant to Section 7 of this Agreement by parties other than JetBrains and that are either integrated with or made part of software (collectively, «Third Party Software»).

2.3. «Client» means a computer device used by a Customer for running the Product.

2.4. «JetBrains Account» or «JBA» means an account at https://account.jetbrains.com created by Customer, having a unique name and password, and through which Customer has access to Products in accordance with a Toolbox Subscription.

2.5. «JetBrains Toolbox» means the set of Products which are subject to this Agreement. For the avoidance of doubt, JetBrains Toolbox does not include JetBrains team productivity software or services such as YouTrack, TeamCity, Upsource, or Hub, or any other software, services or products which do not fall within the definition of Section 2.2 and which are subject to different terms and conditions.

2.6. «Redistributable Product» means an independent module of the Product or the Product as a whole designed to be redistributed and designated by JetBrains as «Redistributable» in its name or in its official description.

2.7. «Subscription Confirmation» means an email confirming Customer’s rights to access and use Products (excl. Redistributable Products), including Toolbox Subscription plans, and the number of authorized users.

2.8. «Toolbox Subscription» specifies the subscription term and Products provided to Customer. Toolbox Subscription does not apply to Redistributable Products.

3. GRANT OF RIGHTS

3.1. Unless the Toolbox Subscription has expired or this Agreement is terminated in accordance with Section 10, and subject to the terms and conditions specified herein, JetBrains grants You a non-exclusive and non-transferable right to use each Product covered by the Toolbox Subscription for non-commercial, educational purposes only (including conducting academic research or providing educational services) for a period of 1 (one) year as follows:
(A) You may:
(i) Install and use any version of the Product covered by the Toolbox Subscription and listed at https://www.jetbrains.com/student on any number of Clients and on any operating system supported by the Product; use software for non-commercial, educational purposes only, including conducting academic research or providing educational services; and
(ii) Make one backup copy of the Product solely for archival purposes/security backup.
(B) You may not:
(i) Rent, lease, reproduce, modify, adapt, create derivative works of, distribute, sell or transfer the Product;
(ii) Provide access to the Product or Your JetBrains Account or the right to use the Product to a third party;
(iii) Reverse engineer, decompile, disassemble, modify, translate, or make any attempt to discover the source code of, the Product;
(iv) Remove or obscure any proprietary or other notices contained in the Product; or
(v) Use Products for any commercial purposes.

3.2. Customer acknowledges that no ownership right is conveyed to the Customer under this Agreement, irrespective of the use of terms such as «purchase» or «sale.» JetBrains has and retains all rights, title and interest, including all intellectual property rights, in and to the Products and any and all related or underlying technology, and any modifications or derivative works thereof, including without limitation as they may incorporate Feedback (as defined below).

3.3. If an independent module of the Product or the Product as a whole is a Redistributable Product, the following provisions shall apply in addition to Sections 3.1-3.2:
(A) You may:
(i) use the Redistributable Product without quantitative restrictions unless specified otherwise in the terms relating to the use of the particular Redistributable Product;
(ii) transfer, reproduce, redistribute and provide access to the Redistributable Product to a third party;
(iii) sell your product containing or using the Redistributable Product to a third party, but not the Redistributable Product as such;
(iv) redistribute the Redistributable Product onto another Client for legitimate purposes in accordance with applicable law and use the Redistributable Product on that Client, provided that You have received authorization from the owner of such Client to deploy and use the Redistributable Product in this way. You will indemnify JetBrains against any loss, costs or damages arising from Your deployment of the Redistributable Product onto another Client in violation of this clause.
(B) You hereby agree to ensure that the use of any Redistributable Product you reproduce, redistribute or provide access to, to a third party is governed by an agreement concluded between the relevant third party as a Customer and JetBrains and that such third party is bound by the agreement prior to the use of any such Redistributable Product. JetBrains is the exclusive owner and exclusive licensor of any Redistributable Product. You acknowledge that you are liable to JetBrains for any loss or damages in connection with the breach of this section.

3.4. Your access to and use of the Products is conditional on Your status as a student or instructor. The Customer:
(A) agrees to immediately discontinue use of all JetBrains Toolbox Products, if the Customer ceases to be a student or an instructor; and
(B) warrants that the information Customer provides to JetBrains about the Customer’s status as a student or instructor is complete and accurate. This includes the use of legally valid and verifiable names and personal details.

4. ACCESS TO PRODUCTS

4.1. You must register for a JetBrains Account and have Internet access in order to access or receive Products, or to renew a subscription. Any registration information that You provide to Us via Your JetBrains Account must be accurate, current and complete. You must also update Your information so that We may send notices, statements and other information to You by email or through Your JetBrains Account. You are responsible for all actions taken through Your accounts.

4.2. You may use Your JetBrains Account credentials in the Product so We can verify Your rights to use the Product online. You acknowledge and agree that the Product will periodically connect to JetBrains servers to update this information including changes to JetBrains Account credentials and the Toolbox Subscription plan.

4.3. All deliveries under this Agreement will be electronic. You must have an Internet connection in order to access Your JetBrains Account and to receive any deliveries. For the avoidance of doubt, You are responsible for Product download and installation.

5. SUBSCRIPTION RENEWAL

5.1. Customer may renew its Product subscription for another year by submitting a written request to JetBrains 30 (thirty) days prior to the end of the Toolbox Subscription term.

5.2. If not agreed otherwise in writing between JetBrains and Customer, in the event of subscription renewal the relationship between the parties shall be governed and amended (if applicable) by the terms and conditions of the subscription agreement covering use of the Product available at www.jetbrains.com on the day of subscription renewal.

6. FEEDBACK

You have no obligation to provide Us with ideas, suggestions, or proposals («Feedback»). However, if You submit Feedback to Us, then You grant Us a non-exclusive, worldwide, royalty-free license that is sub-licensable and transferable, to make, use, sell, have made, offer to sell, import, reproduce, publicly display, distribute, modify, or publicly perform the Feedback in any manner without any obligation, royalty or restriction based on intellectual property rights or otherwise.

7. THIRD PARTY SOFTWARE

7.1. The Products include code and libraries licensed to Us by third parties, including open source software («Third-Party Software»). A list of Third Party Software included in each Product is available in the Product documentation. All Third Party Software is provided to You under the respective terms stipulated in the Product documentation.

7.2. JETBRAINS PROVIDES NO WARRANTY, EXPRESS OR IMPLIED, WITH RESPECT TO ANY THIRD-PARTY SOFTWARE AND EXPRESSLY DISCLAIMS ANY WARRANTY OR CONDITION OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, TITLE, AND NON-INFRINGEMENT.

8. WARRANTY LIMITATIONS

8.1 ALL PRODUCTS ARE PROVIDED TO CUSTOMER ON AN «AS IS» AND «AS AVAILABLE» BASIS. USE OF THE PRODUCTS IS AT CUSTOMER’S OWN RISK.

8.2 JETBRAINS MAKES NO WARRANTY AS TO THE PRODUCTS’ USE OR PERFORMANCE. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS (OR ITS AFFILIATES, SHAREHOLDERS, AGENTS, DIRECTORS, AND EMPLOYEES), ITS LICENSORS, SUPPLIERS (WHICH SHALL INCLUDE THE PROVIDERS OF THIRD PARTY SOFTWARE), AND RESELLERS (COLLECTIVELY HEREUNDER, «JETBRAINS PARTIES») DISCLAIM ALL WARRANTIES AND CONDITIONS, WHETHER EXPRESS OR IMPLIED (INCLUDING, BUT NOT LIMITED TO, IMPLIED WARRANTIES OF MERCHANTABILITY; FITNESS FOR A PARTICULAR PURPOSE; TITLE; AND NON-INFRINGEMENT) WITH REGARD TO THE PRODUCTS AND THE PROVISION OF OR FAILURE TO PROVIDE SUPPORT SERVICES.

TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, JETBRAINS PARTIES DO NOT REPRESENT OR WARRANT THAT THE PRODUCTS: (A) ARE ACCURATE, RELIABLE OR CORRECT; (B) WILL MEET ANY CUSTOMER REQUIREMENTS; (C) WILL BE AVAILABLE AT ANY PARTICULAR TIME OR LOCATION, UNINTERRUPTED OR SECURE; (D) ARE FREE OF DEFECTS OR ERRORS AND THAT ANY, IF FOUND, WILL BE CORRECTED; AND/OR (E) ARE FREE OF VIRUSES OR OTHER HARMFUL COMPONENTS.

8.3 ANY CONTENT OR DATA DOWNLOADED OR OTHERWISE OBTAINED THROUGH THE USE OF THE PRODUCTS ARE DOWNLOADED AT CUSTOMER’S OWN RISK; CUSTOMER AGREES IT IS SOLELY RESPONSIBLE FOR ANY DAMAGE TO ITS PROPERTY OR LOSS OF DATA THAT RESULTS FROM SUCH DOWNLOAD.

8.4 CUSTOMER MAY HAVE OTHER RIGHTS, WHICH VARY FROM JURISDICTION TO JURISDICTION. THIS DOCUMENT IS NOT INTENDED TO ABROGATE SUCH RIGHTS.

9. DISCLAIMER OF DAMAGES

9.1. TO THE MAXIMUM EXTENT PERMITTED BY APPLICABLE LAW, IN NO EVENT WILL THE JETBRAINS PARTIES BE LIABLE TO CUSTOMER, CUSTOMER’S AFFILIATES, USERS, OR ANYONE ELSE FOR: (A) ANY LOSS OF USE, DATA, GOODWILL, OR PROFITS, WHETHER OR NOT FORESEEABLE; (B) ANY LOSS OR DAMAGES IN CONNECTION WITH TERMINATION OR SUSPENSION OF CUSTOMER’S ACCESS TO THE PRODUCTS IN ACCORDANCE WITH THIS AGREEMENT; OR (C) ANY SPECIAL, INCIDENTAL, INDIRECT, CONSEQUENTIAL, EXEMPLARY OR PUNITIVE DAMAGES WHATSOEVER (EVEN IF THE RELEVANT JETBRAINS PARTY HAS BEEN ADVISED OF THE POSSIBILITY OF THESE DAMAGES), INCLUDING THOSE (X) RESULTING FROM LOSS OF USE, DATA, OR PROFITS, WHETHER OR NOT FORESEEABLE, (Y) BASED ON ANY THEORY OF LIABILITY, INCLUDING BREACH OF CONTRACT OR WARRANTY, STRICT LIABILITY, NEGLIGENCE OR OTHER TORTIOUS ACTION, OR (Z) ARISING FROM ANY OTHER CLAIM ARISING OUT OF OR IN CONNECTION WITH CUSTOMER’S USE OF OR ACCESS TO THE PRODUCTS OR SUPPORT. THE FOREGOING LIMITATION OF LIABILITY SHALL APPLY TO THE FULLEST EXTENT PERMITTED BY LAW IN THE APPLICABLE JURISDICTION.

9.2. THE JETBRAINS PARTIES’ TOTAL LIABILITY IN ANY MATTER ARISING OUT OF OR IN RELATION TO THIS AGREEMENT IS LIMITED TO TEN (10) US DOLLARS. THIS LIMITATION WILL APPLY EVEN IF THE JETBRAINS PARTIES HAVE BEEN ADVISED OF THE POSSIBILITY OF LIABILITY EXCEEDING SUCH AN AMOUNT AND NOTWITHSTANDING ANY FAILURE OF THE ESSENTIAL PURPOSE OF ANY LIMITED REMEDY.

10. TERM AND TERMINATION

10.1. The term of this Agreement will commence upon acceptance of this Agreement by Customer as set forth in the preamble above, and will continue for each Product through the end of the applicable subscription period specified in the respective Subscription Confirmation or in the case of Redistributable Products until terminated by either Customer or JetBrains. This Agreement can be renewed under the terms set forth in Section 5 of this Agreement with respect to a Product for a successive Toolbox Subscription term, unless terminated as set forth herein.

10.2. You may terminate this Agreement at any time by cancelling the subscription for one or more Products via Your JetBrains Account. If such termination occurs during a then-current subscription period, this Agreement will continue to be effective until the end of that subscription period. In the case of Redistributable Products, Customer may terminate this Agreement with immediate effect by notifying JetBrains of such termination, discontinuing use of the Redistributable Product and deleting all copies of the Redistributable Product from its Clients and archives.

10.3. JetBrains may terminate this agreement if:
(A) Customer has breached this Agreement and fails to cure such breach within thirty (30) days of written notice thereof;
(B) JetBrains is required to do so by law (for example, where the provision of the JetBrains Toolbox to Customer is, or becomes, unlawful); or
(C) JetBrains elects to discontinue providing the JetBrains Toolbox, in whole or in part.

10.4. JetBrains will make reasonable effort to notify Customer via email as follows:
Thirty (30) days prior to termination of the Agreement in the events specified in Clauses 10.3(B) and 10.3(C) above.

10.5. If JetBrains reasonably believes that:
(A) the use of any JetBrains Toolbox Product by the Customer or associated with the Customer’s JBA is unauthorized or fraudulent;
(B) information provided to JetBrains by the Customer in connection with this Agreement is incomplete, inaccurate, legally invalid or unverifiable; or
(C) the Customer has breached Clause 3.4 of this Agreement,

JetBrains may terminate this Agreement on seven (7) day’s notice to the Customer («Notice Period»). From the date of such termination notice until the expiry of the Notice Period, JetBrains may immediate suspend the Customer’s access to the JetBrains Toolbox Products. During the Notice Period, the Customer may object to the termination in writing and must provide any information reasonably requested by JetBrains.

11. EXPORT REGULATIONS

Customer shall comply with all applicable laws and regulations with regards to economic sanctions, export controls, import regulations, and trade embargoes (all herein referred to as «Sanctions»), including those of the European Union and United States (specifically the Export Administration Regulations (EAR)). Customer declares that it is not a person targeted by Sanctions nor is it otherwise owned or controlled by or acting on behalf of any person targeted by Sanctions. Further, Customer warrants that it will not download or otherwise export or re-export the JetBrains Toolbox or any related technical data directly or indirectly to any person targeted by Sanctions or download or otherwise use the JetBrains Toolbox for any end-use prohibited or restricted by Sanctions.

12. GENERAL

12.1. Entire Agreement. This Agreement, including the Third Party Software license terms, constitutes the entire agreement between the parties concerning its subject matter and supersedes any prior agreements between You and JetBrains regarding Your use of any JetBrains Products covered by the JetBrains Toolbox. No purchase order, other ordering document or any handwritten or typewritten text which purports to modify or supplement the printed text of this Agreement or any schedule will add to or vary the terms of this Agreement unless signed by both Customer and JetBrains.

12.2. Reservation of Rights. JetBrains reserves the right at any time to cease the support of the JetBrains Toolbox and to alter prices, features, specifications, capabilities, functions, terms of use, release dates, general availability or other characteristics of the JetBrains Toolbox.

12.3. Changes to this Agreement. We may update or modify this Agreement from time to time, including any referenced policies and other documents. If a revision meaningfully reduces Your rights, We will use reasonable efforts to notify You (by, for example, sending email to the email address of the billing or technical contact You provided to us, posting on our blog, through Your JetBrains Account, or via the Product itself). If We modify this Agreement, the modified version of the Agreement will be effective from the start of the next Toolbox Subscription term. In this case, if You object to the updated Agreement terms, as Your exclusive remedy, You may cancel the Toolbox Subscription. You may be required to click through the updated Agreement to show Your acceptance. For the avoidance of doubt, each Subscription Confirmation is subject to the version of the Agreement in effect on the Subscription Confirmation date.

12.4. Severability. If a particular term of this Agreement is not enforceable, the unenforceability of that term will not affect any other terms of this Agreement.

12.5. Headings. Headings and titles are for convenience only and do not affect the interpretation of this Agreement.

12.6. No Waiver. Our failure to enforce or exercise any part of this Agreement is not a waiver of that section.

12.7. Governing Law. This Agreement will be governed by the laws of the Czech Republic, without regard to conflict of laws principles. Customer agrees that any litigation relating to this Agreement may only be brought in, and will be subject to the jurisdiction of, any competent court of the Czech Republic. The parties agree that the United Nations Convention on Contracts for the International Sale of Goods does not apply to this Agreement.

12.8. You declare that You have had sufficient opportunity to review this Agreement, understand the content of all of its clauses, negotiate its terms and seek independent professional legal advice in that respect before entering into it. Consequently, any statutory «form contract» («adhesion contract») regulations shall not be applicable to this Agreement.

12.9. Notice. JetBrains may deliver any notice to Customer via electronic mail to an email address provided by Customer, JetBrains Account, registered mail, personal delivery or renowned express courier (such as DHL, FedEx or UPS). Any such notice will be deemed to be effective (i) on the day the notice is sent to Customer via email, (ii) upon being uploaded to Your JetBrains Account (irrespective of when Customer actually receives it), (iii) upon personal delivery, (iv) one (1) day after deposit with an express courier, (v) or five (5) days after deposit in the mail, whichever occurs first.

12.10. Children and minors. If You are under 18 years old, then by entering into this Agreement you explicitly stipulate, that (i) You have legal capacity to conclude this Agreement or that you have valid consent from a parent or legal guardian to do so and (ii) You understand the JetBrains Privacy Policy available at https://www.jetbrains.com/company/privacy.html. You may not enter into this Agreement if you are under 13 years old. IF YOU DO NOT UNDERSTAND THIS SECTION, DO NOT UNDERSTAND THE JETBRAINS PRIVACY POLICY OR DO NOT KNOW WHETHER YOU HAVE THE LEGAL CAPACITY TO ACCEPT THESE TERMS, PLEASE ASK YOUR PARENT OR LEGAL GUARDIAN FOR HELP.

 

For exceptions or modifications to this Agreement, please contact JetBrains at:
Address: Na Hrebenech II 1718/10, Prague, 14000, Czech Republic
Fax: +420 241 722 540
E-mail: sales@jetbrains.com

 

모집직무

담당업무

자격요건

웹툰불법유출

감지시스템

연구개발

(ToonRader)

- 불법 웹툰 유출자 식별을 위한 이미지

  워터마킹 연구 불법 유출 사전 탐지를 위한

  데이터 분석 파이프라인 구축

- 비가시성 이미지 워터마킹 지식 또는

  활용(연구) 경험이 있는

- Python 기반의 Image Processing,

  Data Analysis,  개발 기술을 보유한

리서처/리서치

엔지니어

- 웹툰 동영상 관련 머신러닝/딥러닝 기반

  연구구현 모델 성능 최적화, AI 프로덕션

  엔지니어링

- 딥러닝 프레임워크(TensorFlow, PyThorch )

  능숙하게 다루는

- 머신러닝/딥러닝 프로젝트 진행 혹은

  연구경험이 있는

  (모델 구현 중심적인 역할 경험)

서버개발

- 네이버웹툰, 웹소설, 라인웹툰, 시리즈,

  시리즈온의 서버개발

- 글로벌 환경에서도 통용될 있는 백엔드

  공통 플랫폼 개발

- Java & Spring Framework 기반 서버

  개발 업무(유관경력 3 이상) 또는

  그에 준하는 역랑을 보유하신

안드로이드

앱개발

- 네이버웹툰 웹소설, 라인웹툰, 시리즈,

  시리즈온의 안드로이드 개발

- 이미지뷰어, ePub뷰어, 동영상뷰어,

  다국어 개발

- Java/Kotlin 프로그래밍 기본 지식과 함께

  Android 기본 Component 대한

  이해가 있는

- Android SDK UI 컴포넌트로 자유롭게

  UI 구성할 있는

iOS 앱개발

- 네이버웹툰, 웹소설, 라인웹툰, 시리즈,

  시리즈온의 iOS 개발

- Swift/Objective-C 개발 경험이 있고,

  Autolayout, Storyboard 사용

  디자인 패턴에 대한 지식이 있는

빅데이터

플랫폼개발

- 네이버웹툰, 웹소설, 라인웹툰, 시리즈,

  시리즈온의 데이터 ETL 처리

- 사용자의 데이터를 수집 · 정제하여

  운영자를 위한 지표 시각화 개발

- 대용량 데이터 설계에 대한 기본 지식과

  모델링 경험이 있는

- Java/Javascript/Python 개발경험과

  프로그래밍 기본 지식이 있는

 

'Blog History' 카테고리의 다른 글

103  (0) 2020.03.08
102  (0) 2020.03.08
100  (0) 2020.03.06
099  (0) 2020.03.04
098  (0) 2020.03.03

db selectNoCd:mNmCd] =
and a.yn_svr_trsm<>'Y' 

hjhselectdefect query = select a.id_mbil                            ,a.cd_dong                            ,a.nohs                            ,c.nm_loc                            ,d.nm_rgon                            ,e.nm_dfct_type                            ,a.dfct_cnts                            ,a.cd_hndl_stat                            ,a.yn_re_clsf_rqst                            ,a.id_wrk_fmer_pic_atch_file                            ,a.id_wrk_aftr_pic_atch_file                            ,f.nm_dong                            ,a.dnt_rgst                            ,a.id_rgon                           ,a.cd_cpny                           from ddtbt_dfct a                            inner join ddtbt_hosh b on b.cd_dong=a.cd_dong and b.nohs=a.nohs                            inner join ddtbt_site_tppg_loc c on c.cd_tppg=b.cd_tppg and c.id_loc=a.id_loc                            inner join ddtbt_site_loc_rgon d on d.id_loc=a.id_loc and d.id_rgon=a.id_rgon                            inner join ddtbt_rgon_dfct_type e on e.id_rgon=a.id_rgon and e.id_dfct_type=a.id_dfct_type                            inner join ddtbt_dong f on f.cd_dong=a.cd_dong                            where a.cd_dong like '%' and a.nohs like '%' and a.yn_re_clsf_rqst like '%'                            and a.mode like '%'                            and a.yn_svr_trsm<>'Y'                            and a.cd_hndl_stat like '%'                                     order by a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon;


UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(6, 11, 22, 22)];

        [imageUp resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 22, 22)];
        [imageDn resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 22, 22)];
        
        [btn setBackgroundImage:imageUp forState:UIControlStateNormal];
        [btn setBackgroundImage:imageDn forState:UIControlStateSelected];
        [btn setBackgroundImage:imageDn forState:UIControlStateHighlighted];

yn_cmpx_ctyp
id_flwg_ctyp
cnts_dfct_mgt

-----END CERTIFICATE-----
Remove
* Required fields
Cancel
제출
plesk.com Suggest an Idea 
Hide
1Hide Completed
The installation of WordPress 4.9.6-255 for hajunho.com was successfully updated.

Hosting Settings for hajunho.com
This is where you configure website hosting settings and select the features available for your site.

Hosting type
Website [Change]
Website status
Active [Change]
Document root
 / httpdocs
It is impossible to change document root because there are web applications installed on this website.
Preferred domain *

www.hajunho.com

hajunho.com

None
Select the URL (either with or without the www. prefix) to which site visitors will be redirected via a SEO-safe HTTP 301 redirect.
Security
To secure transactions with your site, use SSL/TLS protocol, which encrypts all data and transfers it over a secure connection. To employ SSL/TLS, install an SSL/TLS certificate on the site, and then select it below.


SSL/TLS support 

Permanent SEO-safe 301 redirect from HTTP to HTTPS 
Certificate 

Web scripting and statistics
Specify which of the following programming and scripting languages should be interpreted, executed or otherwise processed by the web server.

 SSI support (use SSI for *.htm, *.html files )
 PHP support (PHP version , run PHP as  )
Note that changing the PHP handler type may disrupt the operation of existing PHP scripts on this website.
Learn how to choose the most suitable PHP settings

CGI support 

Perl support 

Python support 

Microsoft ASP support 
 Microsoft ASP.NET support (Version )
 Web statistics (Protect access to your web statistics with your FTP username and password )

Custom error documents 

Additional write/modify permissions 

Web Deploy publishing 


Your Certificate Signing Request or CSR is an encoded file that contains your application information such as your organization name, domain name, locality and country. It also contains the public key that will be included in your SSL certificate.

You can create your CSR from your Web server software. Once created, paste the CSR code in the textbox on the left.


Learn more
How do I generate a CSR for my SSL certificate?



Important: For security reasons, you must submit your website details for verification within 30 days. In case you're unable to do so, your certificate will be deleted and your money will be refunded.



NSCalendar *gregorian =
       [[NSCalendar alloc] initWithCalendarIdentifier:NSGregorianCalendar];
    NSUInteger dayOfYear =
       [gregorian ordinalityOfUnit:NSDayCalendarUnit
         inUnit:NSYearCalendarUnit forDate:[NSDate date]];

    NSCalendar *gregorian =
    [[NSCalendar alloc] initWithCalendarIdentifier:NSCalendarIdentifierGregorian];
    NSUInteger dayOfYear =
    [gregorian ordinalityOfUnit:NSCalendarUnitDay
                         inUnit:NSCalendarUnitYear forDate:[NSDate date]];

     NSArray *itemArray = [NSArray arrayWithObjects: @"허위보고", @"작업미진", @"재분류", nil];
     UISegmentedControl *seg = [[UISegmentedControl alloc] initWithItems:itemArray];
     [seg setFrame:CGRectMake(12.0, 50.0, 180.0, 25.0)];
     [seg setSegmentedControlStyle:UISegmentedControlStylePlain];
     [seg setSelectedSegmentIndex:0];
     
     UIFont *font = [UIFont boldSystemFontOfSize:12.0f];
     NSDictionary *attributes = [NSDictionary dictionaryWithObject:font forKey:UITextAttributeFont];
     [seg setTitleTextAttributes:attributes forState:UIControlStateNormal];
     
     [seg setTag:101];
     [prompt addSubview:seg];
     
     UITextField *textField = [[UITextField alloc] initWithFrame:CGRectMake(12.0, 85.0, 260.0, 25.0)];
     [textField setBackgroundColor:[UIColor whiteColor]];
     [textField setPlaceholder:@"사유"];
     [textField setText:@""];
     [textField setTag:102];
     [prompt addSubview:textField];
     */
    
    [prompt setTransform:CGAffineTransformMakeTranslation(0.0, 110.0)];


PRAGMA foreign_keys = off;

BEGIN;

ALTER TABLE "DDTBT_DFCT" RENAME TO "_DDTBT_DFCT_old";

CREATE TABLE "DDTBT_DFCT" (
   "id_mbil" number PRIMARY KEY ASC
 , "mode" varchar(2)
 , "id_dfct" number
 , "cd_site" vharchar(6)
 , "cd_hndl_stat" varchar(20)
 , "cd_rcpt_phs" varchar(20)
 , "yn_re_rcpt" varchar(1)
 , "notm_re_rcpt" varchar(6)
 , "dt_rcpt" varchar(8)
 , "id_rcpt_prsn" varchar(20)
 , "cd_dong" varchar(4)
 , "nohs" varchar(5)
 , "cd_loc_clsf" varchar(20)
 , "yn_hosh_comn" varchar(1)
 , "id_loc" number
 , "id_rgon" number
 , "id_dfct_ctyp" number
 , "id_dfct_type" number
 , "id_dfct_caus" number
 , "id_dfct_cl" number
 , "dfct_cnts" varchar(200)
 , "id_wrk_fmer_pic_atch_file" varchar(50)
 , "id_wrk_aftr_pic_atch_file" varchar(50)
 , "yn_re_clsf_rqst" varchar(1)
 , "id_cplt_prsn" varchar(20)
 , "dt_cplt" varchar(8)
 , "notm_vrf_chk" number
 , "dnt_rgst" varchar(8)
 , "id_rgst" varchar(10)
 , "dnt_chg" varchar(8)
 , "id_chg" varchar(10)
 , "cd_re_rcpt_resn" varchar(20)
 , "nm_re_rcpt_resn" varchar(200)
 , "yn_svr_trsm" varchar(1)
 , "search001" number
 , "search002" number
 , "search003" number
 , "cd_cpny" varchar(10)
 , "seq_nipt" varchar(10)
 , "yn_cmpx_ctyp" varchar(1)
 , "id_flwg_ctyp" number
 , "cnts_dfct_mgt" varchar(1000)
);

INSERT INTO "DDTBT_DFCT" (
   "id_mbil"
 , "mode"
 , "id_dfct"
 , "cd_site"
 , "cd_hndl_stat"
 , "cd_rcpt_phs"
 , "yn_re_rcpt"
 , "notm_re_rcpt"
 , "dt_rcpt"
 , "id_rcpt_prsn"
 , "cd_dong"
 , "nohs"
 , "cd_loc_clsf"
 , "yn_hosh_comn"
 , "id_loc"
 , "id_rgon"
 , "id_dfct_ctyp"
 , "id_dfct_type"
 , "id_dfct_caus"
 , "id_dfct_cl"
 , "dfct_cnts"
 , "id_wrk_fmer_pic_atch_file"
 , "id_wrk_aftr_pic_atch_file"
 , "yn_re_clsf_rqst"
 , "id_cplt_prsn"
 , "dt_cplt"
 , "notm_vrf_chk"
 , "dnt_rgst"
 , "id_rgst"
 , "dnt_chg"
 , "id_chg"
 , "cd_re_rcpt_resn"
 , "nm_re_rcpt_resn"
 , "yn_svr_trsm"
 , "search001"
 , "search002"
 , "search003"
 , "cd_cpny"
 , "seq_nipt"
)
SELECT
   "id_mbil"
 , "mode"
 , "id_dfct"
 , "cd_site"
 , "cd_hndl_stat"
 , "cd_rcpt_phs"
 , "yn_re_rcpt"
 , "notm_re_rcpt"
 , "dt_rcpt"
 , "id_rcpt_prsn"
 , "cd_dong"
 , "nohs"
 , "cd_loc_clsf"
 , "yn_hosh_comn"
 , "id_loc"
 , "id_rgon"
 , "id_dfct_ctyp"
 , "id_dfct_type"
 , "id_dfct_caus"
 , "id_dfct_cl"
 , "dfct_cnts"
 , "id_wrk_fmer_pic_atch_file"
 , "id_wrk_aftr_pic_atch_file"
 , "yn_re_clsf_rqst"
 , "id_cplt_prsn"
 , "dt_cplt"
 , "notm_vrf_chk"
 , "dnt_rgst"
 , "id_rgst"
 , "dnt_chg"
 , "id_chg"
 , "cd_re_rcpt_resn"
 , "nm_re_rcpt_resn"
 , "yn_svr_trsm"
 , "search001"
 , "search002"
 , "search003"
 , "cd_cpny"
 , "seq_nipt"
FROM "_DDTBT_DFCT_old";

DROP TABLE "_DDTBT_DFCT_old";

COMMIT;

PRAGMA foreign_keys = ON;

                [dfctData appendString:[NSString stringWithFormat:@""
                                        ,data.id_mbil
                                        ,data.mode
                                        ,data.id_dfct
                                        ,data.cd_site
                                        ,data.cd_hndl_stat
                                        ,data.cd_rcpt_phs
                                        ,data.yn_re_rcpt
                                        ,data.notm_re_rcpt
                                        ,data.dt_rcpt
                                        ,data.id_rcpt_prsn
                                        ,data.cd_dong
                                        ,data.nohs
                                        ,data.cd_loc_clsf
                                        ,data.yn_hosh_comn
                                        ,data.id_loc
                                        ,data.id_rgon
                                        ,data.id_dfct_ctyp
                                        ,data.id_dfct_type
                                        ,data.id_dfct_caus
                                        ,data.id_dfct_cl
                                        ,[data.dfct_cnts stringByReplacingOccurrencesOfString:@"'" withString:@"%26apos;"]
                                        ,data.yn_re_clsf_rqst
                                        ,data.dt_cplt
                                        ,data.notm_vrf_chk
                                        //                                        ,data.dnt_rgst
                                        ,[GlobalVar changingDateTime2YYYYMMDD:data.dnt_rgst]
                                        ,data.id_rgst
                                        //                                        ,data.dnt_chg
                                        ,[GlobalVar changingDateTime2YYYYMMDD:data.dnt_chg]
                                        ,data.id_chg
                                        ,data.cd_re_rcpt_resn
                                        ,data.nm_re_rcpt_resn
                                        ]
                 
                 ];


SSL/TLS Certificates for hajunho.com
If you created a certificate signing request on this server and received the certificate file, upload it here. If you want to upload a certificate and private key pair generated on a different server, or generate a self-signed certificate, click Add SSL/TLS Certificate.

After adding an SSL/TLS certificate to a domain, you need to enable SSL/TLS support and select that certificate in the website hosting settings: Websites & Domains > Hosting Settings of this domain > Security.
Welcome to Whois Support
Chat with Khushi P
avatar
Khushi P
Support Agent


Name:
HAJUNHO
Registered Email Address
hajunho@hotmail.com

 Use this form to generate a request for a certificate, to buy a certificate from your provider, or to generate a self-signed certificate.

A request is a CSR file that contains the information about your domain that you specified in the form. You can submit the request to a certification authority for issuing a certificate for you. You will then upload it using one of the upload forms below.

A self-signed certificate is an identity certificate signed by its own creator. If you use such a certificate, it means that you yourself verify your sites' identity. Although self-signed certificates allow the usage of SSL/TLS, they are trusted less, and considered as less secure.

Bits *

Country *

State or province *
gyeonkido
Location (city) *
Suwon
Organization name (company) *
hajunho.com
Organization department or division name 
Domain name *
hajunho.com
Email *
mynameis@hajunho.com
Request
 Self-Signed

Step 2 of 2: Choose where to receive your verification email from the Certificate Authority

I want to receive my verification email at

admin@hajunho.com
administrator@hajunho.com
postmaster@hajunho.com
d870dguzqb4l@contactprivacy.email
webmaster@hajunho.com
hostmaster@hajunho.com


Your application has been submitted. You will soon receive an email from Comodo with instructions on how to proceed.

Domain Control Validation for:hajunho.com

Dear admin@hajunho.com,

We have received a request to issue an SSL certificate for:
Domain: hajunho.com
Subject: 
             hajunho.com

 and whose email address is admin@hajunho.com
To permit the issuance of the certificate please browse here
and enter the following "validation code":
bQbCv



**************PLEASE NOTE CHOOSING THE OPTION BELOW WILL REJECT THE CERTIFICATE**************
            If neither you nor a trusted colleague made this request for
            a certificate then you can reject it by browsing to Reject
Thank you for being a valued Sectigo customer.

visit our website

get support

Copyright Ⓒ Sectigo Limited, All rights reserved.

Domain Control Validation (Part 2)
Domain Control Validation (Part 2)

Please enter your "validation code" for Order #329865978, then click "Next"

Domain Control Validation (Part 2)
Please note

You have entered the correct Domain Control Validation code, but there is a problem with your order. Please close this window and contact Support!

tiveSSL Certificate for hajunho.com is attached!

Dear admin@hajunho.com,

Thank you for placing your order. We are pleased to announce that your PositiveSSL Certificate for hajunho.com has been issued.

To help reduce domain name mismatch warnings, we have also included the domain name www.hajunho.com in your certificate.

We strongly recommend that you click here for instructions to ensure that your certificate is installed and your webserver is configured correctly.

Attached to this email you should find a .zip file containing:

Root CA Certificate - AddTrustExternalCARoot.crt
Intermediate CA Certificate - USERTrustRSAAddTrustCA.crt
Intermediate CA Certificate - SectigoRSADomainValidationSecureServerCA.crt
Your PositiveSSL Certificate - hajunho_com.crt
You can also find your PositiveSSL Certificate for hajunho.com in text format at the bottom of this email.
Should you have any questions or issues you would like to discuss, please do not hesitate to contact us.

Thank you for being a valued Sectigo customer.

visit our website

get support

Copyright Ⓒ Sectigo Limited, All rights reserved.

Your PositiveSSL Certificate for hajunho.com in text format (if required):


-----BEGIN CERTIFICATE-----
GMIIGuDC

AddTrustExternalCARoot.crt
hajunho_com.crt
SectigoRSADomainValidationSecureServerCA.crt
USERTrustRSAAddTrustCA.crt




Plesk Onyx 17.5.3
 
Logged in as hajunmgm 
Subscription hajunho.com  Help 
Search...
Websites & Domains
Mail
Applications
Files
Databases
Statistics
Users
Account
WordPress
Websites & Domainshajunho.comSSL/TLS Certificates
Change Properties of SSL/TLS Certificate hajunhocerti
Certificate name *
hajunhocerti
Rename
Settings
Use this form to generate a request for a certificate, to buy a certificate from your provider, or to generate a self-signed certificate.

A request is a CSR file that contains the information about your domain that you specified in the form. You can submit the request to a certification authority for issuing a certificate for you. You will then upload it using one of the upload forms below.

A self-signed certificate is an identity certificate signed by its own creator. If you use such a certificate, it means that you yourself verify your sites' identity. Although self-signed certificates allow the usage of SSL/TLS, they are trusted less, and considered as less secure.

Bits 
4096
Country 
State or province 
Location (city) 
Organization name (company) 
Organization department or division name 
Domain Control Validated; PositiveSSL
Domain name 
hajunho.com
Email 
Upload the certificate files
Use this form to upload the components of a certificate as constituent files.

Certificate (*.crt) *

CA certificate (*-ca.crt) 
Upload Certificate
Upload the certificate as text
Use this form to upload the components of a certificate as text. Copy the contents of a file and paste into the corresponding field.

Certificate (*.crt) *
CA certificate (*-ca.crt) 
Upload Certificate
CSR
-----BEGIN CERTIFICATE REQUEST-----old
MIIEzzCCArcCAQAwgYkxCzAJBgNVBAYTAktSMRIwEAYDVQQIEwlHeW9uZ2dpZG8x
EzARBgNVBAcTCnN1d29uIGNpdHkxFjAUBgNVBAoTDWhhanVuaG9kb3Rjb20xFDAS
BgNVBAMTC2hhanVuaG8uY29tMSMwIQYJKoZIhvcNAQkBFhRteW5hbWVpc0BoYWp1
bmhvLmNvbTCCAiIwDQYJKoZIhvcNAQEBBQADggIPADCCAgoCggIBANB5oyrbSB6K
zPLQvepDubilwt/YZP72GB9Xq9LjxcGREHHCzZiuPzWynudAOt3aOApiisikaYun
TtBB3lwZYYft1/rh60nBxjCb0F3q1SjulIYdemOAbUbpKgmbZNxk5pUbinng2cbk
9PoaS4hMiufyLmlkzpWMVpz3rxr9zgBapp7OY19Hi6g3uGKugf31x09nWnoWJQLt
KWmyW3Qfbr9M8qTZDh9L2FZBBVz0LmVSgKGtS3XLgsfbXxBYuJXhUN/BkxWrBgw9
XBNmjB+MiXKrfxgWuRmQnAYvPVYgSjQ62jWuAuaREO4cieWTnR64BOVwRHvn7wJf
1aXivPaswgkDDhQvH4O119pa+vSEt5zE+hA44kDmkbctAfYmAgkJ7nPyFXQuoJ7h
i2/uvipA0J0jK5jwaE1eCbsp+URTObQiws+DJQc55OFR/+O6/p1PrGJAFrtgkpHh
2pOLenQ5A4EMIwGfPiVisMYAC8EC5PAZVjxFebK088PnSen0LYRe4BWojhZVfSeA
a+pNZHCe/fv5PLb10ijmxqtABy98mAydR5j+s+d9C6jmAErNTbg+QPMtgrCCN5F5
8UE1O/BhsOp4KurZri1phMD2+qYubMzBP3gERov0gynZOfk4C/YB8EAfs9E41qyr
a8ljL72zhg/01Wwg5MwKdDjtQpTd35fxAgMBAAGgADANBgkqhkiG9w0BAQsFAAOC
AgEAICx3nFlPmZeZe+2xzn/ZD6qlt94bnRNbtNFxarXzsDm8q8FySYYmXUIQydDy
kRmYk00nph3jpBKdQ5lE68Z5KLbx9iP3XYvyhwF4jPCUDN3CupgXCDuEZb6Sq1o9
3j4PLGdBGKRAIgnsvvCc1In5y6Gwp069CtksK7ultpTZLlJ4b8o78QBEgYQd20kZ
xWrJbkBgxkWvT1bEjQK6+xOhycgS84uILAdskmCBRLY3GR73GO7kg/SS1HwVG18d
qhUCs8YeNJNE7aSLjQrVcOEjPIqXErcSMgY+X/VufvrCgOpc3y95O7SJ0dBsFS/b
zkxijprKgZmO7Pog1EpkrGksfbHubTlVj/wdyTXzpAr9flbPRi9v1js5YjOUAt7j
A61NXvU5266tVCPpg79yR2nrJWVGsy7Yqyvk+IOrjsqP4MVCJkFnImh7W0Le6e8T
bkMF4Kh0CLU2gfNemtFoR+EU3KQqnaRWzkns396P6UOx2QaD9a2gbKIqCjwgLiRe
xBE6nyu2jTakd5P2z+uFLyie0hO34UI4UWegs4E2WCWsqN9W/Ark3AzZNf98uGRh
7Z3uSuOAGY+/X1bY4ObJpsiKP0504YrG2YMIuJOamiE3UYynpktBNUA4qKyoC4aX
pzLjQZk0coGBYGq1trV6/CwkdqMOpllpvBJMBycqGmMjVAo=
-----END CERTIFICATE REQUEST-----
Private key (*.key)
-----BEGIN PRIVATE KEY-----old
MIIJQgIBADANBgkqhkiG9w0BAQEFAASCCSwwggkoAgEAAoICAQDQeaMq20geiszy
0L3qQ7m4pcLf2GT+9hgfV6vS48XBkRBxws2Yrj81sp7nQDrd2jgKYorIpGmLp07Q
Qd5cGWGH7df64etJwcYwm9Bd6tUo7pSGHXpjgG1G6SoJm2TcZOaVG4p54NnG5PT6
GkuITIrn8i5pZM6VjFac968a/c4AWqaezmNfR4uoN7hiroH99cdPZ1p6FiUC7Slp
slt0H26/TPKk2Q4fS9hWQQVc9C5lUoChrUt1y4LH218QWLiV4VDfwZMVqwYMPVwT
ZowfjIlyq38YFrkZkJwGLz1WIEo0Oto1rgLmkRDuHInlk50euATlcER75+8CX9Wl
4rz2rMIJAw4ULx+DtdfaWvr0hLecxPoQOOJA5pG3LQH2JgIJCe5z8hV0LqCe4Ytv
7r4qQNCdIyuY8GhNXgm7KflEUzm0IsLPgyUHOeThUf/juv6dT6xiQBa7YJKR4dqT
i3p0OQOBDCMBnz4lYrDGAAvBAuTwGVY8RXmytPPD50np9C2EXuAVqI4WVX0ngGvq
TWRwnv37+Ty29dIo5sarQAcvfJgMnUeY/rPnfQuo5gBKzU24PkDzLYKwgjeRefFB
NTvwYbDqeCrq2a4taYTA9vqmLmzMwT94BEaL9IMp2Tn5OAv2AfBAH7PRONasq2vJ
Yy+9s4YP9NVsIOTMCnQ47UKU3d+X8QIDAQABAoICAAsj1NI/cXUgWZ9IBD32bIAv
a2Bmwc7V+6gBGU9lmHWleMl7bV0RQpNt/gvBZOPh+0iix2O9VV5/DDkYq/cj7BBF
Z1sio14Hmr2SNeou2EEdrpYUESwr+qrlXrewtA0K3z9sf1PP7hMwvN54dTzNSkbm
rBA5sMhQ/XfZzGOW2GEwduLZiHnY6t+MSrALPysA7SuTDESl1kh3v9TEERr9av+R
7w1cA+MsPF0vkEfNTIVhiToadoPO4ign0sae1w47QgUS5Pctcl9JEBiBTE+LRPT5
sQrqe+2fypaSA6cMhqqP0oU3zTPg4JS4ta2s26J+ltRj0WUFmcH4uQPqP8q2pI+a
B1PlMEQLkrp3j3lK5MILfVWi8v+S2vn9crJoRlgsSIM5xiu00SX/0N/itP6qnPvd
LvsE8Ft8thHPbyv2zQP8i2Ap2vPoIQa0fyu70ymj6F0o1NEbqv17pk/9BncfpnuY
kwdKUZrJoDn66/QDXYpPbt6ZJm7AKlL5/jx0btF79BfiXJMUczADCnX/NcyGhkAL
ugtEwdmaKwAgaFOwxf8XSSmia6Do8zy2o/Y+XXoT9jwGkamuiscKqx0xBpJPhBn4
Yn9QR7gp+3PPxYF5mJgDxxlrReBf6KvXEqbcspuy3/aCOpMsagCRJtjxOTNXxdJT
06/WFBMprxAm/rtPjCzZAoIBAQDpaLqg4Qu6IwUUB5HkXv/UkwndFroBVHBnmAzd
EtHKJZq2+Mi3BoE416EyQ34fqIzjEJ/rMjzzzNWfFGL/7Nbap7CuBVDcXdMMxKkU
5ddwrkxiJEex9YViqOh5ROrGAURcHsQ1jJVrnOgNFw3QDU035GVcwa1Uz93FQ9TD
gIj47ZIh28P/WDhzCF3vbKzsbEXx7wXCDKmJOLs5Vu2Gn3qbLRC2PFe4TJdFkgy0
RtF+Oj9BZAwx/GCzxELaHVyVC0GZuLmbkEqp/42mmdRYD0YqSHj0yKIWh2O3s4tL
Cqe6rMXJRozxRFVBZVWd9y4WDsFJ5Ct31+bKJzAoI5QmgfvrAoIBAQDkpxwc7PGi
nNpfhFr/OkfU0Mr60QtdhgX4+Q3DsHZc1CRbnO1VCSt6Stsxq0Heg40YRtGNOYq1
RaFy2FnMSLaR/BLmcLnLjLJYGbthUPQjj5/wzxNMpp0wssqNkhJupsUEVF5bJ3d1
nVNpYm3y1qL0qDlyqIfj758OMqRF7ZwEm4kMcCID0BpPuua+eedY4/svEFxYrclX
qYxcCZR8D64hqi6LoLF/umo78LyJ6lwLlwFZy0nMnZ1xXftGhbLJsWS0A2SmIx3V
6tN2S2IO8MefXPU83bOkTapfCk76fpJyRZHctRh+KlHrmmbmQI+LQHlibNFq68NZ
k87epFEbZ9CTAoIBAQDGVejoVfMKG0HwcDJHdXY8oylphitOf/r3/FtJ6/j6phOe
0S51YACkVY6zUGi27BmzxOevCsSCgpcvkzpAsHct2/qlFP1OFCgHnID0sg3swR9E
8gE+Nhw+5rqMecRptp/pC3e87RX3GKCSpvlkxjjMerarKCRqgiu3uVjtO6aop+9Z
+A3HR6bIEN8JWTZju+l/mJUy/GF/qgZlxfkWQSQFAjlGMWZ0xBhy1JUZB2hys3oW
zbYTL5rYhrgr8XE/cQ4wWqjViLn5VJ+AZwzqOyhrO6QUlPwu2qMgcV+2x3oZhUCY
NOwFBATSChLDpUuzEJysdkd9kaeaNcyU/w6f3io7AoIBADCG+uN0si/V5E7DU2C5
qMcU7Q9gUG4v5JKboP04NVasO28qFgCnKpAQ1QZsl1U3TDmrxguX+8VPGt255w0B
HaZL/mLj57q4iJ1EEM2tlbL6Z3J/MFRjRBcyyuRS7RCI2mV51nC4JpVSp4JFPpp8
TSdpkI+yDu0kTPiBbPXeYO9lZye5oK54ey0SuKgSTTRDZmrtqPu1Hnc5Z62c5uOR
nF5OtQQzPZijIqrIA+utTo2zJbk9+NKxXNnTnWGxPGmr+XhvA+xypYFiDjEb/Jq5
JVTAMNgTIW4sgY0cLfjh5gjUlQlnceRM7Qf4w//4Eb73Fwv5llR/5vza7tu3ufL8
DHsCggEAQSAj9dWGzCh+OOh/4s2aH8cCD5+oFLbWSdrgB/LVk3gUr71YE9spMOKz
j1Zg6atrgAA5gQECHlLM6xvCu5ZIyMoIuQnqtLDaSXosEgMonqU96XmIC/mbQCbI
XkY4a5E3dVzO/JqeIX3AMhuzf6h3UoWAydN8YfXITtZw2KyBer8P/0mSZqtUcHCi
26pK1zSZd3jfvGda5Tb+LFzPEgLB4f/7kBqJYWmWOn27brNc9Lise20XXRMgfRJE
VBVqidvF7rYQYLqM3t+BEbj6NCDSxBV4oh6AHap/Sds0EbC4Mv7cGIGOc/O8t1ax
1h6r+wmYvIkWf1aCAz8DS91RINliPg==
-----END PRIVATE KEY-----
Certificate (*.crt)
-----BEGIN CERTIFICATE-----old
MIIG7zCCBdegAwIBAgIQIbgoIpg9PrKjIzhulDK7YjANBgkqhkiG9w0BAQsFADCB
jzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G
A1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQD
Ey5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB
MB4XDTE5MDMwNTAwMDAwMFoXDTIwMDMwNDIzNTk1OVowTzEhMB8GA1UECxMYRG9t
YWluIENvbnRyb2wgVmFsaWRhdGVkMRQwEgYDVQQLEwtQb3NpdGl2ZVNTTDEUMBIG
A1UEAxMLaGFqdW5oby5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
AQDQeaMq20geiszy0L3qQ7m4pcLf2GT+9hgfV6vS48XBkRBxws2Yrj81sp7nQDrd
2jgKYorIpGmLp07QQd5cGWGH7df64etJwcYwm9Bd6tUo7pSGHXpjgG1G6SoJm2Tc
ZOaVG4p54NnG5PT6GkuITIrn8i5pZM6VjFac968a/c4AWqaezmNfR4uoN7hiroH9
9cdPZ1p6FiUC7Slpslt0H26/TPKk2Q4fS9hWQQVc9C5lUoChrUt1y4LH218QWLiV
4VDfwZMVqwYMPVwTZowfjIlyq38YFrkZkJwGLz1WIEo0Oto1rgLmkRDuHInlk50e
uATlcER75+8CX9Wl4rz2rMIJAw4ULx+DtdfaWvr0hLecxPoQOOJA5pG3LQH2JgIJ
Ce5z8hV0LqCe4Ytv7r4qQNCdIyuY8GhNXgm7KflEUzm0IsLPgyUHOeThUf/juv6d
T6xiQBa7YJKR4dqTi3p0OQOBDCMBnz4lYrDGAAvBAuTwGVY8RXmytPPD50np9C2E
XuAVqI4WVX0ngGvqTWRwnv37+Ty29dIo5sarQAcvfJgMnUeY/rPnfQuo5gBKzU24
PkDzLYKwgjeRefFBNTvwYbDqeCrq2a4taYTA9vqmLmzMwT94BEaL9IMp2Tn5OAv2
AfBAH7PRONasq2vJYy+9s4YP9NVsIOTMCnQ47UKU3d+X8QIDAQABo4IChDCCAoAw
HwYDVR0jBBgwFoAUjYxexFStiuF36Zv5mwXhuAGNYeEwHQYDVR0OBBYEFAla7fAw
3cwJZligoDEHTLKuiu9/MA4GA1UdDwEB/wQEAwIFoDAMBgNVHRMBAf8EAjAAMB0G
A1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBJBgNVHSAEQjBAMDQGCysGAQQB
sjEBAgIHMCUwIwYIKwYBBQUHAgEWF2h0dHBzOi8vc2VjdGlnby5jb20vQ1BTMAgG
BmeBDAECATCBhAYIKwYBBQUHAQEEeDB2ME8GCCsGAQUFBzAChkNodHRwOi8vY3J0
LnNlY3RpZ28uY29tL1NlY3RpZ29SU0FEb21haW5WYWxpZGF0aW9uU2VjdXJlU2Vy
dmVyQ0EuY3J0MCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5zZWN0aWdvLmNvbTAn
BgNVHREEIDAeggtoYWp1bmhvLmNvbYIPd3d3LmhhanVuaG8uY29tMIIBBAYKKwYB
BAHWeQIEAgSB9QSB8gDwAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e
0YUAAAFpTGA4xwAABAMARzBFAiAwt+eYcqwGRBOlrt4gD9PuyxifFAfWFlxlJ+TR
CjwsxwIhAN9dv0K9hZbNP+plStSWCRvuaY3gSN6xUX8nMko81c5qAHYAXqdz+d9W
wOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFpTGA5AgAABAMARzBFAiEAg9yV
wEy2vINKoqVDDgjqgvpGUsTjwzGt6EhANeth6q0CIGt85O4Vy2q7LOakECoAgLmF
cH/6yL5WksrCcFIYh1JUMA0GCSqGSIb3DQEBCwUAA4IBAQABOLXlOcm/j7Br4dKB
svr7l0WneidjbRifHxTbbzdZz7LVy5DTRrr3eHQLa+V3/euQD4oGhva019lLNfcN
3LalAyhrtRcXom7LDovH9i+IWmPI+zXqz6GggoQ/GCnJPhe1AaxeMSmaRptffBWB
l+xav1JKEv2MFFnJMlf8Eo45EBgEmq7/EkC5jz7Sg2ZDq4u6g755gJRsaWf0XfMl
plC9CIfgLqr6bgQ2hqKN7Fapst2Nl7t9Ny/JN081DTCN/7X6WB2lM3upyv63NuLf
6jsaFNAb98gg0O0LoGppEfzXkgI6dXBVFR3VF6K9B6Gbix5YE0AlXbJ2NQRixY3d
AZOx
-----END CERTIFICATE--/---
CA certificate (*-ca.crt)
-----BEGIN CERTIFICATE-----old
MIIG7zCCBdegAwIBAgIQIbgoIpg9PrKjIzhulDK7YjANBgkqhkiG9w0BAQsFADCB
jzELMAkGA1UEBhMCR0IxGzAZBgNVBAgTEkdyZWF0ZXIgTWFuY2hlc3RlcjEQMA4G
A1UEBxMHU2FsZm9yZDEYMBYGA1UEChMPU2VjdGlnbyBMaW1pdGVkMTcwNQYDVQQD
Ey5TZWN0aWdvIFJTQSBEb21haW4gVmFsaWRhdGlvbiBTZWN1cmUgU2VydmVyIENB
MB4XDTE5MDMwNTAwMDAwMFoXDTIwMDMwNDIzNTk1OVowTzEhMB8GA1UECxMYRG9t
YWluIENvbnRyb2wgVmFsaWRhdGVkMRQwEgYDVQQLEwtQb3NpdGl2ZVNTTDEUMBIG
A1UEAxMLaGFqdW5oby5jb20wggIiMA0GCSqGSIb3DQEBAQUAA4ICDwAwggIKAoIC
AQDQeaMq20geiszy0L3qQ7m4pcLf2GT+9hgfV6vS48XBkRBxws2Yrj81sp7nQDrd
2jgKYorIpGmLp07QQd5cGWGH7df64etJwcYwm9Bd6tUo7pSGHXpjgG1G6SoJm2Tc
ZOaVG4p54NnG5PT6GkuITIrn8i5pZM6VjFac968a/c4AWqaezmNfR4uoN7hiroH9
9cdPZ1p6FiUC7Slpslt0H26/TPKk2Q4fS9hWQQVc9C5lUoChrUt1y4LH218QWLiV
4VDfwZMVqwYMPVwTZowfjIlyq38YFrkZkJwGLz1WIEo0Oto1rgLmkRDuHInlk50e
uATlcER75+8CX9Wl4rz2rMIJAw4ULx+DtdfaWvr0hLecxPoQOOJA5pG3LQH2JgIJ
Ce5z8hV0LqCe4Ytv7r4qQNCdIyuY8GhNXgm7KflEUzm0IsLPgyUHOeThUf/juv6d
T6xiQBa7YJKR4dqTi3p0OQOBDCMBnz4lYrDGAAvBAuTwGVY8RXmytPPD50np9C2E
XuAVqI4WVX0ngGvqTWRwnv37+Ty29dIo5sarQAcvfJgMnUeY/rPnfQuo5gBKzU24
PkDzLYKwgjeRefFBNTvwYbDqeCrq2a4taYTA9vqmLmzMwT94BEaL9IMp2Tn5OAv2
AfBAH7PRONasq2vJYy+9s4YP9NVsIOTMCnQ47UKU3d+X8QIDAQABo4IChDCCAoAw
HwYDVR0jBBgwFoAUjYxexFStiuF36Zv5mwXhuAGNYeEwHQYDVR0OBBYEFAla7fAw
3cwJZligoDEHTLKuiu9/MA4GA1UdDwEB/wQEAwIFoDAMBgNVHRMBAf8EAjAAMB0G
A1UdJQQWMBQGCCsGAQUFBwMBBggrBgEFBQcDAjBJBgNVHSAEQjBAMDQGCysGAQQB
sjEBAgIHMCUwIwYIKwYBBQUHAgEWF2h0dHBzOi8vc2VjdGlnby5jb20vQ1BTMAgG
BmeBDAECATCBhAYIKwYBBQUHAQEEeDB2ME8GCCsGAQUFBzAChkNodHRwOi8vY3J0
LnNlY3RpZ28uY29tL1NlY3RpZ29SU0FEb21haW5WYWxpZGF0aW9uU2VjdXJlU2Vy
dmVyQ0EuY3J0MCMGCCsGAQUFBzABhhdodHRwOi8vb2NzcC5zZWN0aWdvLmNvbTAn
BgNVHREEIDAeggtoYWp1bmhvLmNvbYIPd3d3LmhhanVuaG8uY29tMIIBBAYKKwYB
BAHWeQIEAgSB9QSB8gDwAHYAu9nfvB+KcbWTlCOXqpJ7RzhXlQqrUugakJZkNo4e
0YUAAAFpTGA4xwAABAMARzBFAiAwt+eYcqwGRBOlrt4gD9PuyxifFAfWFlxlJ+TR
CjwsxwIhAN9dv0K9hZbNP+plStSWCRvuaY3gSN6xUX8nMko81c5qAHYAXqdz+d9W
wOe1Nkh90EngMnqRmgyEoRIShBh1loFxRVgAAAFpTGA5AgAABAMARzBFAiEAg9yV
wEy2vINKoqVDDgjqgvpGUsTjwzGt6EhANeth6q0CIGt85O4Vy2q7LOakECoAgLmF
cH/6yL5WksrCcFIYh1JUMA0GCSqGSIb3DQEBCwUAA4IBAQABOLXlOcm/j7Br4dKB
svr7l0WneidjbRifHxTbbzdZz7LVy5DTRrr3eHQLa+V3/euQD4oGhva019lLNfcN
3LalAyhrtRcXom7LDovH9i+IWmPI+zXqz6GggoQ/GCnJPhe1AaxeMSmaRptffBWB
l+xav1JKEv2MFFnJMlf8Eo45EBgEmq7/EkC5jz7Sg2ZDq4u6g755gJRsaWf0XfMl
plC9CIfgLqr6bgQ2hqKN7Fapst2Nl7t9Ny/JN081DTCN/7X6WB2lM3upyv63NuLf
6jsaFNAb98gg0O0LoGppEfzXkgI6dXBVFR3VF6K9B6Gbix5YE0AlXbJ2NQRixY3d
AZOx


'Blog History' 카테고리의 다른 글

102  (0) 2020.03.08
101  (0) 2020.03.08
099  (0) 2020.03.04
098  (0) 2020.03.03
097  (0) 2020.03.03

 

Name   HAJUNHO
Order Cost   USD 26.40
Invoice Amount   USD 26.40
Pending Amount   USD 0.00
Transaction Date   Mar 3, 2020
Description   Renewal of Positive SSL for hajunho.com for 12 months
Company   TheJava
Address1   I life SUWON
Address2    
Address3    
City   SUWON
Zip   400-700
State/Region/Province   Busan Gwang'yeogsi(Pusan-Kwangyðkshi)
Country   KR

 

 

 

Admin Area for hajunho@hotmail.com

  •  

 

 

 

 

Buy

 

Funds Summary

Total Receipts:USD 1025.72

Current Balance:USD 134.32

Language: English

Copyright © Whois.com All Rights Reserved

'Blog History' 카테고리의 다른 글

101  (0) 2020.03.08
100  (0) 2020.03.06
098  (0) 2020.03.03
097  (0) 2020.03.03
096  (0) 2020.03.03

Deleting Codes.


[imageUp resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 22, 22)];
            [imageDn resizableImageWithCapInsets:UIEdgeInsetsMake(0, 0, 22, 22)];
            
            [btn setBackgroundImage:imageUp forState:UIControlStateNormal];
            [btn setBackgroundImage:imageDn forState:UIControlStateSelected];
            [btn setBackgroundImage:imageDn forState:UIControlStateHighlighted];
            


          NSUInteger row = [indexPath row];
                  UITableViewCell *cell = [tableView dequeueReusableCellWithIdentifier:CellIdentifier];
        
             Configure the cell...
            
             cell바탕색 지정
            [cell.contentView setBackgroundColor:[GlobalVar pastelCellColor]];
             UIImage *imageUp = [UIImage imageNamed:@"cm_checkup.png"];
             UIImage *imageDn = [UIImage imageNamed:@"cm_checkdn.png"];
             UIButton *btn = [[UIButton alloc] initWithFrame:CGRectMake(6, 2, 38, 40)];
             [btn addTarget:self action:@selector(onClickCheck:) forControlEvents:UIControlEventTouchUpInside];
             [btn setBackgroundImage:imageUp forState:UIControlStateNormal];
             [btn setBackgroundImage:imageDn forState:UIControlStateSelected];
             [btn setTag:0];
             [cell.contentView addSubview:btn];
             [btn release];
             
             UILabel *name = [[UILabel alloc] initWithFrame:CGRectMake(50, 2, 70, 40)];
             name.textAlignment = UITextAlignmentLeft;
             name.backgroundColor = [UIColor clearColor];
             name.font = [UIFont systemFontOfSize:14];
             [name setTag:1];
             [cell.contentView addSubview:name];
             [name release];
             
             UILabel *dept = [[UILabel alloc] initWithFrame:CGRectMake(120, 2, 90, 40)];
             dept.textAlignment = UITextAlignmentLeft;
             dept.backgroundColor = [UIColor clearColor];
             dept.font = [UIFont systemFontOfSize:14];
             dept.textColor = [GlobalVar pastelSilverColor];
             [dept setAdjustsFontSizeToFitWidth:YES];
             [dept setTag:2];
             [cell.contentView addSubview:dept];
             [dept release];
             
             
             UILabel *hp = [[UILabel alloc] initWithFrame:CGRectMake(210, 2, 105, 40)];
             hp.textAlignment = UITextAlignmentLeft;
             hp.backgroundColor = [UIColor clearColor];
             hp.font = [UIFont systemFontOfSize:13];
             [hp setTag:3];
             [cell.contentView addSubview:hp];
             [hp release];




SAP Business Suite(ECC6.0. S/4 HANA..)

Oracle E-Business Suite

Oracle Database

SAP HANA Database

IBM DB2 Database


PRAGMA foreign_keys = off;

BEGIN;

ALTER TABLE "DDTBT_DFCT" RENAME TO "_DDTBT_DFCT_old";

CREATE TABLE "DDTBT_DFCT" (
   "id_mbil" number PRIMARY KEY ASC
 , "mode" varchar(2)
 , "id_dfct" number
 , "cd_site" vharchar(6)
 , "cd_hndl_stat" varchar(20)
 , "cd_rcpt_phs" varchar(20)
 , "yn_re_rcpt" varchar(1)
 , "notm_re_rcpt" varchar(6)
 , "dt_rcpt" varchar(8)
 , "id_rcpt_prsn" varchar(20)
 , "cd_dong" varchar(4)
 , "nohs" varchar(5)
 , "cd_loc_clsf" varchar(20)
 , "yn_hosh_comn" varchar(1)
 , "id_loc" number
 , "id_rgon" number
 , "id_dfct_ctyp" number
 , "id_dfct_type" number
 , "id_dfct_caus" number
 , "id_dfct_cl" number
 , "dfct_cnts" varchar(200)
 , "id_wrk_fmer_pic_atch_file" varchar(50)
 , "id_wrk_aftr_pic_atch_file" varchar(50)
 , "yn_re_clsf_rqst" varchar(1)
 , "id_cplt_prsn" varchar(20)
 , "dt_cplt" varchar(8)
 , "notm_vrf_chk" number
 , "dnt_rgst" varchar(8)
 , "id_rgst" varchar(10)
 , "dnt_chg" varchar(8)
 , "id_chg" varchar(10)
 , "cd_re_rcpt_resn" varchar(20)
 , "nm_re_rcpt_resn" varchar(200)
 , "yn_svr_trsm" varchar(1)
 , "search001" number
 , "search002" number
 , "search003" number
 , "cd_cpny" varchar(10)
 , "seq_nipt" varchar(10)
);

INSERT INTO "DDTBT_DFCT" (
   "id_mbil"
 , "mode"
 , "id_dfct"
 , "cd_site"
 , "cd_hndl_stat"
 , "cd_rcpt_phs"
 , "yn_re_rcpt"
 , "notm_re_rcpt"
 , "dt_rcpt"
 , "id_rcpt_prsn"
 , "cd_dong"
 , "nohs"
 , "cd_loc_clsf"
 , "yn_hosh_comn"
 , "id_loc"
 , "id_rgon"
 , "id_dfct_ctyp"
 , "id_dfct_type"
 , "id_dfct_caus"
 , "id_dfct_cl"
 , "dfct_cnts"
 , "id_wrk_fmer_pic_atch_file"
 , "id_wrk_aftr_pic_atch_file"
 , "yn_re_clsf_rqst"
 , "id_cplt_prsn"
 , "dt_cplt"
 , "notm_vrf_chk"
 , "dnt_rgst"
 , "id_rgst"
 , "dnt_chg"
 , "id_chg"
 , "cd_re_rcpt_resn"
 , "nm_re_rcpt_resn"
 , "yn_svr_trsm"
 , "search001"
 , "search002"
 , "search003"
 , "cd_cpny"
)
SELECT
   "id_mbil"
 , "mode"
 , "id_dfct"
 , "cd_site"
 , "cd_hndl_stat"
 , "cd_rcpt_phs"
 , "yn_re_rcpt"
 , "notm_re_rcpt"
 , "dt_rcpt"
 , "id_rcpt_prsn"
 , "cd_dong"
 , "nohs"
 , "cd_loc_clsf"
 , "yn_hosh_comn"
 , "id_loc"
 , "id_rgon"
 , "id_dfct_ctyp"
 , "id_dfct_type"
 , "id_dfct_caus"
 , "id_dfct_cl"
 , "dfct_cnts"
 , "id_wrk_fmer_pic_atch_file"
 , "id_wrk_aftr_pic_atch_file"
 , "yn_re_clsf_rqst"
 , "id_cplt_prsn"
 , "dt_cplt"
 , "notm_vrf_chk"
 , "dnt_rgst"
 , "id_rgst"
 , "dnt_chg"
 , "id_chg"
 , "cd_re_rcpt_resn"
 , "nm_re_rcpt_resn"
 , "yn_svr_trsm"
 , "search001"
 , "search002"
 , "search003"
 , "cd_cpny"
FROM "_DDTBT_DFCT_old";

DROP TABLE "_DDTBT_DFCT_old";

COMMIT;

PRAGMA foreign_keys = ON;

other link flag
-framework KakaoCommon
-framework KakaoNewtoneSpeech

-force_load $(SRCROOT)/

r;
    [btn setSelected:data.isCheck];
    
    

    if (tableView == mTableViewDong) {
        DDTBT_DONG *data = [mListDong objectAtIndex:indexPath.row];

        SqlUtils *db = [[SqlUtils alloc] init];
        [db selectFlor:mListFlor withDongCd:data.cd_dong isAll:mIsAll];

        [mTableViewFlor reloadData];

        if ([mListFlor count] > 0) {
            [mTableViewFlor selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionTop];

            DDTBT_FLOR *data1 = [mListFlor objectAtIndex:0];
            [db selectHosh:mListHosh withDongCd:data1.cd_dong florCd:data1.cd_flor isAll:mIsAll];
            [mTableViewHosh reloadData];

            if ([mListHosh count] > 0) {
                [mTableViewHosh selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionTop];
            }
        }

    }
    else if (tableView == mTableViewFlor) {
        DDTBT_FLOR *data = [mListFlor objectAtIndex:indexPath.row];

        SqlUtils *db = [[SqlUtils alloc] init];
        [db selectHosh:mListHosh withDongCd:data.cd_dong florCd:data.cd_flor isAll:mIsAll];

        [mTableViewHosh reloadData];

        if ([mListHosh count] > 0) {
            [mTableViewHosh selectRowAtIndexPath:[NSIndexPath indexPathForRow:0 inSection:0] animated:NO scrollPosition:UITableViewScrollPositionTop];
        }
    }
    else if (tableView == mTableViewHosh) {

    } else { //I am adding the list.
        //        hjhDefectList *data = [mList objectAtIndex:indexPath.row];
        //
        //        DCH_BsQtChkEdtg *v = [[DCH_BsQtChkEdtg alloc] initWithNibName:@"DCH_BsQtChkEdtg" bundle:[NSBundle mainBundle]];
        //        self.title = @"";
        //        v.mMbilId = data.id_mbil;
        //        v.delegate = self;
        //        //[v initializeData];
        //        [self.navigationController pushViewController:v animated:NO];
        //
        //        [tableView deselectRowAtIndexPath:indexPath animated:NO];
        NSLog(@"calling DefectSelector");

        DefectSelector *v = [[DefectSelector alloc] initWithNibName:@"DefectSelector" bundle:[NSBundle mainBundle]];
        self.title = @"";
        v.mDongCd = mDongCd;
        v.mNohs = mNohs;
        v.delegate = self;
        v.mCanYouseeThisSword = mCanYouSeeThisSword;
        GlobalVar.globalVar.globalCanYouSeeThisSword = mCanYouSeeThisSword;
        NSLog(@"calling mutableArray4DefectList %ld", (long)indexPath.row);
        DFCT_LIST *data = [mutableArray4DefectList objectAtIndex:indexPath.row];
        v.mBilID = data.id_mbil; //2020113
        NSLog(@"MBILID = %ld", (long)data.id_mbil);
        [self.navigationController pushViewController:v animated:NO];

        return;
    }

    if (nil == [mTableViewDong indexPathForSelectedRow]) {
        [lblHosh setTitle:@"" forState:UIControlStateNormal];
        return;
    }
    if (nil == [mTableViewFlor indexPathForSelectedRow]) {
        [lblHosh setTitle:@"" forState:UIControlStateNormal];
        return;
    }
    if (nil == [mTableViewHosh indexPathForSelectedRow]) {
        [lblHosh setTitle:@"" forState:UIControlStateNormal];
        return;
    }

    // 선택될때마다.
    // 등호수정보로 추가정보 가져오기.
    DDTBT_DONG *data = [mListDong objectAtIndex:[[mTableViewDong indexPathForSelectedRow] row]];
    DDTBT_FLOR *data1 = [mListFlor objectAtIndex:[[mTableViewFlor indexPathForSelectedRow] row]];
    DDTBT_HOSH *data2 = [mListHosh objectAtIndex:[[mTableViewHosh indexPathForSelectedRow] row]];

    if (NO == [data1.cd_flor isEqualToString:@""]) {
        if (NO == [data2.nohs isEqualToString:@""]) {
            [self setHoshInfo:data.cd_dong dongNm:data.nm_dong nohs:data2.nohs];
        }
        else {
            [self setHoshInfo:data.cd_dong dongNm:data.nm_dong nohs:data1.cd_flor];
        }
    }
    else {
        [self setHoshInfo:data.cd_dong dongNm:data.nm_dong nohs:data2.nohs];
    }

[logging] table ddtbt_dfct has no column named seq_nipt in "insert into ddtbt_dfct(id_mbil,mode,cd_site,cd_hndl_stat,cd_rcpt_phs,yn_re_rcpt,notm_re_rcpt,dt_rcpt,id_rcpt_prsn,cd_dong,nohs,cd_loc_clsf,yn_hosh_comn,id_loc,id_rgon,id_dfct_ctyp,id_dfct_type,id_dfct_caus,id_dfct_cl,dfct_cnts,yn_re_clsf_rqst,dnt_rgst,id_rgst,dnt_chg,id_chg,yn_svr_trsm,id_wrk_fmer_pic_atch_file,id_wrk_aftr_pic_atch_file, cd_cpny, seq_nipt)                  values(3,'I','010956','B','I00','N',0,'20200303','C2000005','0301','2101','H','',12442,42,34,86,8,7,'별매품) Flgkgkgk / 기본) 주방상판/주방벽  _ 임페리얼 그레이','N','20200303','C2000005','20200303','C2000005','N','','', '(null)', '(null)')"

DB 업데이트 메소드 수정요.

'Blog History' 카테고리의 다른 글

100  (0) 2020.03.06
099  (0) 2020.03.04
097  (0) 2020.03.03
096  (0) 2020.03.03
095  (0) 2020.02.26

1. 다음과 같은 이진 트리가 있을 때

[멋드러진 이진 트리]

다음 순회 방식에 따른 노드 방문 순서를 적으세요.

(1) in-order :   ->     ->     ->   ...          (5점)
(2) pre-order :    ->     ->     -> ...          (5점)
(3) post-order :     ->     ->     ->  ...       (5점)
(4) level-order :     ->     ->     ->  ...      (5점)

2. 원하는 언어(의사코드 가능)로 다음 데이터 구조를 손코딩으로 구현 하세요.

(1) 이진 트리 1차원 배열 표현(15점)


(2) 이진 트리 연결 리스트 표현(15점)

* 보너스 문제(10점)

(3) 이진 트리 연결 리스트 표현에서 [삽입]을 추가 구현하세요.


향 후 제가 진행할 프로젝트도 이야기 할거고 경영진에게도 논리적으로 제가 했던 것 제가 알아서 설명하겠습니다.
그리고 혹시 다른 생각 하실 까봐 덧붙인다면,
지금 *강사님 *강사님 팀장님 손 놓으셔도 지금 진행하는 프로젝트 한달 남은 기간동안 다 성공시킬 자신 있습니다.
자신 없어서 문제니 뭐니 하는거 아니니 이해하셨길 바랍니다.
그리고 가족과 떨어져서 있는거 쉬운 일 아닙니다. 한달간 계속 내려오긴 합니다만.
제가 계속 괜찮다고 하는 부분 앞으로는 괜찮다고 안하겠습니다.

3 번째 이유에서
- 이건 어느 정도 포기를 했습니다. 
- *강사와 * 강사님이 커뮤니케이션 안된다는 이야기는 **에 하면 안되는데 영진군이 **에 이야기를 했습니다.  원래 강사님이나 운영자가 더 좋다고 하면서 내려오실 때 챙기거나 애살있게 붙어서 프로젝트 질문을 하기보다는 스스로 하는 편이 좋고,  평가를 안 받고 최대한 자유롭게 지내는 것이 좋다는 분위기가 확산되고 있습니다. 전체로 퍼지지는 않겠지만, 해당 분위기를 격리 시키고  아이들이 집중할 수 있는 분위기를 만드는데 최선을 다했습니다. 저는 퇴근해도 새벽께나 항상 들르고 있고, 지연 출근신청도 잘 안하지만 한다고 해도  일찍 출근을 합니다. 출/퇴근 시간이 중요하지는 않겠지만 멤버들이 공부할 물리적 시간 확보 분위기는 잘 만들고 있다고 생각 됩니다.  그리고 굳이 이야기 안해도 될 멤버들간의 사적인 부분도 다 보고를 하고 있었다고 생각이 됩니다.




#pragma NOTICE(Config 와 Logger 항목은 하드코딩.)

char buffer[32];
LPCWSTR pwstrDest;
wsprintf(buffer, "%d", dwInternetStatus);
  int nLen = ( int )strlen( buffer ) + 1;
        mbstowcs( pwstrDest, buffer, nLen );
AfxMessageBox( _D_(pwstrDest) ); //THIS MESSAGES BOX DOES NOT SHOW UP 

  mbstowcs( pwstrDest, buffer, nLen );
wsprintf(buffer, "%d", lpvStatusInformation);
AfxMessageBox( _D_(pwstrDest) ); //THIS MESSAGES BOX DOES NOT SHOW UP 




#include "StdAfx.h"
#include "CosmeticService.h"
#include "MainFrm.h"
#include "FtpSession.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


CosmeticService::CosmeticService(void)
{
}

CosmeticService::~CosmeticService(void)
{
}


void CosmeticService::ConnectionAndGetHashTest(void)
{
// AfxMessageBox(_T("ConnectionAndGetHashTest"));
CString StrServer = NULL;
CString strHtml = NULL;
StrServer = "http://.57.201.145:1337/hash";
CInternetSession *pSession = new CInternetSession;
pSession->SetOption(INTERNET_OPTION_RECEIVE_TIMEOUT, 5000);
pSession->SetOption(INTERNET_OPTION_CONNECT_TIMEOUT, 5000);
CHttpFile* pFile = (CHttpFile*) pSession->OpenURL((LPCTSTR) StrServer, 1,
INTERNET_FLAG_RELOAD | INTERNET_FLAG_TRANSFER_BINARY);
DWORD dwStatusCode;
pFile->QueryInfoStatusCode(dwStatusCode);
if (dwStatusCode == HTTP_STATUS_OK) {
CString strLength = NULL;
CString strHeaders = NULL;
pFile->QueryInfo(HTTP_QUERY_CONTENT_LENGTH, strLength);
pFile->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF, strHeaders);
long lLength = 4096 * 100;
byte* pbHtml = new byte[lLength];
memset(pbHtml, 0, lLength);
byte sRecived[512];
int iIndex = 0;
int num = 0;
while ((num = pFile->Read(sRecived, 512)) > 0) {
memcpy(pbHtml + iIndex, sRecived, num);
iIndex += num;
}
pbHtml[iIndex] = NULL;
//strHtml = (CHAR *) pbHtml;
g_sCosmeticHASH = (CHAR *) pbHtml;
AfxMessageBox(g_sCosmeticHASH);
}
}

void CosmeticService::RequestRESTfulTEST(void) {
CString strSendMsg;
CString strOutMsg;
CString StrServer = NULL;
StrServer = "http:// .57.201.145:1337/request";
strSendMsg = _T("emergency:1");

RequestPost(StrServer, strSendMsg, strOutMsg);
}

//RESTful : POST
BOOL CosmeticService::RequestPost(LPCTSTR lpUrl, CString strSendMsg,
CString strOutMsg) {
BOOL bRet = FALSE;
CString strHtml = NULL;

DWORD dwSearviceType;
CString strServer, strObject;
INTERNET_PORT nPort;

if (!AfxParseURL(lpUrl, dwSearviceType, strServer, strObject, nPort)) {
strHtml = "RequestPost Fail";
AfxMessageBox(strHtml);
ASSERT(0);
return bRet;
}

CString strReciveMessage("");
DWORD dwReadSize = 0;

FtpSession session;
CHttpConnection* pServer = NULL;
CHttpFile *pFile = NULL;

CString strHeader = NULL;
//동작 X : strHeader = "Content-Type:application/x-www-form-urlencoded";
strHeader = _T("Content-Type:application/x-www-form-urlencoded\r\n");

try {

pServer = session.GetHttpConnection(strServer, nPort);
if (!pServer) {
pServer->Close();
exit(-1);
}

pFile = pServer->OpenRequest(CHttpConnection::HTTP_VERB_POST, strObject,
NULL, 1, NULL, NULL,
INTERNET_FLAG_TRANSFER_ASCII | INTERNET_FLAG_EXISTING_CONNECT
| INTERNET_FLAG_RELOAD);

if (!pFile) {
exit(-1);
}

char szURLEncoded[256] = { 0, };

CString strAPost = L"";
//동작 X : CStringW ...
//동작 X : strAPost.Format(L"emergency=1&hash=하준123123F&text=%s",L"%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
//strAPost = strOutMsg;
//동작 X : CStringW cstringw(strAPost);
//동작 X : AfxMessageBox(cstringw);
//동작 X : BOOL result = pFile->SendRequest(strHeader, (LPVOID)(LPCTSTR)strSendMsg, strSendMsg.GetLength());
//결론 : 클라이언트 서버 모두 utf-8로 설정해도 CString 으로는 unicode가 지원되지 않음.

//CStringA strAPost = "";

pFile->AddRequestHeaders(_T("POST v1/voice/tts.bin HTTP/1.1\r\n"));
pFile->AddRequestHeaders(_T("Host: openapi.naverlove.com\r\n"));
pFile->AddRequestHeaders(_T("User-Agent: curl/7.43.0\r\n"));
pFile->AddRequestHeaders(_T("Accept: */*\r\n"));
pFile->AddRequestHeaders(
_T("Content-Type: application/x-www-form-urlencoded;charset=UTF-8\r\n"));
//pFile->AddRequestHeaders( _T("charset=utf-8\r\n"));
pFile->AddRequestHeaders(
_T("X-Naver-Client-Id: 123456789123456789\r\n"));
pFile->AddRequestHeaders(_T("X-Naver-Client-Secret: 12345678\r\n"));

//strAPost.Format("emergency=1&hash=하준123123F&text=%s","%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
strAPost.Format(L"emergency=1&hash=하준123123F&text=1&%s",L"%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");

LPCTSTR  strPot2 = strAPost;
const int dwLength = _tcslen(strPot2);
char *strPot = new char[dwLength];
WideCharToMultiByte(CP_ACP, 0, strPot2, -1, strPot, dwLength, 0, 0);

//동작 O : strAPost.Format("emergency=1&hash=FEFEFEF&text=%s","%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
//BOOL result = pFile->SendRequest(strHeader,
// (LPVOID) strAPost.GetBuffer(0), strAPost.GetLength());

AfxMessageBox(_T("유니코드테스트"));
//AfxMessageBox(CString(strPot));
BOOL result = pFile->SendRequest(strHeader,  strPot, dwLength);

// BOOL result = pFile->SendRequest(strHeader,
// (LPDWORD) strAPost.GetBuffer(0), strAPost.GetLength() + 1);

strAPost.ReleaseBuffer();

CString vResult = NULL;

vResult = result ? "true" : "false";
AfxMessageBox(vResult);

strSendMsg.ReleaseBuffer();

} catch (CInternetException* e) {
TCHAR szError[255];
e->GetErrorMessage(szError, 255);
e->Delete();
return bRet;
}

dwReadSize = pFile->Read(strReciveMessage.GetBuffer(pFile->GetLength()),
pFile->GetLength());
strReciveMessage.ReleaseBuffer();

if (dwReadSize != (DWORD) strReciveMessage.GetLength())
bRet = FALSE;
else
bRet = TRUE;

strOutMsg = strReciveMessage;

if (pFile) {
pFile->Close();
delete pFile;
pFile = NULL;
}

if (pServer) {
pServer->Close();
delete pServer;
pServer = NULL;
}

session.Close();
return bRet;
}

//30MB 정상 동작 확인 완료
//TODO : but 라이브러리 구매 혹은 FTP 구현 필요
void CosmeticService::FTPbaseCodeTest(CString file2upload) {
BOOL bRet = FALSE;
FtpSession session;
CFtpConnection *pConnection = NULL;

session.EnableStatusCallback(TRUE);

//g_kpMainFrame->ProgressBegin(100, _T("progress_bar later if it's needed."));
//g_kpMainFrame->ProgressStep();

try {
pConnection = session.GetFtpConnection(_T(" .57.201.145"),
_T("morpheus"), _T("worldBest@1"), (INTERNET_PORT) 3317, TRUE);

if (pConnection) {
AfxMessageBox(_T("전송을 시작합니다."));
} else {
AfxMessageBox(_T("Error"));
pConnection = NULL;
return;
}

g_sCosmeticHASH = L"/"+ g_sCosmeticHASH;
g_sCosmeticHASH.Remove('"');
AfxMessageBox(g_sCosmeticHASH);
if(!pConnection->CreateDirectoryW(g_sCosmeticHASH)) {
AfxMessageBox(_T("CreateDirectory Error"));
pConnection->Close();
session.Close();
}

// g_kpMainFrame->ProgressSetPos(50);

// FTP 서버의 폴더 경로 얻기
CString strCurrentDirectory;

if (!pConnection->SetCurrentDirectory(L"/"+g_sCosmeticHASH)) {
AfxMessageBox(_T("SetCurrentDirectory Error"));
pConnection->Close();
session.Close();
} else {
AfxMessageBox(_T("SetCurrentDirectory g_sCosmeticHASH"));
}


REQUEST_CONTEXT rc;// Send Context to Callback function
// rc.hWindow = g_kpMainFrame->m_Progress; // ProgressBar control windo

CString strSendMsg;
CString strOutMsg;
CString StrServer = NULL;
StrServer = "http:// .57.201.145:1337/request";
g_sCosmeticHASH.Remove('/');
strSendMsg = _T("emergency:1&hash=") + g_sCosmeticHASH;

AfxMessageBox(_T("RequestPost"));

RequestPost(StrServer, strSendMsg, strOutMsg);

if (pConnection->PutFile(file2upload, file2upload.Right(file2upload.GetLength() - file2upload.ReverseFind('\\')-1), FTP_TRANSFER_TYPE_BINARY, (DWORD)&rc)) {
AfxMessageBox(_T("Done."));

} else {
AfxMessageBox(_T("PutFile Error"));
}

// g_kpMainFrame->ProgressEnd();

} catch (CInternetException *pEx) {
pEx->ReportError(MB_ICONEXCLAMATION);
pConnection = NULL;
pEx->Delete();
}
pConnection->Close();
}

///////////////////////////////////////////////////////////////////////
//char 에서 wchar_t 로의 형변환 함수
wchar_t* CosmeticService::ConverCtoWC(char* str)
{
    //wchar_t형 변수 선언
    wchar_t* pStr;
    //멀티 바이트 크기 계산 길이 반환
    int strSize = MultiByteToWideChar(CP_ACP, 0,str, -1, NULL, NULL);
    //wchar_t 메모리 할당
    pStr = new WCHAR[strSize];
    //형 변환
    MultiByteToWideChar(CP_ACP, 0,str, strlen(str)+1, pStr, strSize);
    return pStr;
}

///////////////////////////////////////////////////////////////////////
//wchar_t 에서 char 로의 형변환 함수
char * CosmeticService::ConvertWCtoC(wchar_t* str)
{
    //반환할 char* 변수 선언
    char* pStr ; 

    //입력받은 wchar_t 변수의 길이를 구함
    int strSize = WideCharToMultiByte(CP_ACP, 0,str,-1, NULL, 0,NULL, NULL);
    //char* 메모리 할당
    pStr = new char[strSize];

    //형 변환 
    WideCharToMultiByte(CP_ACP, 0, str, -1, pStr, strSize, 0,0);
    return pStr;
}
i

'Blog History' 카테고리의 다른 글

099  (0) 2020.03.04
098  (0) 2020.03.03
096  (0) 2020.03.03
095  (0) 2020.02.26
094  (0) 2020.02.26

Thanks to Joan Lluch & KAKAO newtone team

 

 

 

 

https://github.com/John-Lluch/SWRevealViewController

 

John-Lluch/SWRevealViewController

A UIViewController subclass for presenting side view controllers inspired on the FaceBook and Wunderlist apps, done right ! - John-Lluch/SWRevealViewController

github.com

https://developers.kakao.com/docs/ios/speech

 

Kakao Developers_

더 나은 세상을 꿈꾸고 그것을 현실로 만드는 이를 위하여 카카오에서 앱 개발 플랫폼 서비스를 시작합니다.

developers.kakao.com

 

'Blog History' 카테고리의 다른 글

098  (0) 2020.03.03
097  (0) 2020.03.03
095  (0) 2020.02.26
094  (0) 2020.02.26
093  (0) 2020.02.26

1. 다음과 같은 이진 트리가 있을 때

[멋드러진 이진 트리]

다음 순회 방식에 따른 노드 방문 순서를 적으세요.

(1) in-order :   ->     ->     ->   ...          (5점)
(2) pre-order :    ->     ->     -> ...          (5점)
(3) post-order :     ->     ->     ->  ...       (5점)
(4) level-order :     ->     ->     ->  ...      (5점)

2. 원하는 언어(의사코드 가능)로 다음 데이터 구조를 손코딩으로 구현 하세요.

(1) 이진 트리 1차원 배열 표현(15점)


(2) 이진 트리 연결 리스트 표현(15점)

* 보너스 문제(10점)

(3) 이진 트리 연결 리스트 표현에서 [삽입]을 추가 구현하세요.


향 후 제가 진행할 프로젝트도 이야기 할거고 경영진에게도 논리적으로 제가 했던 것 제가 알아서 설명하겠습니다.
그리고 혹시 다른 생각 하실 까봐 덧붙인다면,
지금 *강사님 *강사님 팀장님 손 놓으셔도 지금 진행하는 프로젝트 한달 남은 기간동안 다 성공시킬 자신 있습니다.
자신 없어서 문제니 뭐니 하는거 아니니 이해하셨길 바랍니다.
그리고 가족과 떨어져서 있는거 쉬운 일 아닙니다. 한달간 계속 내려오긴 합니다만.
제가 계속 괜찮다고 하는 부분 앞으로는 괜찮다고 안하겠습니다.

3 번째 이유에서
- 이건 어느 정도 포기를 했습니다. 
- *강사와 * 강사님이 커뮤니케이션 안된다는 이야기는 **에 하면 안되는데 영진군이 **에 이야기를 했습니다.  원래 강사님이나 운영자가 더 좋다고 하면서 내려오실 때 챙기거나 애살있게 붙어서 프로젝트 질문을 하기보다는 스스로 하는 편이 좋고,  평가를 안 받고 최대한 자유롭게 지내는 것이 좋다는 분위기가 확산되고 있습니다. 전체로 퍼지지는 않겠지만, 해당 분위기를 격리 시키고  아이들이 집중할 수 있는 분위기를 만드는데 최선을 다했습니다. 저는 퇴근해도 새벽께나 항상 들르고 있고, 지연 출근신청도 잘 안하지만 한다고 해도  일찍 출근을 합니다. 출/퇴근 시간이 중요하지는 않겠지만 멤버들이 공부할 물리적 시간 확보 분위기는 잘 만들고 있다고 생각 됩니다.  그리고 굳이 이야기 안해도 될 멤버들간의 사적인 부분도 다 보고를 하고 있었다고 생각이 됩니다.




#pragma NOTICE(Config 와 Logger 항목은 하드코딩.)

char buffer[32];
LPCWSTR pwstrDest;
wsprintf(buffer, "%d", dwInternetStatus);
  int nLen = ( int )strlen( buffer ) + 1;
        mbstowcs( pwstrDest, buffer, nLen );
AfxMessageBox( _D_(pwstrDest) ); //THIS MESSAGES BOX DOES NOT SHOW UP 

  mbstowcs( pwstrDest, buffer, nLen );
wsprintf(buffer, "%d", lpvStatusInformation);
AfxMessageBox( _D_(pwstrDest) ); //THIS MESSAGES BOX DOES NOT SHOW UP 




#include "StdAfx.h"
#include "CosmeticService.h"
#include "MainFrm.h"
#include "FtpSession.h"

#ifdef _DEBUG
#define new DEBUG_NEW
#undef THIS_FILE
static char THIS_FILE[] = __FILE__;
#endif


CosmeticService::CosmeticService(void)
{
}

CosmeticService::~CosmeticService(void)
{
}


void CosmeticService::ConnectionAndGetHashTest(void)
{
// AfxMessageBox(_T("ConnectionAndGetHashTest"));
CString StrServer = NULL;
CString strHtml = NULL;
StrServer = "http://.57.201.145:1337/hash";
CInternetSession *pSession = new CInternetSession;
pSession->SetOption(INTERNET_OPTION_RECEIVE_TIMEOUT, 5000);
pSession->SetOption(INTERNET_OPTION_CONNECT_TIMEOUT, 5000);
CHttpFile* pFile = (CHttpFile*) pSession->OpenURL((LPCTSTR) StrServer, 1,
INTERNET_FLAG_RELOAD | INTERNET_FLAG_TRANSFER_BINARY);
DWORD dwStatusCode;
pFile->QueryInfoStatusCode(dwStatusCode);
if (dwStatusCode == HTTP_STATUS_OK) {
CString strLength = NULL;
CString strHeaders = NULL;
pFile->QueryInfo(HTTP_QUERY_CONTENT_LENGTH, strLength);
pFile->QueryInfo(HTTP_QUERY_RAW_HEADERS_CRLF, strHeaders);
long lLength = 4096 * 100;
byte* pbHtml = new byte[lLength];
memset(pbHtml, 0, lLength);
byte sRecived[512];
int iIndex = 0;
int num = 0;
while ((num = pFile->Read(sRecived, 512)) > 0) {
memcpy(pbHtml + iIndex, sRecived, num);
iIndex += num;
}
pbHtml[iIndex] = NULL;
//strHtml = (CHAR *) pbHtml;
g_sCosmeticHASH = (CHAR *) pbHtml;
AfxMessageBox(g_sCosmeticHASH);
}
}

void CosmeticService::RequestRESTfulTEST(void) {
CString strSendMsg;
CString strOutMsg;
CString StrServer = NULL;
StrServer = "http:// .57.201.145:1337/request";
strSendMsg = _T("emergency:1");

RequestPost(StrServer, strSendMsg, strOutMsg);
}

//RESTful : POST
BOOL CosmeticService::RequestPost(LPCTSTR lpUrl, CString strSendMsg,
CString strOutMsg) {
BOOL bRet = FALSE;
CString strHtml = NULL;

DWORD dwSearviceType;
CString strServer, strObject;
INTERNET_PORT nPort;

if (!AfxParseURL(lpUrl, dwSearviceType, strServer, strObject, nPort)) {
strHtml = "RequestPost Fail";
AfxMessageBox(strHtml);
ASSERT(0);
return bRet;
}

CString strReciveMessage("");
DWORD dwReadSize = 0;

FtpSession session;
CHttpConnection* pServer = NULL;
CHttpFile *pFile = NULL;

CString strHeader = NULL;
//동작 X : strHeader = "Content-Type:application/x-www-form-urlencoded";
strHeader = _T("Content-Type:application/x-www-form-urlencoded\r\n");

try {

pServer = session.GetHttpConnection(strServer, nPort);
if (!pServer) {
pServer->Close();
exit(-1);
}

pFile = pServer->OpenRequest(CHttpConnection::HTTP_VERB_POST, strObject,
NULL, 1, NULL, NULL,
INTERNET_FLAG_TRANSFER_ASCII | INTERNET_FLAG_EXISTING_CONNECT
| INTERNET_FLAG_RELOAD);

if (!pFile) {
exit(-1);
}

char szURLEncoded[256] = { 0, };

CString strAPost = L"";
//동작 X : CStringW ...
//동작 X : strAPost.Format(L"emergency=1&hash=하준123123F&text=%s",L"%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
//strAPost = strOutMsg;
//동작 X : CStringW cstringw(strAPost);
//동작 X : AfxMessageBox(cstringw);
//동작 X : BOOL result = pFile->SendRequest(strHeader, (LPVOID)(LPCTSTR)strSendMsg, strSendMsg.GetLength());
//결론 : 클라이언트 서버 모두 utf-8로 설정해도 CString 으로는 unicode가 지원되지 않음.

//CStringA strAPost = "";

pFile->AddRequestHeaders(_T("POST v1/voice/tts.bin HTTP/1.1\r\n"));
pFile->AddRequestHeaders(_T("Host: openapi.naverlove.com\r\n"));
pFile->AddRequestHeaders(_T("User-Agent: curl/7.43.0\r\n"));
pFile->AddRequestHeaders(_T("Accept: */*\r\n"));
pFile->AddRequestHeaders(
_T("Content-Type: application/x-www-form-urlencoded;charset=UTF-8\r\n"));
//pFile->AddRequestHeaders( _T("charset=utf-8\r\n"));
pFile->AddRequestHeaders(
_T("X-Naver-Client-Id: 123456789123456789\r\n"));
pFile->AddRequestHeaders(_T("X-Naver-Client-Secret: 12345678\r\n"));

//strAPost.Format("emergency=1&hash=하준123123F&text=%s","%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
strAPost.Format(L"emergency=1&hash=하준123123F&text=1&%s",L"%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");

LPCTSTR  strPot2 = strAPost;
const int dwLength = _tcslen(strPot2);
char *strPot = new char[dwLength];
WideCharToMultiByte(CP_ACP, 0, strPot2, -1, strPot, dwLength, 0, 0);

//동작 O : strAPost.Format("emergency=1&hash=FEFEFEF&text=%s","%20%48%65%6C%6C%6F%20%57%6F%72%6C%64");
//BOOL result = pFile->SendRequest(strHeader,
// (LPVOID) strAPost.GetBuffer(0), strAPost.GetLength());

AfxMessageBox(_T("유니코드테스트"));
//AfxMessageBox(CString(strPot));
BOOL result = pFile->SendRequest(strHeader,  strPot, dwLength);

// BOOL result = pFile->SendRequest(strHeader,
// (LPDWORD) strAPost.GetBuffer(0), strAPost.GetLength() + 1);

strAPost.ReleaseBuffer();

CString vResult = NULL;

vResult = result ? "true" : "false";
AfxMessageBox(vResult);

strSendMsg.ReleaseBuffer();

} catch (CInternetException* e) {
TCHAR szError[255];
e->GetErrorMessage(szError, 255);
e->Delete();
return bRet;
}

dwReadSize = pFile->Read(strReciveMessage.GetBuffer(pFile->GetLength()),
pFile->GetLength());
strReciveMessage.ReleaseBuffer();

if (dwReadSize != (DWORD) strReciveMessage.GetLength())
bRet = FALSE;
else
bRet = TRUE;

strOutMsg = strReciveMessage;

if (pFile) {
pFile->Close();
delete pFile;
pFile = NULL;
}

if (pServer) {
pServer->Close();
delete pServer;
pServer = NULL;
}

session.Close();
return bRet;
}

//30MB 정상 동작 확인 완료
//TODO : but 라이브러리 구매 혹은 FTP 구현 필요
void CosmeticService::FTPbaseCodeTest(CString file2upload) {
BOOL bRet = FALSE;
FtpSession session;
CFtpConnection *pConnection = NULL;

session.EnableStatusCallback(TRUE);

//g_kpMainFrame->ProgressBegin(100, _T("progress_bar later if it's needed."));
//g_kpMainFrame->ProgressStep();

try {
pConnection = session.GetFtpConnection(_T(" .57.201.145"),
_T("morpheus"), _T("worldBest@1"), (INTERNET_PORT) 3317, TRUE);

if (pConnection) {
AfxMessageBox(_T("전송을 시작합니다."));
} else {
AfxMessageBox(_T("Error"));
pConnection = NULL;
return;
}

g_sCosmeticHASH = L"/"+ g_sCosmeticHASH;
g_sCosmeticHASH.Remove('"');
AfxMessageBox(g_sCosmeticHASH);
if(!pConnection->CreateDirectoryW(g_sCosmeticHASH)) {
AfxMessageBox(_T("CreateDirectory Error"));
pConnection->Close();
session.Close();
}

// g_kpMainFrame->ProgressSetPos(50);

// FTP 서버의 폴더 경로 얻기
CString strCurrentDirectory;

if (!pConnection->SetCurrentDirectory(L"/"+g_sCosmeticHASH)) {
AfxMessageBox(_T("SetCurrentDirectory Error"));
pConnection->Close();
session.Close();
} else {
AfxMessageBox(_T("SetCurrentDirectory g_sCosmeticHASH"));
}


REQUEST_CONTEXT rc;// Send Context to Callback function
// rc.hWindow = g_kpMainFrame->m_Progress; // ProgressBar control windo

CString strSendMsg;
CString strOutMsg;
CString StrServer = NULL;
StrServer = "http:// .57.201.145:1337/request";
g_sCosmeticHASH.Remove('/');
strSendMsg = _T("emergency:1&hash=") + g_sCosmeticHASH;

AfxMessageBox(_T("RequestPost"));

RequestPost(StrServer, strSendMsg, strOutMsg);

if (pConnection->PutFile(file2upload, file2upload.Right(file2upload.GetLength() - file2upload.ReverseFind('\\')-1), FTP_TRANSFER_TYPE_BINARY, (DWORD)&rc)) {
AfxMessageBox(_T("Done."));

} else {
AfxMessageBox(_T("PutFile Error"));
}

// g_kpMainFrame->ProgressEnd();

} catch (CInternetException *pEx) {
pEx->ReportError(MB_ICONEXCLAMATION);
pConnection = NULL;
pEx->Delete();
}
pConnection->Close();
}

///////////////////////////////////////////////////////////////////////
//char 에서 wchar_t 로의 형변환 함수
wchar_t* CosmeticService::ConverCtoWC(char* str)
{
    //wchar_t형 변수 선언
    wchar_t* pStr;
    //멀티 바이트 크기 계산 길이 반환
    int strSize = MultiByteToWideChar(CP_ACP, 0,str, -1, NULL, NULL);
    //wchar_t 메모리 할당
    pStr = new WCHAR[strSize];
    //형 변환
    MultiByteToWideChar(CP_ACP, 0,str, strlen(str)+1, pStr, strSize);
    return pStr;
}

///////////////////////////////////////////////////////////////////////
//wchar_t 에서 char 로의 형변환 함수
char * CosmeticService::ConvertWCtoC(wchar_t* str)
{
    //반환할 char* 변수 선언
    char* pStr ; 

    //입력받은 wchar_t 변수의 길이를 구함
    int strSize = WideCharToMultiByte(CP_ACP, 0,str,-1, NULL, 0,NULL, NULL);
    //char* 메모리 할당
    pStr = new char[strSize];

    //형 변환 
    WideCharToMultiByte(CP_ACP, 0, str, -1, pStr, strSize, 0,0);
    return pStr;
}
i

'Blog History' 카테고리의 다른 글

097  (0) 2020.03.03
096  (0) 2020.03.03
094  (0) 2020.02.26
093  (0) 2020.02.26
092  (0) 2020.02.26

GlobalVar.globalVar.globalblablabla

youtube script for my kid.
She loves cats. And she wants to get real cats, but It's dangerous — the reason why is that the cats claw a baby's face. I've got two of shames before. And with them, 6years. The cat is adorable, but It's possible to scratch the face.

쓰다가.... 담음에 더 쓰자... 

XCode 가 11로, iOS가 13으로 올라간지 오래입니다. 애플은 지난 것을 과감히 버리며 앞으로 전진하는 ecosystem 이기 때문에 그 속에 사는 개발자인 저도 그러려고 노력합니다. Swift 1.2(Swift 2)부터 프로젝트를 5년 간 진행했습니다. Objective-C 와 공존할 때도 있었지만 3년 전부터는 오롯이 SWIFT만 다루었죠. 그러나 레거시 코드로 돈을 벌고 있는 기업에서의 요구사항에 맞추기 위해서는 Objective-C도 할 수 밖에 없습니다. Let's grap a bite, 밥 먹으러 가요. ご飯食べに行きましょう。모두 같은 뜻입니다. 어떤 언어를 쓰던지 뜻만 통하면 된다고 하죠. 

Don't fight. Just restart!

I've been uploaded the picture on Instagram that is weird things even that belong to companies. Google, Facebook, Samsung, apple's error. This video shows you the action to restart Xcode to solve the problem that cannot connect interface builder to the codes.

Don't trust what you trust because of the famous.


SLog(@"데이터 저장 실패[82]");

인력 사무소 스펙 공지

#iOS 개발
- 카메라 기능 개발, 비디오 커뮤니티 기능 개발
- Unit testing, Git-flow, 코드 리뷰, Viper architecture, Realm, Protocol Buffers
#Android 개발
- 카메라 기능 개발, 비디오 커뮤니티 기능 개발
- Unit testing, Git-flow, 코드 리뷰, RxJava, MVVM, Realm, Protocol Buffers
#모바일Graphics 개발자
- 영상 처리 모듈 개발, 컴퓨터 비전 관련 기술 개발
- OpenGL(ES), GLSL, Android NDK, Swift, C/C++
#컴퓨터비전_딥러닝 연구원, 인턴
- 영상 분석, 실시간 처리
#서버 개발
- 비디오 소셜 커뮤니티 개발
- Google Cloud Platform, Go, Python, Ruby, Unit testing, Git-flow, 코드 리뷰, CI(지속 통합)
#Creative디자인 디자이너
- 영상 필터 아이디어/기획/개발
#UI_UX디자인 디자이너
- 카메라, 모바일 커뮤니티 UI/UX 설계, 제작 
- Wireframing, Presentation, Sketchapp
더욱 자세한 것은 아래 채용 페이지를 참고해주세요.
감사합니다! 

빨리 회사가 유명해지고 계속 유명해져야 할텐데...  그래야 할 텐데


. : 1문자
^a:  a가 줄 제일 앞에 이'ㅅ
a$ : a가 줄 제일 끝에 있음
a*   : a >= 0
a+ : a > 0
a? :  a == 0 or a==1
[abc] : a or b or c
[^abc] : not (a or b or c)
[a-d] : abcd
[x-z] : xyz
[a-z] : abc~xyz
[1-5] : 12345
.{5} : . 5개
.{3,4} : 3개 이상 4개 이하
.{3, } : 3이상
수량자? : 


Helson Halios Armida Gruppo Gamma Maranez Crepas Borealis MkII Makara Bulova Prometheus Ancon Nethuns

출처: <https://intowatch.com/member/join.html#none







• Data Science
• Software Development
• System Administration
• Web Development
• DevOps
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Technical Support
All other skills
• Mobile Application Development
• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Entrepreneurship
• Human Resources (HR)
• Career Development
• Finance
• Accounting
• Architecture
• Graphic Design
• Animation
• Customer Service
• Training & Development
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording


출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


• Architecture
• Graphic Design
• Animation
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording
All other skills
• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Data Science
• Entrepreneurship
• Human Resources (HR)
• Career Development
• Software Development
• Finance
• System Administration
• Web Development
• DevOps
• Accounting
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Customer Service
• Technical Support
• Training & Development
• Mobile Application Development


출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Entrepreneurship
All other skills
• Human Resources (HR)
• Career Development
• Finance
• Accounting
• Customer Service
• Training & Development
• Data Science
• Software Development
• System Administration
• Web Development
• DevOps
• Architecture
• Graphic Design
• Animation
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Technical Support
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording
• Mobile Application Development

출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


숙어 복습

according to
~에 의하면
by way of
~경유하여
for the purpose of
~위해서
in place of
~대신해서
in spite of
~임에도 불구하고
with(for, after) all
~불구하고
notwithstanding
~불구하고
in honour of
~에 경의를 표하며
on account of
~ 때문에
by means of
~에 의하여
by dint of
~에 의하여
with(in) respect to
~관해서
for want of
~의 결핍 때문에
for the sake of
~을 위하여
in case of
~의 경우에
in addition to
게다가, 더욱이
apart (=aside) from
~별도로 하고
on top of
~뿐만 아니라
keep tract of
~정보를 꾸준히 알다
be distributed to
나누어주다
focus on
집중하다
concentrate on
집중하다
on the phone
전화상으로
succeed in
성공하다
prior to
이전에
be directed to
~로 안내되다
deal with
다루다
cope with
다루다
lag behind
~에 뒤지다
benefit from
이익을 얻다
assist with
거들다
capable of - ing
~할 수 있다
contribute to
기여하다
comply with
~에 따르다
be consistent with
~와 일치하다
with few exception
거의 예외 없이
be involved in
~에 관련되다
be comparable to (with)
~에 비교할 만한
upon request
신청하는 대로
around the world
전 세계에
under construction
공사 중이다
advocate of
지지자
be ideal for
~에 이상적인, ~에 적합한
interview with
~와의 인터뷰
be concerned with
~와의 관계
have access to
접근(사용)허가를 갖다
be concerned about
~대해 근심하다
up to now
지금까지
request for
~대한 요구
demand for (= request for)
~에 대한 요구
decide on
~를 결정하다
dispute over
~대한 분쟁
be subject to
~당하기(받기) 쉽다
aim at
~목적으로 하다
come (=go) into effect
실시되다
in breach of
~을 위반하여
in pursuit of
~을 얻고자
in view of
~을 고려하여
be contented (=satisfied) with
~에 만족하다
inch down
조금 허락하다
on (in) behalf of
~을 대신하여
specialize in (+major in)
전문으로하다
confide in
신뢰하다
lay off
해고하다
indulge in
탐닉하다
take over
인수하다
scheduled for
~로 예정된
spin off
부수적으로 생산하다
by the end of
~끝날 때까지
on later than
~이전까지
be enrolled in
등록되다
file a charge against
고발하다
at all times
항상
adapt to
적응하다
support for
지지
opposition to
반대
abstain (= refrain) from
삼가 하다
participate in
참여하다
stand in for
대신하다
turn in (=send in, hand in, submit)
제출하다
place an order
주문하다
result in
결과를 초래하다
make an attempt to V
시도하다
access code for
~에 대한 비밀번호
take on
떠맡다
carry out
이행하다
as a result of
~의 결과로서
maintain relationship with
관계를 유지
in the foreseeable (=near) future
가까운 미래에
be acquainted with
~에 익숙해지다
run short of
부족하다
show up ( =turn up)
나타나다
be located (=situated) in
~위치하다
follow up on
계속 추구/이행하다
be made up of (=consist of)
구성되다
as of
~날짜로부터
put forward
주창하다, 제안하다
be interested in
흥미를 갖다
sign up for
신청하다
advance (= improvement) in
~에 있어서의 진보
contribute to
기여하다
out of the office
출장 중
in one's absence
부재중
free admission to
무료입장
present+사람 +with +사물
(사람)에게 (사물)을 제공하다
make claims about
~에 대하여 주장하다
based on
~에 바탕을 둔
based in
~에 본부를 둔
plane ride to
~행 비행기 여행
earn reputation for
명성을 얻다
get optimistic about
낙관적이다
point out
지적하다
under a contract with
~와 계약 중인
in sufficient quantity
충분한 양으로
to a certain extent
어느 정도 까지는
a wide variety of
다양한 범위의
get reimbursement for
상환 받다
play a role in
역할을 하다
have distinctive advantages over
뚜렷한 장점을 지니다
reach consensus on
합의에 도달하다
shut down
전원이 꺼지다
plug out
전원을 뽑다
on a permanent basis
상임 직으로
in need ( want ) of
~를 필요로 하는
make checks payable to
수표를 ~앞으로 발행하다
on the rise
증가하다
compensate for = make up for
보충(보상)하다
comply with
~에 응하다, (규칙 등) 따르다
concentrate on
~에 집중하다
contrary to
~와 대조적으로
remind A of B
A로 하여금 B가 생각나게 하다
rule out
~를 제외시키다, 배제하다
run a risk of
~의 위험을 무릅쓰다
run out of
~를 다 써버리다
set out
착수하다
set up
세우다, 설립하다
(mis)take A for B
A를 B로 (잘못) 알다
according to
~에 의하면
at stake
위기에 처한
at the rate(cost, price, expense) of
~의 비율(비용)로
at the risk of
위험을 무릅쓰고
attribute A to B
~의 탓으로 돌리다
be absorbed in
~에 몰두하다
be accustomed to + 명사
~에 익숙하다
be entitled to + 동사 또는 명사
~할 자격이 있다
be in tended for
~을 위해 준비된 것이다
account for
설명하다
add to
~를 더하다
ahead of
~보다 앞서
at random
함부로, 무작위로
be responsible for
~에 책임이 있다
be subject somebody
~를 받기 쉬운
be suspicious of
의심하는, 협의가 있는
by means of
~를 수단으로 하여, ~에 의하여
call on + 사람
~를 방문하다
care of
~를 돌보다
carry out
~를 수행하다, 성취하다
come by
얻다
stand by
지지하다
stand for
나타내다
stare at
~을 응시하다
stop by
~에 잠시 들르다
subordinate to
종속적인, 부하의
cope with
~를 잘 대처하다
count on
~를 의지하다
deal with
다루다
depend on = rely on
의지하다
deprive of
제거하다
despite (in spite of) + 단독명사
~에도 불구하고
do without
~없이 지내다
do your utmost(best)
최선을 다하다
in comparison with
~와 비교하여
be acquainted with
~를 잘 아는
be apt to + 동사원형
~하기 쉽다 =be liable(likely) to
be based on
~에 토대를 두다
be bound for + 지명
~로 향하다
be interested for
~에 관심이 있다
be likely to
~하기 쉬운
be noted for
~로 유명한
in terms of
~의 견지에서
in(with) regard to
~에 관하여
inflict on
~에 고통을 가하다
leave out
빠뜨리다, 빼먹다
make up for
~를 보충하다
on account of
~ 때문에
on(in) behalf of
~를 대신하여
out of print
절판 된
participate in
참가하다
prior to
~보다 앞서
refer to
~에 대해 언급하다
regardless of
~에 상관없이
show off
자랑하다, 과시하다
be taken by surprise
기습을 당하다, 경악하다
be willing to + 동사
기꺼이 하다
beware of
~를 주의하다
drag on
질질 끌다
expose to
~에 노출되다
familiarize ... with
~에 익숙하게 하다
fill out
작성하다
for the time being
당분간 (=for the present)
get along with
~와 잘 지내다
get in touch with
~와 연락하다
give a big hand
박수갈채를 보내다
give up
포기하다
in a row
연속하여, 잇달아
sign up
~에 등록하다
subscribe to
~를 구독하다
substitute A for B
A대신 B로 대체하다
take advantage of
~을 잘 이용하다
take turns
교대로 하다
be bound to
반드시 ~하다
be capable of (=be able to)
~할 자격이 있다(=~할 수 있다)
be concerned about
~에 대해 걱정하다
be engaged in
~에 종사하다, 몰두하다
be engaged to
~와 약혼하다
in reference to
~에 관하여
tend to
~하는 경향이 있다
trial and error
시행착오
turn in
제출하다
work out
땀내는 운동을 하다, 결과가 나오다
due to
~때문에
in accordance with
~에 따라서, ~에 맞게
in addition to
~외에도
in advance
미리
show up
나타나다, 참석하다
as a matter of fact
실제에 있어서, 사실은 [really, in fact ]
as a result of
~의 결과로 [because of]
as a rule
일반적으로 [generally, in general ]
as deaf as a post
귀가 전혀 안 들려서
as far as it goes
그 일에 관한 한, 어떤 범위 내에서는
a bird in the hand
확실한 소유물
a bone of contention
분쟁의 원인
a trump card
으뜸 패, 비장의 수단
a world of
아주 많은[ a large number (amount) of]
abandon oneself to
~에 탐닉하다 (빠지다)
abide by [keep, stick to]
~을 지키다
above one's head [above the head of]
너무 어려워서 이해할 수 없는
according to
~에 따라서, ~에 의하면
account for [explain, expound upon ]
~을 설명하다
accuse A of B
A를 B의 혐의로 기소하다
across the board
전면적인, 종합적인 [overall ]
add to
~에 더하다
add up
이해가 되다 [make sense]
after dark
어두워진 후에
against the grain
성질에 맞지 않게, 비위에 거슬리는
agree on
~에 동의하다, 의견을 같이 하다
ahead of
~보다 앞서
all at once
갑자기
all but
거의
all in all
(보통 문두에서) 대체로, 대강 말하면
all the time [always, invariably, ever, continuously ]
항상
all thumbs [very poor , clumsy, awkward]
손재주가 없는
amount to [add up to, come up to ]
총계 ~가 되다
an apple of the eye
아주 소중한 것
answer for [be responsible for]
책임을 지다
answer to [be as described ]
일치(합치)하다
approve of
승인하다, 찬성하다
as a last resort
최후의 수단으로서
at a low ebb
쇠퇴기인 [in a bad or inactive state]
at a person's disposal
마음대로 할 수 있는
at an additional cost
추가 비용으로
at eleventh hour
아슬아슬한 때에 [sooner or later]
at every turn
아주 자주, 늘, 예외 없이
at length
마침내, 드디어, 자세히 [at last]
at odds (with)
의견이 일치하지 않는[ in disagreement ]
at once ~ and~
~하기도 하고 ~하기도 하다 [both ~and ~]
at one' discretion
~의 재량으로, ~의 판단으로
one' expense
~의 비용으로
at one' finger' ends
~에 정통한
at random
무작위로, 함부로, 닥치는 대로
at reasonable rate
적당한 가격으로
at sixes and sevens
혼란하여
at the rate(cost) of
~의 비용으로
at the risk of
위험을 무릅쓰고
at the same time
동시에 [simultaneously]
at the speed of
~의 속도로
at will
뜻대로, 임의로 [at one's pleasure]
be absorbed in
~에 몰두하다, 전념하다
be accustomed to
~에 익숙해지다
be credited to
~덕분(덕택)이다, ~의 공으로 돌려지다 [be ascribed to]
be dead set against
완전히 반대하다 [completely oppose]
be dissatisfied with
~에 불만족스러워하다
be divided into
~로 분류되다, 나뉘어지다
be dressed to kill
멋지게 옷을 입다 [be dressed to attract attention]
be eligible for/to R
~할 자격이 있다, 적격이다
be engaged in
~에 종사하다
have the say
발언권(결정권)이 있다 [have the power of acting or deciding]
have yet to
아직 ~하지 못하다
head off
가로막다, 저지하다 [block (off), forestall ]
beside the beach
해변에
better off
부유한
be engrossed in
~에 열중하다[ be absorbed in, be lost in]
be entitled to
~의 자격이 있다, 권리가 있다
be equal to
~와 같다, 감당할 수 있다,~에 합당하다
be exposed to
~에 노출되다
be faced with
~에 직면하다
be familiar to
~에게 잘 알려져 있다
be fed up with
~에 질리다, 싫증나다 [be (sick and ) tired of]
be geared to
~에 놓여 지다, 맞추어지다
be good at
~에 능숙하다
be opened to
~ 받기 쉽다. 면할 수 없다
be saddled with
(책임, 부담 등을) 지다 [be burdened with]
have one's hair done
머리를 하다
have one's hands full
몹시 바쁘다
have the guts
용기가 있다 [have the heart (courage) ]
hit it off (with)
성미가 잘 맞다, 친구가 되다, ~와 잘해 나가다; ~와 타협하다
hit the ball
척척 진행하다 [go well]
hit the book
열심히 공부하다 [study hard, bone up on ]
hit the booze
술을 마시다 [hit the bottle ]
hit the ceiling
화를 내다, 몹시 성나다 [become angry ]
beware of
~을 주의하다, 조심하다
beyond repair
수리의 가망이 없는
beyond the pale
일반적으로 용인될 수 없는 [socially unacceptable ]
Birds of a feather flock together.
유유상종
bite off more than one can chew
힘에 겨운 일을 계획하다
bite the bullet
이를 꽉 물다, 어려움을 감내하다 [suffer bravely something very unpleasant ]
be inconsistent with
~와 반대이다 [contradict]
be indifferent to
~에 무관심하다
be indulged in
~에 빠지다, ~에 탐닉하다
be interested in
~에 관심이 있다
be involved in
~에 연루되다, 관여하다
be known by
~으로 알 수 있다
be least likely to win
~이길 것 같지않다
be likely to R
~하기 쉽다, ~할 것 같다
be noted for
~로 유명하다
be obligated to R
~하지 않을 수 없다
be one's age
~와 동갑이다
place (set, put) much value on
~을 높이 평가하다
play fast and loose
무책임하게 행동하다 [ act in an irresponsible manner]
play it by ear
임기응변으로 ~하다, 즉흥연주하다 [improvise]
play on
~을 이용하다, 자극하다 [exploit, take advantage of, impose on]
play trick on
~에게 장난을 치다
play up
과장하다; 장난치다 [exaggerate, overstate, hyperbolize]
point up
강조하다 [show clearly, underline, emphasize]
prevail on
설득하다 [persuade]
be acquainted with
~을 잘 알다
be addicted to
~에 중독되다
be appreciative of
~에 감사하고 있다
be apt to R
~하기 쉽다
be assigned to
할당되다
be at home in
~에 정통해있다, ~에 익숙하다 [be familiar with]
be authorized by
권한을 부여받다
be aware of
알고 있다, 의식하고 있다
take in
속이다
take in account , take into account
셈에 넣다, 계산에 넣다
take issue with
논쟁하다 [argue, debate ]
help out
돕다 [assist, give help, aid ]
high and low
도처에, 모든 곳에 [everywhere ]
hinge on
~에 달려있다 [depend on, rely on]
hit below the belt
반칙행위를 하다, 비겁한 짓을 하다
hook up
접속하다, 부품 등을 짜 맞추다 [connect ]
hot air
과장 [exaggerated talk, big talk]
ill at ease
불안하여, 마음을 놓지 못하는, 거북스러운
impose on
~에 편승하다 [take advantage of]
impose upon
~을 이용하다 [take advantage of, exploit ]
immune from
면역이 된 , 면제된 [exempt from]
in a bind
속박되어, 딱하게 되어, 곤경에 처하여
in a jam
곤경에 처한
in a muddle
어리둥절하여
in a row
연속하여
in a timely manner
시기적절하게
on behalf of
~의 이익을 위해, ~을 대신해서 [in the interest of ]
in case
~에 대비하여, ~한 경우에
in charge of
~을 맡고 있는, 담당의 [responsible for]
in comparison with
~와 비교하여
tie up
중단시키다, 구속하다, 꼼짝 못하게 하다
within 24 hours
24시간 내에
within the guideline
지침 안에서
without regard to
~을 고려하지 않고
work from home
재택근무를 하다
work out
연습하다, 훈련하다, 운동하다; (애써서) 성취하다, (문제를) 해결하다
work (do) wonders (miracles, magic)
기적이 일어나다
worth one' salt
급료 값을 하는
wreck havoc on
~을 파괴하다
wrestle with
악전고투하다
write off
(감가상각으로) 값을 줄이다
yearn for
동경하다, 갈망하다
out of print
절판된
out of question
틀림없이, 물론 [undoubtedly, surely ]
out of stock
품절되어
pass out
기절하다; 나누어주다 [distribute]
pass out of existence
사라지다 [disappear, vanish, fade ]
pass the buck
책임을 전가하다
pass up
거절하다 [reject, turn down, decline]
patch up
일시적으로 습(해결)하다 [settle a quarrel or disagreement]
pave the way for
~의 길을 열다, ~을 가능케 하다 [prepare for, make possible]
pay attention to
~에 주의를 기울이다
pay back
상환하다 [return]
pay off
성과를 거두다, 이익을 가져오다 [be worth while]
pay through the nose
엄청난 돈을 쓰다, 바가지를 쓰다 [pay far too much]
pay tribute to
경의를 표하다 [honor, pay homage to]
in accordance with
~에 따라서
in addition to
~에 더하여
in advance
미리 [beforehand]
in all senses
모든 점에서 [in all respects]
in an effort to R
~하는 노력으로
pick one' pocket
소매치기하다
pick up
(도망자 등을) 붙잡다, 검거하다 / 자동차를 태워주다 / 물건을 찾아가다
pick up the tap
셈을 치루다 [pay for]
in despair
절망하여
in detail
상세히
once in a while
가끔씩
out of bounds
출입금지지역의
out of date
구식의, 시대에 뒤떨어진
take advantage of
이용하다
take after
~을 닮다
take against
반항하다, 반감을 갖다
take care of
~을 돌보다
take down
적어두다, 받아 적다
out of humor
불쾌해서, 화가 나서
out of place
장소에 어울리지 않는, 불편한 [uncomfortable]
pride oneself on
자랑하다 [be proud of, take pride in]
prior to
~보다 앞선, 이전에
probe into
~을 조사하다 [look into, examine ]
prop up
버티다, 지지하다, 보장하다
take a sip
조금씩 맛보다
Take it easy
조심해서 가라
take it for granted
~을 당연히 여기다
take it out of
~을 지치게 하다, ~을 못살게 굴다, ~에게 앙갚음(보복)을 하다
throw in the sponge
패배를 인정하다, 항복하다
throw in the towel
패배를 인정하다, 항복하다
throw (have) a fit
노발대발하다
tick off
확인하다, 점검하다
be taken by surprise
기습공격을 받다
be tied up
바쁘다 [be busy, have one's hands full]
be true of
적용되다 [apply to, hold true of ]
be up to
~에게 있다, 달려 있다 [rest with]
be up to one' ear
깊이 빠져 있다,
be well-grounded in
기초가 탄탄한 [know thoroughly]
be willing to R
기꺼이 ~하다
bear (something) in mind
~을 기억하다, ~을 명심하다
beat about
이리저리 찾다 [seek anxiously]




'Blog History' 카테고리의 다른 글

096  (0) 2020.03.03
095  (0) 2020.02.26
093  (0) 2020.02.26
092  (0) 2020.02.26
091  (0) 2020.02.24


- (void)onSave {
    //    [db insertTable_DEFECT_CATEGORY:list isDel:YES];
    NSString *errMsg = [self checkValid];
    if (NO == [errMsg isEqualToString:@""]) {
        [GlobalVar alertMsgOKWithTitle:@"" message:errMsg];
        return;
    }
    
    DDTBT_SITE_TPPG_LOC *data = [mutableArray4Location objectAtIndex:[[mTableViewLoc indexPathForSelectedRow] row]];
    DDTBT_SITE_LOC_RGON *data1 = [mListRgon objectAtIndex:[[mTableViewRgon indexPathForSelectedRow] row]];
    DDTBT_RGON_DFCT_TYPE *data2 = [mListType objectAtIndex:[[mTableViewType indexPathForSelectedRow] row]];
    
    self.mDfct.cd_site = [GlobalVar loadFromUserDefaults:@"udglobalCDSite"];
    self.mDfct.cd_rcpt_phs = GlobalVar.globalVar.userSelectionSiteInformation.cd_rcpt_phs;
    self.mDfct.dt_rcpt = [GlobalVar currentDateTimeYYYYMMDD];
    self.mDfct.id_rcpt_prsn = GlobalVar.globalVar.userInfo.userId;
    
    self.mDfct.id_loc = data.id_loc;
    self.mDfct.id_rgon = data1.id_rgon;
    self.mDfct.id_dfct_type = data2.id_dfct_type;
    
    NSLog(@"insertDefectCategory_ id_loc : %d id_rgon : %d id_dfct_type %d", self.mDfct.id_loc, self.mDfct.id_rgon, self.mDfct.id_dfct_type);
    
    if (0 == mSeg.selectedSegmentIndex) {
        self.mDfct.id_dfct_cl = 5;
    }
    else if (1 == mSeg.selectedSegmentIndex) {
        self.mDfct.id_dfct_cl = 7;
    }
    else {
        self.mDfct.id_dfct_cl = 10;
    }
    
    self.mDfct.cd_hndl_stat = @"B";
    self.mDfct.dfct_cnts = [mTextDfctCnts.text stringByReplacingOccurrencesOfString:@"'" withString:@"''"];
    self.mDfct.id_rgst = GlobalVar.globalVar.userInfo.userId;
    self.mDfct.dnt_rgst = [GlobalVar currentDateTimeYYYYMMDD];
    self.mDfct.id_chg = GlobalVar.globalVar.userInfo.userId;
    self.mDfct.dnt_chg = [GlobalVar currentDateTimeYYYYMMDD];
    self.mDfct.yn_svr_trsm = @"N";
    
    NSString *atchId = [GlobalVar uniqueId];
    if (0 < [self.mDfct.atchListFmer count] && YES == [self.mDfct.id_wrk_fmer_pic_atch_file isEqualToString:@""]) {
        self.mDfct.id_wrk_fmer_pic_atch_file = atchId;
        NSLog(@"self.mDfct.id_wrk_fmer_pic_atch_file = atchId %@", atchId);
    }
    
    self.mDfct.yn_re_clsf_rqst = @"N";
    
    self.mDfct.cd_loc_clsf = GlobalVar.globalVar.globalCanYouSeeThisSword;
    
    SqlUtils *db = [[SqlUtils alloc] init];
    BOOL redbool = NO;
    if(mBilID !=0) {
        redbool = [db updateDefectCategory:self.mDfct];
    } else { //inserting not updating
        redbool = [db insertDefectCategory:self.mDfct];
    }
    if (redbool) {
        [GlobalVar alertMsgOKWithTitle:@"" message:@"저장되었습니다."];
        [self.delegate refresh];
    }
    else {
        [GlobalVar alertMsgOKWithTitle:@"" message:@"저장 오류-80386"];
    }
    
    [mTextDfctCnts resignFirstResponder];
    [self.navigationController popViewControllerAnimated:NO];
    
}

'Blog History' 카테고리의 다른 글

095  (0) 2020.02.26
094  (0) 2020.02.26
092  (0) 2020.02.26
091  (0) 2020.02.24
090  (0) 2020.02.24

홈페이지 업데이트 (코로나 공홈 버튼 추가)

 

2020-02-25 19:06:10.330658+0900 MBASS[21684:2556165] sReceivedXML:








 




    style.css">
    animate.css">




              data-ad-client="ca-pub-2286201349006968">



https://cfile4.uf.tistory.com/image/2664A23756BBD5D1019CEC)">


HAJUNHO.COM






 Program(m)er since I was 8 -1988-



♬ 2015~ I'm an iOS Programmer.












mailto:mynameis@hajunho.com" class="button black medium" target="_blank"> Send Mail 
https://patents.google.com/patent/WO2015060690A1/en?inventor=ha+junho&oq=ha+junho class="button black medium" target="_blank">PATENT
https://www.linkedin.com/in/junho-ha-635862a9?trk=hp-identity-photo class="button black medium" target="_blank">LINKEDIN
http://www.yes24.com/24/goods/42800973?scode=032&OzSrank=1 class="button black medium" target="_blank">BOOK
https://hajunho.com/wordpress class="button black medium" target="_blank">WORDPRESS
https://www.instagram.com/ha_jun_ho class="button black medium" target="_blank">INSTARGRAM


    
    

 

 

'Blog History' 카테고리의 다른 글

094  (0) 2020.02.26
093  (0) 2020.02.26
091  (0) 2020.02.24
090  (0) 2020.02.24
089  (0) 2020.02.21

GlobalVar.globalVar.globalblablabla

youtube script for my kid.
She loves cats. And she wants to get real cats, but It's dangerous — the reason why is that the cats claw a baby's face. I've got two of shames before. And with them, 6years. The cat is adorable, but It's possible to scratch the face.

쓰다가.... 담음에 더 쓰자... 

XCode 가 11로, iOS가 13으로 올라간지 오래입니다. 애플은 지난 것을 과감히 버리며 앞으로 전진하는 ecosystem 이기 때문에 그 속에 사는 개발자인 저도 그러려고 노력합니다. Swift 1.2(Swift 2)부터 프로젝트를 5년 간 진행했습니다. Objective-C 와 공존할 때도 있었지만 3년 전부터는 오롯이 SWIFT만 다루었죠. 그러나 레거시 코드로 돈을 벌고 있는 기업에서의 요구사항에 맞추기 위해서는 Objective-C도 할 수 밖에 없습니다. Let's grap a bite, 밥 먹으러 가요. ご飯食べに行きましょう。모두 같은 뜻입니다. 어떤 언어를 쓰던지 뜻만 통하면 된다고 하죠. 

Don't fight. Just restart!

I've been uploaded the picture on Instagram that is weird things even that belong to companies. Google, Facebook, Samsung, apple's error. This video shows you the action to restart Xcode to solve the problem that cannot connect interface builder to the codes.

Don't trust what you trust because of the famous.


SLog(@"데이터 저장 실패[82]");

인력 사무소 스펙 공지

#iOS 개발
- 카메라 기능 개발, 비디오 커뮤니티 기능 개발
- Unit testing, Git-flow, 코드 리뷰, Viper architecture, Realm, Protocol Buffers
#Android 개발
- 카메라 기능 개발, 비디오 커뮤니티 기능 개발
- Unit testing, Git-flow, 코드 리뷰, RxJava, MVVM, Realm, Protocol Buffers
#모바일Graphics 개발자
- 영상 처리 모듈 개발, 컴퓨터 비전 관련 기술 개발
- OpenGL(ES), GLSL, Android NDK, Swift, C/C++
#컴퓨터비전_딥러닝 연구원, 인턴
- 영상 분석, 실시간 처리
#서버 개발
- 비디오 소셜 커뮤니티 개발
- Google Cloud Platform, Go, Python, Ruby, Unit testing, Git-flow, 코드 리뷰, CI(지속 통합)
#Creative디자인 디자이너
- 영상 필터 아이디어/기획/개발
#UI_UX디자인 디자이너
- 카메라, 모바일 커뮤니티 UI/UX 설계, 제작 
- Wireframing, Presentation, Sketchapp
더욱 자세한 것은 아래 채용 페이지를 참고해주세요.
감사합니다! 

빨리 회사가 유명해지고 계속 유명해져야 할텐데...  그래야 할 텐데


. : 1문자
^a:  a가 줄 제일 앞에 이'ㅅ
a$ : a가 줄 제일 끝에 있음
a*   : a >= 0
a+ : a > 0
a? :  a == 0 or a==1
[abc] : a or b or c
[^abc] : not (a or b or c)
[a-d] : abcd
[x-z] : xyz
[a-z] : abc~xyz
[1-5] : 12345
.{5} : . 5개
.{3,4} : 3개 이상 4개 이하
.{3, } : 3이상
수량자? : 


Helson Halios Armida Gruppo Gamma Maranez Crepas Borealis MkII Makara Bulova Prometheus Ancon Nethuns

출처: <https://intowatch.com/member/join.html#none







• Data Science
• Software Development
• System Administration
• Web Development
• DevOps
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Technical Support
All other skills
• Mobile Application Development
• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Entrepreneurship
• Human Resources (HR)
• Career Development
• Finance
• Accounting
• Architecture
• Graphic Design
• Animation
• Customer Service
• Training & Development
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording


출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


• Architecture
• Graphic Design
• Animation
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording
All other skills
• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Data Science
• Entrepreneurship
• Human Resources (HR)
• Career Development
• Software Development
• Finance
• System Administration
• Web Development
• DevOps
• Accounting
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Customer Service
• Technical Support
• Training & Development
• Mobile Application Development


출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


• Personal Development
• Leadership
• Project Management
• Management
• Marketing
• Sales
• Business Analysis
• Entrepreneurship
All other skills
• Human Resources (HR)
• Career Development
• Finance
• Accounting
• Customer Service
• Training & Development
• Data Science
• Software Development
• System Administration
• Web Development
• DevOps
• Architecture
• Graphic Design
• Animation
• Cloud Computing
• Databases
• Database Administration
• Database Development
• Technical Support
• Video Production
• User Experience Design (UED)
• Photography
• Audio Recording
• Mobile Application Development

출처: <https://www.linkedin.com/learning/onboarding/start/interests?dest=%2Flearning%2Fme%3Ftrk%3Dnav_neptune_learning


숙어 복습

according to
~에 의하면
by way of
~경유하여
for the purpose of
~위해서
in place of
~대신해서
in spite of
~임에도 불구하고
with(for, after) all
~불구하고
notwithstanding
~불구하고
in honour of
~에 경의를 표하며
on account of
~ 때문에
by means of
~에 의하여
by dint of
~에 의하여
with(in) respect to
~관해서
for want of
~의 결핍 때문에
for the sake of
~을 위하여
in case of
~의 경우에
in addition to
게다가, 더욱이
apart (=aside) from
~별도로 하고
on top of
~뿐만 아니라
keep tract of
~정보를 꾸준히 알다
be distributed to
나누어주다
focus on
집중하다
concentrate on
집중하다
on the phone
전화상으로
succeed in
성공하다
prior to
이전에
be directed to
~로 안내되다
deal with
다루다
cope with
다루다
lag behind
~에 뒤지다
benefit from
이익을 얻다
assist with
거들다
capable of - ing
~할 수 있다
contribute to
기여하다
comply with
~에 따르다
be consistent with
~와 일치하다
with few exception
거의 예외 없이
be involved in
~에 관련되다
be comparable to (with)
~에 비교할 만한
upon request
신청하는 대로
around the world
전 세계에
under construction
공사 중이다
advocate of
지지자
be ideal for
~에 이상적인, ~에 적합한
interview with
~와의 인터뷰
be concerned with
~와의 관계
have access to
접근(사용)허가를 갖다
be concerned about
~대해 근심하다
up to now
지금까지
request for
~대한 요구
demand for (= request for)
~에 대한 요구
decide on
~를 결정하다
dispute over
~대한 분쟁
be subject to
~당하기(받기) 쉽다
aim at
~목적으로 하다
come (=go) into effect
실시되다
in breach of
~을 위반하여
in pursuit of
~을 얻고자
in view of
~을 고려하여
be contented (=satisfied) with
~에 만족하다
inch down
조금 허락하다
on (in) behalf of
~을 대신하여
specialize in (+major in)
전문으로하다
confide in
신뢰하다
lay off
해고하다
indulge in
탐닉하다
take over
인수하다
scheduled for
~로 예정된
spin off
부수적으로 생산하다
by the end of
~끝날 때까지
on later than
~이전까지
be enrolled in
등록되다
file a charge against
고발하다
at all times
항상
adapt to
적응하다
support for
지지
opposition to
반대
abstain (= refrain) from
삼가 하다
participate in
참여하다
stand in for
대신하다
turn in (=send in, hand in, submit)
제출하다
place an order
주문하다
result in
결과를 초래하다
make an attempt to V
시도하다
access code for
~에 대한 비밀번호
take on
떠맡다
carry out
이행하다
as a result of
~의 결과로서
maintain relationship with
관계를 유지
in the foreseeable (=near) future
가까운 미래에
be acquainted with
~에 익숙해지다
run short of
부족하다
show up ( =turn up)
나타나다
be located (=situated) in
~위치하다
follow up on
계속 추구/이행하다
be made up of (=consist of)
구성되다
as of
~날짜로부터
put forward
주창하다, 제안하다
be interested in
흥미를 갖다
sign up for
신청하다
advance (= improvement) in
~에 있어서의 진보
contribute to
기여하다
out of the office
출장 중
in one's absence
부재중
free admission to
무료입장
present+사람 +with +사물
(사람)에게 (사물)을 제공하다
make claims about
~에 대하여 주장하다
based on
~에 바탕을 둔
based in
~에 본부를 둔
plane ride to
~행 비행기 여행
earn reputation for
명성을 얻다
get optimistic about
낙관적이다
point out
지적하다
under a contract with
~와 계약 중인
in sufficient quantity
충분한 양으로
to a certain extent
어느 정도 까지는
a wide variety of
다양한 범위의
get reimbursement for
상환 받다
play a role in
역할을 하다
have distinctive advantages over
뚜렷한 장점을 지니다
reach consensus on
합의에 도달하다
shut down
전원이 꺼지다
plug out
전원을 뽑다
on a permanent basis
상임 직으로
in need ( want ) of
~를 필요로 하는
make checks payable to
수표를 ~앞으로 발행하다
on the rise
증가하다
compensate for = make up for
보충(보상)하다
comply with
~에 응하다, (규칙 등) 따르다
concentrate on
~에 집중하다
contrary to
~와 대조적으로
remind A of B
A로 하여금 B가 생각나게 하다
rule out
~를 제외시키다, 배제하다
run a risk of
~의 위험을 무릅쓰다
run out of
~를 다 써버리다
set out
착수하다
set up
세우다, 설립하다
(mis)take A for B
A를 B로 (잘못) 알다
according to
~에 의하면
at stake
위기에 처한
at the rate(cost, price, expense) of
~의 비율(비용)로
at the risk of
위험을 무릅쓰고
attribute A to B
~의 탓으로 돌리다
be absorbed in
~에 몰두하다
be accustomed to + 명사
~에 익숙하다
be entitled to + 동사 또는 명사
~할 자격이 있다
be in tended for
~을 위해 준비된 것이다
account for
설명하다
add to
~를 더하다
ahead of
~보다 앞서
at random
함부로, 무작위로
be responsible for
~에 책임이 있다
be subject somebody
~를 받기 쉬운
be suspicious of
의심하는, 협의가 있는
by means of
~를 수단으로 하여, ~에 의하여
call on + 사람
~를 방문하다
care of
~를 돌보다
carry out
~를 수행하다, 성취하다
come by
얻다
stand by
지지하다
stand for
나타내다
stare at
~을 응시하다
stop by
~에 잠시 들르다
subordinate to
종속적인, 부하의
cope with
~를 잘 대처하다
count on
~를 의지하다
deal with
다루다
depend on = rely on
의지하다
deprive of
제거하다
despite (in spite of) + 단독명사
~에도 불구하고
do without
~없이 지내다
do your utmost(best)
최선을 다하다
in comparison with
~와 비교하여
be acquainted with
~를 잘 아는
be apt to + 동사원형
~하기 쉽다 =be liable(likely) to
be based on
~에 토대를 두다
be bound for + 지명
~로 향하다
be interested for
~에 관심이 있다
be likely to
~하기 쉬운
be noted for
~로 유명한
in terms of
~의 견지에서
in(with) regard to
~에 관하여
inflict on
~에 고통을 가하다
leave out
빠뜨리다, 빼먹다
make up for
~를 보충하다
on account of
~ 때문에
on(in) behalf of
~를 대신하여
out of print
절판 된
participate in
참가하다
prior to
~보다 앞서
refer to
~에 대해 언급하다
regardless of
~에 상관없이
show off
자랑하다, 과시하다
be taken by surprise
기습을 당하다, 경악하다
be willing to + 동사
기꺼이 하다
beware of
~를 주의하다
drag on
질질 끌다
expose to
~에 노출되다
familiarize ... with
~에 익숙하게 하다
fill out
작성하다
for the time being
당분간 (=for the present)
get along with
~와 잘 지내다
get in touch with
~와 연락하다
give a big hand
박수갈채를 보내다
give up
포기하다
in a row
연속하여, 잇달아
sign up
~에 등록하다
subscribe to
~를 구독하다
substitute A for B
A대신 B로 대체하다
take advantage of
~을 잘 이용하다
take turns
교대로 하다
be bound to
반드시 ~하다
be capable of (=be able to)
~할 자격이 있다(=~할 수 있다)
be concerned about
~에 대해 걱정하다
be engaged in
~에 종사하다, 몰두하다
be engaged to
~와 약혼하다
in reference to
~에 관하여
tend to
~하는 경향이 있다
trial and error
시행착오
turn in
제출하다
work out
땀내는 운동을 하다, 결과가 나오다
due to
~때문에
in accordance with
~에 따라서, ~에 맞게
in addition to
~외에도
in advance
미리
show up
나타나다, 참석하다
as a matter of fact
실제에 있어서, 사실은 [really, in fact ]
as a result of
~의 결과로 [because of]
as a rule
일반적으로 [generally, in general ]
as deaf as a post
귀가 전혀 안 들려서
as far as it goes
그 일에 관한 한, 어떤 범위 내에서는
a bird in the hand
확실한 소유물
a bone of contention
분쟁의 원인
a trump card
으뜸 패, 비장의 수단
a world of
아주 많은[ a large number (amount) of]
abandon oneself to
~에 탐닉하다 (빠지다)
abide by [keep, stick to]
~을 지키다
above one's head [above the head of]
너무 어려워서 이해할 수 없는
according to
~에 따라서, ~에 의하면
account for [explain, expound upon ]
~을 설명하다
accuse A of B
A를 B의 혐의로 기소하다
across the board
전면적인, 종합적인 [overall ]
add to
~에 더하다
add up
이해가 되다 [make sense]
after dark
어두워진 후에
against the grain
성질에 맞지 않게, 비위에 거슬리는
agree on
~에 동의하다, 의견을 같이 하다
ahead of
~보다 앞서
all at once
갑자기
all but
거의
all in all
(보통 문두에서) 대체로, 대강 말하면
all the time [always, invariably, ever, continuously ]
항상
all thumbs [very poor , clumsy, awkward]
손재주가 없는
amount to [add up to, come up to ]
총계 ~가 되다
an apple of the eye
아주 소중한 것
answer for [be responsible for]
책임을 지다
answer to [be as described ]
일치(합치)하다
approve of
승인하다, 찬성하다
as a last resort
최후의 수단으로서
at a low ebb
쇠퇴기인 [in a bad or inactive state]
at a person's disposal
마음대로 할 수 있는
at an additional cost
추가 비용으로
at eleventh hour
아슬아슬한 때에 [sooner or later]
at every turn
아주 자주, 늘, 예외 없이
at length
마침내, 드디어, 자세히 [at last]
at odds (with)
의견이 일치하지 않는[ in disagreement ]
at once ~ and~
~하기도 하고 ~하기도 하다 [both ~and ~]
at one' discretion
~의 재량으로, ~의 판단으로
one' expense
~의 비용으로
at one' finger' ends
~에 정통한
at random
무작위로, 함부로, 닥치는 대로
at reasonable rate
적당한 가격으로
at sixes and sevens
혼란하여
at the rate(cost) of
~의 비용으로
at the risk of
위험을 무릅쓰고
at the same time
동시에 [simultaneously]
at the speed of
~의 속도로
at will
뜻대로, 임의로 [at one's pleasure]
be absorbed in
~에 몰두하다, 전념하다
be accustomed to
~에 익숙해지다
be credited to
~덕분(덕택)이다, ~의 공으로 돌려지다 [be ascribed to]
be dead set against
완전히 반대하다 [completely oppose]
be dissatisfied with
~에 불만족스러워하다
be divided into
~로 분류되다, 나뉘어지다
be dressed to kill
멋지게 옷을 입다 [be dressed to attract attention]
be eligible for/to R
~할 자격이 있다, 적격이다
be engaged in
~에 종사하다
have the say
발언권(결정권)이 있다 [have the power of acting or deciding]
have yet to
아직 ~하지 못하다
head off
가로막다, 저지하다 [block (off), forestall ]
beside the beach
해변에
better off
부유한
be engrossed in
~에 열중하다[ be absorbed in, be lost in]
be entitled to
~의 자격이 있다, 권리가 있다
be equal to
~와 같다, 감당할 수 있다,~에 합당하다
be exposed to
~에 노출되다
be faced with
~에 직면하다
be familiar to
~에게 잘 알려져 있다
be fed up with
~에 질리다, 싫증나다 [be (sick and ) tired of]
be geared to
~에 놓여 지다, 맞추어지다
be good at
~에 능숙하다
be opened to
~ 받기 쉽다. 면할 수 없다
be saddled with
(책임, 부담 등을) 지다 [be burdened with]
have one's hair done
머리를 하다
have one's hands full
몹시 바쁘다
have the guts
용기가 있다 [have the heart (courage) ]
hit it off (with)
성미가 잘 맞다, 친구가 되다, ~와 잘해 나가다; ~와 타협하다
hit the ball
척척 진행하다 [go well]
hit the book
열심히 공부하다 [study hard, bone up on ]
hit the booze
술을 마시다 [hit the bottle ]
hit the ceiling
화를 내다, 몹시 성나다 [become angry ]
beware of
~을 주의하다, 조심하다
beyond repair
수리의 가망이 없는
beyond the pale
일반적으로 용인될 수 없는 [socially unacceptable ]
Birds of a feather flock together.
유유상종
bite off more than one can chew
힘에 겨운 일을 계획하다
bite the bullet
이를 꽉 물다, 어려움을 감내하다 [suffer bravely something very unpleasant ]
be inconsistent with
~와 반대이다 [contradict]
be indifferent to
~에 무관심하다
be indulged in
~에 빠지다, ~에 탐닉하다
be interested in
~에 관심이 있다
be involved in
~에 연루되다, 관여하다
be known by
~으로 알 수 있다
be least likely to win
~이길 것 같지않다
be likely to R
~하기 쉽다, ~할 것 같다
be noted for
~로 유명하다
be obligated to R
~하지 않을 수 없다
be one's age
~와 동갑이다
place (set, put) much value on
~을 높이 평가하다
play fast and loose
무책임하게 행동하다 [ act in an irresponsible manner]
play it by ear
임기응변으로 ~하다, 즉흥연주하다 [improvise]
play on
~을 이용하다, 자극하다 [exploit, take advantage of, impose on]
play trick on
~에게 장난을 치다
play up
과장하다; 장난치다 [exaggerate, overstate, hyperbolize]
point up
강조하다 [show clearly, underline, emphasize]
prevail on
설득하다 [persuade]
be acquainted with
~을 잘 알다
be addicted to
~에 중독되다
be appreciative of
~에 감사하고 있다
be apt to R
~하기 쉽다
be assigned to
할당되다
be at home in
~에 정통해있다, ~에 익숙하다 [be familiar with]
be authorized by
권한을 부여받다
be aware of
알고 있다, 의식하고 있다
take in
속이다
take in account , take into account
셈에 넣다, 계산에 넣다
take issue with
논쟁하다 [argue, debate ]
help out
돕다 [assist, give help, aid ]
high and low
도처에, 모든 곳에 [everywhere ]
hinge on
~에 달려있다 [depend on, rely on]
hit below the belt
반칙행위를 하다, 비겁한 짓을 하다
hook up
접속하다, 부품 등을 짜 맞추다 [connect ]
hot air
과장 [exaggerated talk, big talk]
ill at ease
불안하여, 마음을 놓지 못하는, 거북스러운
impose on
~에 편승하다 [take advantage of]
impose upon
~을 이용하다 [take advantage of, exploit ]
immune from
면역이 된 , 면제된 [exempt from]
in a bind
속박되어, 딱하게 되어, 곤경에 처하여
in a jam
곤경에 처한
in a muddle
어리둥절하여
in a row
연속하여
in a timely manner
시기적절하게
on behalf of
~의 이익을 위해, ~을 대신해서 [in the interest of ]
in case
~에 대비하여, ~한 경우에
in charge of
~을 맡고 있는, 담당의 [responsible for]
in comparison with
~와 비교하여
tie up
중단시키다, 구속하다, 꼼짝 못하게 하다
within 24 hours
24시간 내에
within the guideline
지침 안에서
without regard to
~을 고려하지 않고
work from home
재택근무를 하다
work out
연습하다, 훈련하다, 운동하다; (애써서) 성취하다, (문제를) 해결하다
work (do) wonders (miracles, magic)
기적이 일어나다
worth one' salt
급료 값을 하는
wreck havoc on
~을 파괴하다
wrestle with
악전고투하다
write off
(감가상각으로) 값을 줄이다
yearn for
동경하다, 갈망하다
out of print
절판된
out of question
틀림없이, 물론 [undoubtedly, surely ]
out of stock
품절되어
pass out
기절하다; 나누어주다 [distribute]
pass out of existence
사라지다 [disappear, vanish, fade ]
pass the buck
책임을 전가하다
pass up
거절하다 [reject, turn down, decline]
patch up
일시적으로 습(해결)하다 [settle a quarrel or disagreement]
pave the way for
~의 길을 열다, ~을 가능케 하다 [prepare for, make possible]
pay attention to
~에 주의를 기울이다
pay back
상환하다 [return]
pay off
성과를 거두다, 이익을 가져오다 [be worth while]
pay through the nose
엄청난 돈을 쓰다, 바가지를 쓰다 [pay far too much]
pay tribute to
경의를 표하다 [honor, pay homage to]
in accordance with
~에 따라서
in addition to
~에 더하여
in advance
미리 [beforehand]
in all senses
모든 점에서 [in all respects]
in an effort to R
~하는 노력으로
pick one' pocket
소매치기하다
pick up
(도망자 등을) 붙잡다, 검거하다 / 자동차를 태워주다 / 물건을 찾아가다
pick up the tap
셈을 치루다 [pay for]
in despair
절망하여
in detail
상세히
once in a while
가끔씩
out of bounds
출입금지지역의
out of date
구식의, 시대에 뒤떨어진
take advantage of
이용하다
take after
~을 닮다
take against
반항하다, 반감을 갖다
take care of
~을 돌보다
take down
적어두다, 받아 적다
out of humor
불쾌해서, 화가 나서
out of place
장소에 어울리지 않는, 불편한 [uncomfortable]
pride oneself on
자랑하다 [be proud of, take pride in]
prior to
~보다 앞선, 이전에
probe into
~을 조사하다 [look into, examine ]
prop up
버티다, 지지하다, 보장하다
take a sip
조금씩 맛보다
Take it easy
조심해서 가라
take it for granted
~을 당연히 여기다
take it out of
~을 지치게 하다, ~을 못살게 굴다, ~에게 앙갚음(보복)을 하다
throw in the sponge
패배를 인정하다, 항복하다
throw in the towel
패배를 인정하다, 항복하다
throw (have) a fit
노발대발하다
tick off
확인하다, 점검하다
be taken by surprise
기습공격을 받다
be tied up
바쁘다 [be busy, have one's hands full]
be true of
적용되다 [apply to, hold true of ]
be up to
~에게 있다, 달려 있다 [rest with]
be up to one' ear
깊이 빠져 있다,
be well-grounded in
기초가 탄탄한 [know thoroughly]
be willing to R
기꺼이 ~하다
bear (something) in mind
~을 기억하다, ~을 명심하다
beat about
이리저리 찾다 [seek anxiously]




'Blog History' 카테고리의 다른 글

093  (0) 2020.02.26
092  (0) 2020.02.26
090  (0) 2020.02.24
089  (0) 2020.02.21
088  (0) 2020.02.14


TAKIT has been updated.

The First stage gets high-level functions.
Blocks can be rotated.
Unbreakable will be down.
The next bloc is diappeared. You have to think faster.
UI is changed.
The golden block is able to break all the stuff when It is upper of all of the blocks.
If you touch over 100 times screen, it's possible to pass to the next level. But not 100%.


  NSMutableArray *hjhPowerPack = [[NSMutableArray alloc] init];
  [hjhPowerPack addObject:val]; //1
  [hjhPowerPack addObject:val]; //2
  [hjhPowerPack addObject:val]; //3
.
.
.


  NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
  [userDefaults setObject:nsd forKey:@"hjhPowerPack"]; //1, 2, 3
  [userDefaults synchronize];

    NSUserDefaults *userDefaults = [NSUserDefaults standardUserDefaults];
    NSArray *savedPowerPack = [userDefaults objectForKey:@"hjhPowerPack"];

NSNumber *a = savedPowerPack[0];
NSString *b = savedPowerPack[1];
.............. = savedPowerPack[2];
.
.
.


 NSUserDefaults *u = [NSUserDefaults standardUserDefaults];
    NSArray *hjhPowerPack = [u objectForKey:@"hjhPowerPack"];
    NSString *idis = hjhPowerPack[0];


    NSUserDefaults *u = [NSUserDefaults standardUserDefaults];
    [u removeObjectForKey:@"hjhPowerPack"];
    [u synchronize];



[User Defaults] Attempt to set a non-property-list object
You can only store things like NSArray, NSDictionary, NSString, NSData, NSNumber, and NSDate in NSUserDefaults

https://stackoverflow.com/questions/19720611/attempt-to-set-a-non-property-list-object-as-an-nsuserdefaults/19720674


NSUserDefaults *currentDefaults = [NSUserDefaults standardUserDefaults];
NSData *data = [NSKeyedArchiver archivedDataWithRootObject:yourObject];
[currentDefaults setObject:data forKey:@"yourKeyName"];

NSData *data = [currentDefaults objectForKey:@"yourKeyName"];
yourObjectType * token = [NSKeyedUnarchiver unarchiveObjectWithData:data];

[currentDefaults removeObjectForKey:@"yourKeyName"];

But to implement with primitive type is better.





NSUserDefaults *u = [NSUserDefaults standardUserDefaults];
            [u setObject:GlobalVar.globalVar.globalCDSite forKey:@"udglobalCDSite"];
            [u synchronize];
            
2020-02-24 16:27:52.605724+0900 MBASS[19351:2256468] 292513_onHoshCd
2020-02-24 16:27:52.623482+0900 MBASS[19351:2256468] viewDidLoad on SuperAddressSelector
2020-02-24 16:27:52.629484+0900 MBASS[19351:2256468] superselect H
2020-02-24 16:27:52.629665+0900 MBASS[19351:2256468] SQLUTILS_selectDong
2020-02-24 16:27:52.647379+0900 MBASS[19351:2256468] superselect H
2020-02-24 16:27:52.647531+0900 MBASS[19351:2256468] SQLUTILS_selectDong



_mBtnDelete
_mBtnSubmit






디버깅 중...

          [db inspectionSelectDfct:mListMutableArray withDongCd:mDongCd nohs:mFloor ynReClsfRqst:@""  hndlStatCd:@"B" myandquery:@"and yn_re_rcpt='Y'"]; //20200223


yn_svr_trsm

2020-02-24 23:15:23.234715+0900 MBASS[20323:2367786] hjhSelectDefectCategory has been called.
2020-02-24 23:15:23.241294+0900 MBASS[20323:2367786] SQLUTILS_selectDong
2020-02-24 23:15:23.250919+0900 MBASS[20323:2367786] checkingCategory tppg : 59A_J
2020-02-24 23:15:25.336765+0900 MBASS[20323:2367786] hjhSelectDefectCategory has been called.
2020-02-24 23:15:25.343745+0900 MBASS[20323:2367786] SQLUTILS_selectDong

2020-02-24 23:15:51.273517+0900 MBASS[20323:2367786] hjhSelectDefectCategory has been called.
2020-02-24 23:15:51.279472+0900 MBASS[20323:2367786] SQLUTILS_selectDong
2020-02-24 23:15:52.342113+0900 MBASS[20323:2367786] hjhSelectDefectCategory has been called.
2020-02-24 23:15:52.347002+0900 MBASS[20323:2367786] SQLUTILS_selectDong
2020-02-24 23:15:52.359410+0900 MBASS[20323:2367786] checkingCategory tppg : 59A_J




        [[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]
                                                   options:@{}
                                         completionHandler:nil];

[[UIApplication sharedApplication] openURL:[NSURL URLWithString:UIApplicationOpenSettingsURLString]];





   self.navigationItem.leftBarButtonItem = GlobalVar.globalVar.globalBarButtonItemLeft;

    UIBarButtonItem *mybackBarButtonItem = [[UIBarButtonItem alloc] initWithTitle:@"" style:UIBarButtonItemStylePlain target:nil action:nil];
    
    GlobalVar.globalVar.globalBarButtonItemLeft = mybackBarButtonItem;

     mCanYouSeeThisSword = @"P";
        GlobalVar.globalVar.globalCanYouSeeThisSword = @"P";

GlobalVar.globalVar.globalCanYouSeeThisSword 



- (void) hjhSelectDefect_QtChk:(NSMutableArray *)array withDongCd:(NSString *)dongCd nohs:(NSString*)nohs ynReClsfRqst:(NSString *)yn mode:(NSString *)mode hndlStatCd:(NSString *)hndlStatCd sortingMethod:(NSInteger) sortNotsult;



- (void) hjhSelectDefect_QtChk:(NSMutableArray *)array withDongCd:(NSString *)dongCd nohs:(NSString*)nohs ynReClsfRqst:(NSString *)yn mode:(NSString *)mode hndlStatCd:(NSString *)hndlStatCd sortingMethod:(NSInteger) sortNotsult {
    
    NSString *sql_sort = @"";
    
    switch (sortNotsult) {
        case 0: //default values
            sql_sort = @"a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon";
            break;
        case 1:
            sql_sort = @"a.cd_dong asc, a.nohs asc, a.id_loc, a.id_rgon";
            break;
        case 2:
            sql_sort = @"a.cd_dong desc, a.nohs desc, a.id_loc, a.id_rgon";
            break;
        case 3:
            sql_sort = @"a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon";
            break;
        case 4:
            sql_sort = @"a.cd_dong, a.nohs desc, a.id_loc, a.id_rgon";
            break;
            
        default:
            break;
    }
    
    @try {
        [array removeAllObjects];
        
        // Open the database from the users filessytem
  [self checkBackDB];
        if(sqlite3_open([databasePath UTF8String], &database) == SQLITE_OK) {
            // Setup the SQL Statement and compile it for faster access
            
            NSString *query = [NSString stringWithFormat:@"select a.id_mbil \
                               ,a.cd_dong \
                               ,a.nohs \
                               ,c.nm_loc \
                               ,d.nm_rgon \
                               ,e.nm_dfct_type \
                               ,a.dfct_cnts \
                               ,a.cd_hndl_stat \
                               ,a.yn_re_clsf_rqst \
                               ,a.id_wrk_fmer_pic_atch_file \
                               ,a.id_wrk_aftr_pic_atch_file \
                               ,r 0f.nm_dong \
                               ,f.cd_loc_clsf \
                               from ddtbt_dfct a \
                               inner join ddtbt_hosh b on b.cd_dong=a.cd_dong and b.nohs=a.nohs \
                               inner join ddtbt_site_tppg_loc c on c.cd_tppg=b.cd_tppg and c.id_loc=a.id_loc \
                               inner join ddtbt_site_loc_rgon d on d.id_loc=a.id_loc and d.id_rgon=a.id_rgon \
                               inner join ddtbt_rgon_dfct_type e on e.id_rgon=a.id_rgon and e.id_dfct_type=a.id_dfct_type \
                               inner join ddtbt_dong f on f.cd_dong=a.cd_dong \
                               where a.cd_dong like '%@%%' and a.nohs like '%@%%' and a.yn_re_clsf_rqst like '%@%%' \
                               and a.yn_svr_trsm<>'Y' and a.mode like '%@%%' and a.cd_hndl_stat like '%@%%' \
                               order by %@;"
                               ,dongCd, nohs,yn
                               ,mode, hndlStatCd
                               ,sql_sort
                               ];
            
            const char *sqlStatement = [query cStringUsingEncoding:NSASCIIStringEncoding];
            sqlite3_stmt *compiledStatement;
            if(sqlite3_prepare_v2(database, sqlStatement, -1, &compiledStatement, NULL) == SQLITE_OK) {
                // Loop through the results and add them to the feeds array
                while(sqlite3_step(compiledStatement) == SQLITE_ROW) {
                    
                    DFCT_LIST *data = [[DFCT_LIST alloc] init];
                    data.id_mbil = sqlite3_column_int(compiledStatement, 0);
                    data.cd_dong = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 1)];
                    data.nohs = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 2)];
                    data.nm_loc = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 3)];
                    data.nm_rgon = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 4)];
                    data.nm_dfct_type = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 5)];
                    data.dfct_cnts = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 6)];
                    data.cd_hndl_stat = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 7)];
                    data.yn_re_clsg_rqst = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 8)];
                    data.id_wrk_fmer_pic_atch_file = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 9)];
                    data.id_wrk_aftr_pic_atch_file = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 10)];
                    
                    data.nm_dong = [NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 11)];
                    
                    data.cd_loc_clsf =[NSString stringWithUTF8String:(char *)sqlite3_column_text(compiledStatement, 12)];
                    
                    [array addObject:data];
                }
            }
            // Release the compiled statement from memory
            sqlite3_finalize(compiledStatement);
            
        }
        sqlite3_close(database);
        
    } @catch(NSException *e) {
        //hjh_debug        [GlobalVar alertMsgOKWithTitle:@"대림건설" message:[e reason]];
        //            return -99;
        sqlite3_close(database);
    }
}


클라우드 고민

DB 이동의 어려움(벤더락인)
데이터, 애플리케이션, 서비스의 통합 및 연계의 어려움
통합된 클라우드의 관리 이슈
전문성 및 관리 인력 부재
보안, 안정성 및 내/외부 규제
ROI 및 비용 이슈
경영진의 부정적 인식, 승인
전체 워크로드를 클라우드로 전환할 예정
단일 클라우드 활용에 따른 리스크 관리의 어려움 및 종속 (Lock-in)
멀티 클라우드, 하이브리드 클라우드 환경 관리의 복잡성
레거시 시스템(온프레미스)과 클라우드 서비스의 통합
클라우드 전략 수립, 로드맵 부재
클라우드 적용 분야, 워크로드 선정
IT 기술 전문성 부족 (전문인력 부족)
보안 우려
컴플라이언스/관리 거버넌스 구축
클라우드 마이그레이션
애플리케이션 전환 역량, 전문성 부족
IT 최적화
애플리케이션 현대화
클라우드 네이티브 플랫폼, 앱 구축
하이브리드멀티 클라우드 관리
AI 도입 및 확대
디지털 혁신 가속화
신규 비즈니스, 서비스 제공
ROI 극대화, 비용 최적화
비즈니스 민첩성, 유연성 확보
가시성, 통제력, 안정성 확보 – 관리 최적화
데이터의 잠재 가치 실현
탄력적인 비즈니스 성장 지원
보안 및 내외부 규제 준수
블록체인, AI, IoT 등 신기술 접목


개방형 아키텍처 및 기술 기반 (벤더락인 방지)
보안, 안정성 보장
온프레이스 및 클라우드 환경에 대한 전문성, 통합 서비스 역량
클라우드 젼략, 로드맵, 이전, 구축, 통합 관리를 위한 서비스의 비즈니스 적합도
폭넓은 클라우드 서비스 제공 : 오픈소스, 툴, 서비스 지원
안정적 기술 지원 및 운영 서비스 제공
브랜드/ 신뢰성
가격 경쟁력
속도 및 성능

1  MVC
2  MVP
3  MVVM
4  VIPER
5  Clean Architecture
6  Flux



[self showMeThePicture];

-(void)showMeThePicture {
    //    [mTextDfctCnts resignFirstResponder];
    Hgallery *v = [[Hgallery alloc] initWithNibName:@"HGallery" bundle:[NSBundle mainBundle]];
    self.title = @"";
    
    v.mType = @"I";
    
    v.mFormerPictures =mPictureOfDefect;
    [self.navigationController pushViewController:v animated:NO];
}

like a star


Timer.scheduledTimer
Transparency

[mDfct.mode isEqualToString:@"I"]



NSString    *mode;
@property (nonatomic, strong) NSString    *mode;

tableColor
    [bgColorView setBackgroundColor: [UIColor colorWithRed:0.988235 green:0.964705 blue:0.870588 alpha:1.0]];

Timer.scheduledTimer
Transparency

[mDfct.mode isEqualToString:@"I"]



NSString    *mode;
@property (nonatomic, strong) NSString    *mode;

tableColor
   

 [bgColorView setBackgroundColor: [UIColor colorWithRed:0.988235 green:0.964705 blue:0.870588 alpha:1.0]];




   [[_mBtnMap layer] setCornerRadius:8.0f];
    [[_mBtnMap layer] setMasksToBounds:YES];
    [[_mBtnMap layer] setBorderWidth:1.0f];
    [[_mBtnMap layer] setBorderColor:[UIColor colorWithRed:0.105882 green:0.180392 blue:0.352941 alpha:1.0].CGColor];

'Blog History' 카테고리의 다른 글

092  (0) 2020.02.26
091  (0) 2020.02.24
089  (0) 2020.02.21
088  (0) 2020.02.14
087  (0) 2020.02.14

+ Recent posts