How can I modify this to process 80,000 records at a time until finish.

Hello it's me again -
Without using a rownum limit in my cursor declare my record-set is around 10 million records. This causes problems within our environment. Is there a way I can loop the following code and only do 80,000 at a time.
1 process 80,000
2. process next 80,000.
How would I redeclare the cursor in a loop and grab the next 80,000?
Thanks again
Steve
SET SERVEROUTPUT ON
DECLARE
CURSOR vt_mlr_cursor IS Select master_key, tn, user2 from vt_mlr Where user2 is not null and rownum < 80001;
USERFIELD VARCHAR2(100);
R_count NUMBER := 0;
Field1 VARCHAR2(20);
Field2 VARCHAR2(20);
key VARCHAR2(10);
phone VARCHAR2(11);
BEGIN
FOR vt_mlr_record IN vt_mlr_cursor
LOOP
BEGIN
     key := vt_mlr_record.master_key;
     phone     := vt_mlr_record.tn;
     USERFIELD := vt_mlr_record.user2;
     Field1 := SUBSTR(vt_mlr_record.user2,12,4);
     Field2 := SUBSTR(vt_mlr_record.user2,28,4);
          UPDATE vt_mlr
          SET
          line_medr = Field1,
          line_aidr = Field2
          WHERE
          master_key = vt_mlr_record.master_key;
          R_count := R_count + 1;
     EXCEPTION
     when others then
     Insert into temp_reject (REJECT_KEY, REJECT_TN, REJECT_VALUE) VALUES
     (key, phone, 'USER2 ' || USERFIELD );
     R_count := R_count - 1;
END;
END LOOP;
     commit;
     EXCEPTION
     when others then
     DBMS_OUTPUT.PUT_LINE('Error code ' || sqlcode || ' Error desc' || SUBSTR(sqlerrm,1,200));
END;

Add a "last_update" or "modified" column to your table.
Then do this:
declare
CURSOR vt_mlr_cursor IS
   select master_key, tn, user2
   from vt_mlr
   where user2 is not null and rownum < 80001
         and modified != 'Y'
(or)
         and last_update < begin_date ;
   begin_date constant date := sysdate ;
begin
  update vt_mlr
     set line_medr = Field1,
         line_aidr = Field2,
         modified = 'Y'
(or)
         last_update = sysdate

Similar Messages

  • I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    I want to change the sharing and permissions of a large number of photos. How can I do this in bulk rather than one at a time?

    Does this involve iPhoto in some way?

  • When I started up itunes on my PC I get this error: a required itunes component is not installed. please repair or reinstall ituens (-42404). How can I fixed this? I uninstalled it at least 6 times. Not exactly sure what I'm suppose to repair either.

    When I started up itunes on my PC I get this error: a required itunes component is not installed. please repair or reinstall ituens (-42404). How can I fixed this? I uninstalled it at least 6 times. Not exactly sure what I'm suppose to repair either. It also says it is syncing my ipod but when I go to disconnect/eject my ipod it says that it is unable to disconnect because files are being used in a program. When it finally disconnects there is no music on my ipod. The gym just ***** with out my ipod. Makes it eiser to not go! Someone please help me!

    Use the instructions here to completely remove/uinstall all iTunes/Apple software and componenets and then start from scratch.
    http://support.apple.com/kb/HT1923
    B-rock

  • How can I modify this script to return only certain rows of my mySQL table?

    Hi there,
    I have a php script that accesses a mySQL database and it was generated out of the Flex Builder wizard automatically. The script works great and there are no problems with it. It allows me to perform CRUD on a table by calling it from my Flex app. and it retrieves all the data and puts it into a nice MXML format.
    My question, currently when I call "findAll" to retrieve all the data in the table, well, it retrieves ALL the rows in the table. That's fine, but my table is starting to grow really large with thousands of rows.
    I want to modify this script so that I can pass a variable into it from Flex so that it only retrieves the rows that match the "$subscriber_id" variable that I pass. In this way the results are not the entire table's data, only the rows that match 'subscriber_id'.
    I know how to pass a variable from Flex into php and the code on the php side to pick it up would look like this:
    $subscriberID = $_POST['subscriberID'];
    Can anyone shed light as to the proper code modification in "findAll" which will take my $subscriberID variable and compare it to the 'subscriber_id' field and then only return those rows that match? I think it has something to do with lines 98 to 101.
    Any help is appreciated.
    <?php
    require_once(dirname(__FILE__) . "/2257safeDBconn.php");
    require_once(dirname(__FILE__) . "/functions.inc.php");
    require_once(dirname(__FILE__) . "/XmlSerializer.class.php");
    * This is the main PHP file that process the HTTP parameters,
    * performs the basic db operations (FIND, INSERT, UPDATE, DELETE)
    * and then serialize the response in an XML format.
    * XmlSerializer uses a PEAR xml parser to generate an xml response.
    * this takes a php array and generates an xml according to the following rules:
    * - the root tag name is called "response"
    * - if the current value is a hash, generate a tagname with the key value, recurse inside
    * - if the current value is an array, generated tags with the default value "row"
    * for example, we have the following array:
    * $arr = array(
    *      "data" => array(
    *           array("id_pol" => 1, "name_pol" => "name 1"),
    *           array("id_pol" => 2, "name_pol" => "name 2")
    *      "metadata" => array(
    *           "pageNum" => 1,
    *           "totalRows" => 345
    * we will get an xml of the following form
    * <?xml version="1.0" encoding="ISO-8859-1"?>
    * <response>
    *   <data>
    *     <row>
    *       <id_pol>1</id_pol>
    *       <name_pol>name 1</name_pol>
    *     </row>
    *     <row>
    *       <id_pol>2</id_pol>
    *       <name_pol>name 2</name_pol>
    *     </row>
    *   </data>
    *   <metadata>
    *     <totalRows>345</totalRows>
    *     <pageNum>1</pageNum>
    *   </metadata>
    * </response>
    * Please notice that the generated server side code does not have any
    * specific authentication mechanism in place.
    * The filter field. This is the only field that we will do filtering after.
    $filter_field = "subscriber_id";
    * we need to escape the value, so we need to know what it is
    * possible values: text, long, int, double, date, defined
    $filter_type = "text";
    * constructs and executes a sql select query against the selected database
    * can take the following parameters:
    * $_REQUEST["orderField"] - the field by which we do the ordering. MUST appear inside $fields.
    * $_REQUEST["orderValue"] - ASC or DESC. If neither, the default value is ASC
    * $_REQUEST["filter"] - the filter value
    * $_REQUEST["pageNum"] - the page index
    * $_REQUEST["pageSize"] - the page size (number of rows to return)
    * if neither pageNum and pageSize appear, we do a full select, no limit
    * returns : an array of the form
    * array (
    *           data => array(
    *                array('field1' => "value1", "field2" => "value2")
    *           metadata => array(
    *                "pageNum" => page_index,
    *                "totalRows" => number_of_rows
    function findAll() {
         global $conn, $filter_field, $filter_type;
          * the list of fields in the table. We need this to check that the sent value for the ordering is indeed correct.
         $fields = array('id','subscriber_id','lastName','firstName','birthdate','gender');
         $where = "";
         if (@$_REQUEST['filter'] != "") {
              $where = "WHERE " . $filter_field . " LIKE " . GetSQLValueStringForSelect(@$_REQUEST["filter"], $filter_type);     
         $order = "";
         if (@$_REQUEST["orderField"] != "" && in_array(@$_REQUEST["orderField"], $fields)) {
              $order = "ORDER BY " . @$_REQUEST["orderField"] . " " . (in_array(@$_REQUEST["orderDirection"], array("ASC", "DESC")) ? @$_REQUEST["orderDirection"] : "ASC");
         //calculate the number of rows in this table
         $rscount = mysql_query("SELECT count(*) AS cnt FROM `modelName` $where");
         $row_rscount = mysql_fetch_assoc($rscount);
         $totalrows = (int) $row_rscount["cnt"];
         //get the page number, and the page size
         $pageNum = (int)@$_REQUEST["pageNum"];
         $pageSize = (int)@$_REQUEST["pageSize"];
         //calculate the start row for the limit clause
         $start = $pageNum * $pageSize;
         //construct the query, using the where and order condition
         $query_recordset = "SELECT id,subscriber_id,lastName,firstName,birthdate,gender FROM `modelName` $where $order";
         //if we use pagination, add the limit clause
         if ($pageNum >= 0 && $pageSize > 0) {     
              $query_recordset = sprintf("%s LIMIT %d, %d", $query_recordset, $start, $pageSize);
         $recordset = mysql_query($query_recordset, $conn);
         //if we have rows in the table, loop through them and fill the array
         $toret = array();
         while ($row_recordset = mysql_fetch_assoc($recordset)) {
              array_push($toret, $row_recordset);
         //create the standard response structure
         $toret = array(
              "data" => $toret,
              "metadata" => array (
                   "totalRows" => $totalrows,
                   "pageNum" => $pageNum
         return $toret;
    * constructs and executes a sql count query against the selected database
    * can take the following parameters:
    * $_REQUEST["filter"] - the filter value
    * returns : an array of the form
    * array (
    *           data => number_of_rows,
    *           metadata => array()
    function rowCount() {
         global $conn, $filter_field, $filter_type;
         $where = "";
         if (@$_REQUEST['filter'] != "") {
              $where = "WHERE " . $filter_field . " LIKE " . GetSQLValueStringForSelect(@$_REQUEST["filter"], $filter_type);     
         //calculate the number of rows in this table
         $rscount = mysql_query("SELECT count(*) AS cnt FROM `modelName` $where");
         $row_rscount = mysql_fetch_assoc($rscount);
         $totalrows = (int) $row_rscount["cnt"];
         //create the standard response structure
         $toret = array(
              "data" => $totalrows,
              "metadata" => array()
         return $toret;

    Hi there,
    I have a php script that accesses a mySQL database and it was generated out of the Flex Builder wizard automatically. The script works great and there are no problems with it. It allows me to perform CRUD on a table by calling it from my Flex app. and it retrieves all the data and puts it into a nice MXML format.
    My question, currently when I call "findAll" to retrieve all the data in the table, well, it retrieves ALL the rows in the table. That's fine, but my table is starting to grow really large with thousands of rows.
    I want to modify this script so that I can pass a variable into it from Flex so that it only retrieves the rows that match the "$subscriber_id" variable that I pass. In this way the results are not the entire table's data, only the rows that match 'subscriber_id'.
    I know how to pass a variable from Flex into php and the code on the php side to pick it up would look like this:
    $subscriberID = $_POST['subscriberID'];
    Can anyone shed light as to the proper code modification in "findAll" which will take my $subscriberID variable and compare it to the 'subscriber_id' field and then only return those rows that match? I think it has something to do with lines 98 to 101.
    Any help is appreciated.
    <?php
    require_once(dirname(__FILE__) . "/2257safeDBconn.php");
    require_once(dirname(__FILE__) . "/functions.inc.php");
    require_once(dirname(__FILE__) . "/XmlSerializer.class.php");
    * This is the main PHP file that process the HTTP parameters,
    * performs the basic db operations (FIND, INSERT, UPDATE, DELETE)
    * and then serialize the response in an XML format.
    * XmlSerializer uses a PEAR xml parser to generate an xml response.
    * this takes a php array and generates an xml according to the following rules:
    * - the root tag name is called "response"
    * - if the current value is a hash, generate a tagname with the key value, recurse inside
    * - if the current value is an array, generated tags with the default value "row"
    * for example, we have the following array:
    * $arr = array(
    *      "data" => array(
    *           array("id_pol" => 1, "name_pol" => "name 1"),
    *           array("id_pol" => 2, "name_pol" => "name 2")
    *      "metadata" => array(
    *           "pageNum" => 1,
    *           "totalRows" => 345
    * we will get an xml of the following form
    * <?xml version="1.0" encoding="ISO-8859-1"?>
    * <response>
    *   <data>
    *     <row>
    *       <id_pol>1</id_pol>
    *       <name_pol>name 1</name_pol>
    *     </row>
    *     <row>
    *       <id_pol>2</id_pol>
    *       <name_pol>name 2</name_pol>
    *     </row>
    *   </data>
    *   <metadata>
    *     <totalRows>345</totalRows>
    *     <pageNum>1</pageNum>
    *   </metadata>
    * </response>
    * Please notice that the generated server side code does not have any
    * specific authentication mechanism in place.
    * The filter field. This is the only field that we will do filtering after.
    $filter_field = "subscriber_id";
    * we need to escape the value, so we need to know what it is
    * possible values: text, long, int, double, date, defined
    $filter_type = "text";
    * constructs and executes a sql select query against the selected database
    * can take the following parameters:
    * $_REQUEST["orderField"] - the field by which we do the ordering. MUST appear inside $fields.
    * $_REQUEST["orderValue"] - ASC or DESC. If neither, the default value is ASC
    * $_REQUEST["filter"] - the filter value
    * $_REQUEST["pageNum"] - the page index
    * $_REQUEST["pageSize"] - the page size (number of rows to return)
    * if neither pageNum and pageSize appear, we do a full select, no limit
    * returns : an array of the form
    * array (
    *           data => array(
    *                array('field1' => "value1", "field2" => "value2")
    *           metadata => array(
    *                "pageNum" => page_index,
    *                "totalRows" => number_of_rows
    function findAll() {
         global $conn, $filter_field, $filter_type;
          * the list of fields in the table. We need this to check that the sent value for the ordering is indeed correct.
         $fields = array('id','subscriber_id','lastName','firstName','birthdate','gender');
         $where = "";
         if (@$_REQUEST['filter'] != "") {
              $where = "WHERE " . $filter_field . " LIKE " . GetSQLValueStringForSelect(@$_REQUEST["filter"], $filter_type);     
         $order = "";
         if (@$_REQUEST["orderField"] != "" && in_array(@$_REQUEST["orderField"], $fields)) {
              $order = "ORDER BY " . @$_REQUEST["orderField"] . " " . (in_array(@$_REQUEST["orderDirection"], array("ASC", "DESC")) ? @$_REQUEST["orderDirection"] : "ASC");
         //calculate the number of rows in this table
         $rscount = mysql_query("SELECT count(*) AS cnt FROM `modelName` $where");
         $row_rscount = mysql_fetch_assoc($rscount);
         $totalrows = (int) $row_rscount["cnt"];
         //get the page number, and the page size
         $pageNum = (int)@$_REQUEST["pageNum"];
         $pageSize = (int)@$_REQUEST["pageSize"];
         //calculate the start row for the limit clause
         $start = $pageNum * $pageSize;
         //construct the query, using the where and order condition
         $query_recordset = "SELECT id,subscriber_id,lastName,firstName,birthdate,gender FROM `modelName` $where $order";
         //if we use pagination, add the limit clause
         if ($pageNum >= 0 && $pageSize > 0) {     
              $query_recordset = sprintf("%s LIMIT %d, %d", $query_recordset, $start, $pageSize);
         $recordset = mysql_query($query_recordset, $conn);
         //if we have rows in the table, loop through them and fill the array
         $toret = array();
         while ($row_recordset = mysql_fetch_assoc($recordset)) {
              array_push($toret, $row_recordset);
         //create the standard response structure
         $toret = array(
              "data" => $toret,
              "metadata" => array (
                   "totalRows" => $totalrows,
                   "pageNum" => $pageNum
         return $toret;
    * constructs and executes a sql count query against the selected database
    * can take the following parameters:
    * $_REQUEST["filter"] - the filter value
    * returns : an array of the form
    * array (
    *           data => number_of_rows,
    *           metadata => array()
    function rowCount() {
         global $conn, $filter_field, $filter_type;
         $where = "";
         if (@$_REQUEST['filter'] != "") {
              $where = "WHERE " . $filter_field . " LIKE " . GetSQLValueStringForSelect(@$_REQUEST["filter"], $filter_type);     
         //calculate the number of rows in this table
         $rscount = mysql_query("SELECT count(*) AS cnt FROM `modelName` $where");
         $row_rscount = mysql_fetch_assoc($rscount);
         $totalrows = (int) $row_rscount["cnt"];
         //create the standard response structure
         $toret = array(
              "data" => $totalrows,
              "metadata" => array()
         return $toret;

  • How can I modify this makefile to create proper ARMV7 dylibs?

    I need to modify this makefile in order to create proper dylibs for inclusion in my IOS projects. If I just using the dylibs generated without changing this file, I get this error trying to use the dylibs:
    ld: warning: ld: warning: ignoring file Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libbson.dylib, file was built for unsupported file format
    ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7s):
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libbson.dylibignoring file
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libmongoc.dylib, file was built for unsupported file format
    ( 0xcf 0xfa 0xed 0xfe 0x 7 0x 0 0x 0 0x 1 0x 3 0x 0 0x 0 0x 0 0x 6 0x 0 0x 0 0x 0 ) which is not the architecture being linked (armv7s):
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    libmongoc.dylib
    Undefined symbols for architecture armv7s:
      "_mongo_connect", referenced from:
          -[ViewController viewDidLoad] in ViewController.o
    The makefile:
    # MongoDB C Driver Makefile
    # Copyright 2009, 2010 10gen Inc.
    # Licensed under the Apache License, Version 2.0 (the "License");
    # you may not use this file except in compliance with the License.
    # You may obtain a copy of the License at
    # http://www.apache.org/licenses/LICENSE-2.0
    # Unless required by applicable law or agreed to in writing, software
    # distributed under the License is distributed on an "AS IS" BASIS,
    # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    # See the License for the specific language governing permissions and
    # limitations under the License.
    # Version
    MONGO_MAJOR=0
    MONGO_MINOR=6
    MONGO_PATCH=0
    BSON_MAJOR=$(MONGO_MAJOR)
    BSON_MINOR=$(MONGO_MINOR)
    BSON_PATCH=$(MONGO_PATCH)
    # Library names
    MONGO_LIBNAME=libmongoc
    BSON_LIBNAME=libbson
    # Standard or posix env.
    ENV?=posix
    # TODO: add replica set test, cpp test, platform tests, json_test
    TESTS=test_auth test_bcon test_bson test_bson_subobject test_count_delete \
      test_cursors test_endian_swap test_errors test_examples \
      test_functions test_gridfs test_helpers \
      test_oid test_resize test_simple test_sizes test_update \
      test_validate test_write_concern test_commands
    MONGO_OBJECTS=src/bcon.o src/bson.o src/encoding.o src/gridfs.o src/md5.o src/mongo.o \
    src/numbers.o
    BSON_OBJECTS=src/bcon.o src/bson.o src/numbers.o src/encoding.o
    ifeq ($(ENV),posix)
        TESTS+=test_env_posix test_unix_socket
        MONGO_OBJECTS+=src/env_posix.o
    else
        MONGO_OBJECTS+=src/env_standard.o
    endif
    DYN_MONGO_OBJECTS=$(foreach i,$(MONGO_OBJECTS),$(patsubst %.o,%.os,$(i)))
    DYN_BSON_OBJECTS=$(foreach i,$(BSON_OBJECTS),$(patsubst %.o,%.os,$(i)))
    # Compile flags
    ALL_DEFINES=$(DEFINES)
    ALL_DEFINES+=-D_POSIX_SOURCE
    CC:=$(shell sh -c 'type $(CC) >/dev/null 2>/dev/null && echo $(CC) || echo gcc')
    DYN_FLAGS:=-fPIC -DMONGO_DLL_BUILD
    # Endianness check
    endian := $(shell sh -c 'echo "ab" | od -x | grep "6261" >/dev/null && echo little || echo big')
    ifeq ($(endian),big)
        ALL_DEFINES+=-DMONGO_BIG_ENDIAN
    endif
    # Int64 type check
    int64:=$(shell ./check_int64.sh $(CC) stdint.h && echo stdint)
    ifeq ($(int64),stdint)
        ALL_DEFINES+=-DMONGO_HAVE_STDINT
    else
        int64:=$(shell ./check_int64.sh $(CC) unistd.h && echo unistd)
        ifeq ($(int64),unistd)
            ALL_DEFINES+=-DMONGO_HAVE_UNISTD
        endif
    endif
    $(shell rm header_check.tmp tmp.c)
    TEST_DEFINES=$(ALL_DEFINES)
    TEST_DEFINES+=-DTEST_SERVER="\"127.0.0.1\""
    OPTIMIZATION?=-O3
    WARNINGS?=-Wall
    DEBUG?=-ggdb
    STD?=c99
    PEDANTIC?=-pedantic
    ALL_CFLAGS=-std=$(STD) $(PEDANTIC) $(CFLAGS) $(OPTIMIZATION) $(WARNINGS) $(DEBUG) $(ALL_DEFINES)
    ALL_LDFLAGS=$(LDFLAGS)
    # Shared libraries
    DYLIBSUFFIX=so
    STLIBSUFFIX=a
    MONGO_DYLIBNAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX)
    MONGO_DYLIB_MAJOR_NAME=$(MONGO_DYLIBNAME).$(MONGO_MAJOR)
    MONGO_DYLIB_MINOR_NAME=$(MONGO_DYLIB_MAJOR_NAME).$(MONGO_MINOR)
    MONGO_DYLIB_PATCH_NAME=$(MONGO_DYLIB_MINOR_NAME).$(MONGO_PATCH)
    MONGO_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-soname,$(MONGO_DYLIB_MINOR_NAME) -o $(MONGO_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_MONGO_OBJECTS)
    BSON_DYLIBNAME=$(BSON_LIBNAME).$(DYLIBSUFFIX)
    BSON_DYLIB_MAJOR_NAME=$(BSON_DYLIBNAME).$(BSON_MAJOR)
    BSON_DYLIB_MINOR_NAME=$(BSON_DYLIB_MAJOR_NAME).$(BSON_MINOR)
    BSON_DYLIB_PATCH_NAME=$(BSON_DYLIB_MINOR_NAME).$(BSON_PATCH)
    BSON_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-soname,$(BSON_DYLIB_MINOR_NAME) -o $(BSON_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_BSON_OBJECTS)
    # Static libraries
    MONGO_STLIBNAME=$(MONGO_LIBNAME).$(STLIBSUFFIX)
    BSON_STLIBNAME=$(BSON_LIBNAME).$(STLIBSUFFIX)
    # Overrides
    kernel_name := $(shell sh -c 'uname -s 2>/dev/null || echo not')
    ifeq ($(kernel_name),SunOS)
        ALL_LDFLAGS+=-ldl -lnsl -lsocket
        INSTALL_CMD=cp -r
        MONGO_DYLIB_MAKE_CMD=$(CC) -G -o $(MONGO_DYLIBNAME) -h $(MONGO_DYLIB_MINOR_NAME) $(ALL_LDFLAGS)
        BSON_DYLIB_MAKE_CMD=$(CC) -G -o $(BSON_DYLIBNAME) -h $(BSON_DYLIB_MINOR_NAME) $(ALL_LDFLAGS)
    endif
    ifeq ($(kernel_name),Darwin)
        ALL_CFLAGS+=-std=$(STD) $(CFLAGS) $(OPTIMIZATION) $(WARNINGS) $(DEBUG) $(ALL_DEFINES)
        DYLIBSUFFIX=dylib
        MONGO_DYLIB_MINOR_NAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX).$(MONGO_MAJOR).$(MONGO_M INOR)
        MONGO_DYLIB_MAJOR_NAME=$(MONGO_LIBNAME).$(DYLIBSUFFIX).$(MONGO_MAJOR)
        MONGO_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(MONGO_DYLIB_MINOR_NAME) -o $(MONGO_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_MONGO_OBJECTS)
        BSON_DYLIB_MINOR_NAME=$(BSON_LIBNAME).$(DYLIBSUFFIX).$(BSON_MAJOR).$(BSON_MINOR )
        BSON_DYLIB_MAJOR_NAME=$(BSON_LIBNAME).$(DYLIBSUFFIX).$(BSON_MAJOR)
        BSON_DYLIB_MAKE_CMD=$(CC) -shared -Wl,-install_name,$(BSON_DYLIB_MINOR_NAME) -o $(BSON_DYLIBNAME) $(ALL_LDFLAGS) $(DYN_BSON_OBJECTS)
    endif
    # Installation
    ifeq ($(kernel_name),SunOS)
        INSTALL?=cp -r
    endif
    INSTALL?= cp -a
    INSTALL_INCLUDE_PATH?=/usr/local/include
    INSTALL_LIBRARY_PATH?=/usr/local/lib
    # TARGETS
    all: $(MONGO_DYLIBNAME) $(BSON_DYLIBNAME) $(MONGO_STLIBNAME) $(BSON_STLIBNAME)
    # Dependency targets. Run 'make deps' to generate these.
    bcon.o: src/bcon.c src/bcon.h src/bson.h
    bson.o: src/bson.c src/bson.h src/encoding.h
    encoding.o: src/encoding.c src/bson.h src/encoding.h
    env_standard.o: src/env_standard.c src/env.h src/mongo.h src/bson.h
    env_posix.o: src/env_posix.c src/env.h src/mongo.h src/bson.h
    gridfs.o: src/gridfs.c src/gridfs.h src/mongo.h src/bson.h
    md5.o: src/md5.c src/md5.h
    mongo.o: src/mongo.c src/mongo.h src/bson.h src/md5.h src/env.h
    numbers.o: src/numbers.c
    $(MONGO_DYLIBNAME): $(DYN_MONGO_OBJECTS)
        $(MONGO_DYLIB_MAKE_CMD)
    $(MONGO_STLIBNAME): $(MONGO_OBJECTS)
        $(AR) -rs $@ $(MONGO_OBJECTS)
    $(BSON_DYLIBNAME): $(DYN_BSON_OBJECTS)
        $(BSON_DYLIB_MAKE_CMD)
    $(BSON_STLIBNAME): $(BSON_OBJECTS)
        $(AR) -rs $@ $(BSON_OBJECTS)
    install:
        mkdir -p $(INSTALL_INCLUDE_PATH) $(INSTALL_LIBRARY_PATH)
        $(INSTALL) src/mongo.h src/bson.h $(INSTALL_INCLUDE_PATH)
        $(INSTALL) $(MONGO_DYLIBNAME) $(INSTALL_LIBRARY_PATH)/$(MONGO_DYLIB_PATCH_NAME)
        $(INSTALL) $(BSON_DYLIBNAME) $(INSTALL_LIBRARY_PATH)/$(BSON_DYLIB_PATCH_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(MONGO_DYLIB_PATCH_NAME) $(MONGO_DYLIB_MINOR_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(BSON_DYLIB_PATCH_NAME) $(BSON_DYLIB_MINOR_NAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(MONGO_DYLIB_MINOR_NAME) $(MONGO_DYLIBNAME)
        cd $(INSTALL_LIBRARY_PATH) && ln -sf $(BSON_DYLIB_MINOR_NAME) $(BSON_DYLIBNAME)
        $(INSTALL) $(MONGO_STLIBNAME) $(INSTALL_LIBRARY_PATH)
        $(INSTALL) $(BSON_STLIBNAME) $(INSTALL_LIBRARY_PATH)
    scan-build: clean
        scan-build -V -v make
    test: $(TESTS)
        sh runtests.sh
    valgrind: $(TESTS)
        sh runtests.sh -v
    docs:
        python docs/buildscripts/docs.py
    clean:
        rm -rf src/*.o src/*.os test/*.o test/*.os test_* .scon* config.log
    clobber: clean
        rm -rf $(MONGO_DYLIBNAME) $(MONGO_STLIBNAME) $(BSON_DYLIBNAME) $(BSON_STLIBNAME) docs/html docs/source/doxygen
    deps:
        $(CC) -MM -DMONGO_HAVE_STDINT src/*.c
    32bit:
        $(MAKE) CFLAGS="-m32" LDFLAGS="-pg"
    test_%: test/%_test.c test/test.h $(MONGO_STLIBNAME)
        $(CC) -o $@ -L. -Isrc $(TEST_DEFINES) $(ALL_LDFLAGS) $< $(MONGO_STLIBNAME)
    %.o: %.c
        $(CC) -o $@ -c $(ALL_CFLAGS) $<
    %.os: %.c
        $(CC) -o $@ -c $(ALL_CFLAGS) $(DYN_FLAGS) $<
    .PHONY: 32bit all clean clobber deps docs install test valgrind

    Hi Petar,
    Thanks for your answer. No doubt that we could solve the issue using on of the way you suggested.
    However, even though I had the evdre issue right after applying time dimension modifications, it occurs that the evdre issue was not due to time dimension modifications. I tested it better and I can tell that using "total" as a level works.
    Best regards,
    Ludovic

  • How can i modify this code in BI?

    hi friends,
    suppose i have data in infosource with deffirent customers.
    like from usa,germany,uk.
    i created 3 cubes and uploaded records corresponding countries.
    i have written code like this in 3.5
    loop at data_package.
    if data_package-/bic/zcustomer <> 'usa'.
    delete data_package.
    endif.
    endloop.
    same logic i need to write in BI 7.0 now where can i write this logic, what modifications i need to change for BI 7.0
    regards
    suneel.

    Hi,
    Check this link:
    https://www.sdn.sap.com/irj/sdn/go/portal/prtroot/docs/library/uuid/6090a621-c170-2910-c1ab-d9203321ee19
    I guess, you just need to change the DATA_PACKAGE to the new naming convention.
    Hope this helps.
    PB

  • How can I modify this code to display an image in an applet?

    Sorry, I'm almost positive this is absolutely incorrect, but here is what I have so far:
    import java.awt.*;
    import java.awt.event.*;
    import java.awt.image.*;
    import java.io.*;
    import javax.imageio.*;
    import javax.swing.*;
    public class Blackberry extends JApplet implements ActionListener
         Image image;
        public void init()
            //image = getImage(getDocumentBase(), "bluespace.png");
            try { image = ImageIO.read(new File("bluespace.png")); }
              catch (IOException e) { }
        public void paint(Graphics g)
            g.drawImage(image, 0, 0, this);
    }There are no errors given when run as an applet in Eclipse, it just displays a blank window.

    Here's a small example of a JPanel that draws an image:
    import java.awt.Dimension;
    import java.awt.Graphics;
    import java.awt.Image;
    import javax.swing.JPanel;
    public class ShowImageJPanel extends JPanel
      private Image image;
      public ShowImageJPanel(Image image)
        this.image = image;
        Dimension size = new Dimension(
            image.getWidth(this),
            image.getHeight(this));
        setPreferredSize(size);
      @Override
      protected void paintComponent(Graphics g)
        super.paintComponent(g);
        if (image != null)
          g.drawImage(image, 0, 0, this);
    }and a JApplet that adds this JPanel into its contentPane:
    import java.awt.Image;
    import java.io.IOException;
    import javax.imageio.ImageIO;
    import javax.swing.JApplet;
    public class ShowImageApplet extends JApplet
      private static final String IMAGE_PATH = "images/SunSteinSmall.png";
      public void init()
        try
          javax.swing.SwingUtilities.invokeAndWait(new Runnable()
            public void run()
              createGUI();
        catch (Exception e)
          System.err.println("createGUI didn't successfully complete");
      private void createGUI()
        try
          Image image = ImageIO.read(getClass().getResourceAsStream(IMAGE_PATH));
          getContentPane().add(new ShowImageJPanel(image));
        catch (IOException e)
          e.printStackTrace();
    }Here I have a subpackage off of the applet's package called image, and it's filled with Duke images which you can download from here:
    [https://duke.dev.java.net/images/index.html]

  • What generates the message "Connecting To 1.2.3.4.." and how can I stop this "thing" from slowing down my WEB response times ????

    This problem started in January 2011. I have an AT&T 3G wireless connection to the INTERNET.
    Response time had always been amazing with the 3G and Firefox. Starting one day in January I started having long delays with every website, page, etc., etc. that I accessed. The message "Connecting To 1.2.3.4..." appeared with everything I did.

    The "connecting to 1.2.3.4" is an HTML code-snippet that AT&T is injecting in to HTML pages that calls a javascript image accelerator (presumably hitting some AT&T cache) sitting on the server with the IP address "1.2.3.4". They're doing this to improve image quality/download speed on mobiles, but given this is a firefox forum I'm willing to bet the "34 people" that have this problem as well are using their AT&T 3G connection for internet tethering.
    To confirm this, navigate to one of these slow pages in firefox and use the menus to find: View ==> Page Source You should see right at the top something like:
    < script src="http://1.2.3.4/bmi-int-js/bmi.js" language="javascript">< /script>
    Given you're on a laptop, you probably don't want this image shrinking service so you need to block access the site "1.2.3.4". I'm sure you use to be able to block access to certain sites in the admin tool widget on FF5 but I couldn't find it anywhere. I installed a FF add-on called "blocksite" and told it to block "1.2.3.4". I noticed a significant improvement.
    I actually had this problem on the UK telco O2 as well so it isn't just AT&T that is doing it.

  • How can I modify the text of the automatically created emails of WAS 6.40.

    Hi community,
    I have a question. How can I change the text of then email which ist automatically send by the EP6/WAS6.40 when I create a new user. The email displays the message "Dear Sir or Madam, your user xzy was created with the following password xxx."
    How can I modify this text. Where is it located in the Enterprise Portal / WEBAS 6.40 .
    Thank you.
    Best Regards,
    Olaf Reiss

    Not easily or readily available as of now. It WILL be part of the new features in the NetWeaver 04 release. (*This same question was asked in my EP6 certification class one week ago and this is the answer I got.)
    Found this guide in another post...it should help doing what you need manually...
    http://help.sap.com/saphelp_nw04/helpdata/en/33/d494c86203ea40b7b44ddd471baab1/frameset.htm
    Hope this helps!
    CS

  • ** URGENT** How can I loop this Unnamed procedure?

    I have the following procedure
    The total number of records is 10 million +.
    I've limited the resultset to 80,000. How can I run this procedure in a loop for like 130 times.
    I need to start this tonight and Have run out of time in developing a better way.
    I tried a unix stript
    #!/bin/ksh
    let count = 3;
    while count > 0;
    do
    sqlplus -s userid/password<<END
    @sqluser6
    quit
    END
    let count = count -1;
    done
    but it's not even working: error =
    run_userupdate[2]: count: bad number
    run_userupdate[2]: syntax error at line 5 : `<<' unmatched
    My Code:
    SET SERVEROUTPUT ON
    DECLARE
    CURSOR vt_mlr_cursor IS Select master_key, tn, user2 from vt_mlr Where user2 is not null
                                                 and line_medr is null
                                                 and line_aidr is null
                                                 and rownum < 80001;
    USERFIELD VARCHAR2(100);
    R_count NUMBER := 0;
    Field1 VARCHAR2(20);
    Field2 VARCHAR2(20);
    key VARCHAR2(10);
    phone VARCHAR2(11);
    BEGIN
    FOR vt_mlr_record IN vt_mlr_cursor
    LOOP
    BEGIN
         key := vt_mlr_record.master_key;
         phone     := vt_mlr_record.tn;
         USERFIELD := vt_mlr_record.user2;
         Field1 := SUBSTR(vt_mlr_record.user2,12,4);
         Field2 := SUBSTR(vt_mlr_record.user2,28,4);
              UPDATE vt_mlr
              SET
              line_medr = Field1,
              line_aidr = Field2
              WHERE
              master_key = vt_mlr_record.master_key;
              R_count := R_count + 1;
         EXCEPTION
         when others then
         Insert into temp_reject (REJECT_KEY, REJECT_TN, REJECT_VALUE) VALUES
         (key, phone, 'USER2 ' || USERFIELD );
         R_count := R_count - 1;
    END;
    END LOOP;
    DBMS_OUTPUT.PUT_LINE('Rows Processed: ' || R_count);
         commit;
         EXCEPTION
         when others then
         DBMS_OUTPUT.PUT_LINE('Error code ' || sqlcode || ' Error desc' || SUBSTR(sqlerrm,1,200));
    END;
    Thanks guys

    Is there any reason why you can't just run this:
    UPDATE vt_mlr
    SET    line_medr =   SUBSTR(user2,12,4)
           , line_aidr = SUBSTR(user2,28,4)
    /It's not a big update statement, and of the top of my head shouldn't generate more than 100 MB of undo (my maths is world-famous for its dodginess so YMMV).
    If you've got 10 million row tables then your DBAs ought to have sized the rollback segments accordingly (even better if you're using the 9i UNDO tablespace).
    Large tables are nothing to be scared off. Apart from anything else, you procedure is going to run like a three-legged dog in a vat of cold treacle.
    Cheers, APC

  • Photoshop CS6 just close when doing editing. How can i solve this?

    Whenever i do cropping or anything and then try to save, the photoshop CS6 just close. How can i solve this?

    Process:               Adobe Photoshop CS6 [1903]
    Path:                  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Identifier:            com.adobe.Photoshop
    Version:               13.0.6 (13.0.6.54)
    Code Type:             X86-64 (Native)
    Parent Process:        ??? [1]
    Responsible:           Adobe Photoshop CS6 [1903]
    User ID:               501
    Date/Time:             2015-04-09 17:20:23.521 +0800
    OS Version:            Mac OS X 10.10.3 (14D131)
    Report Version:        11
    Anonymous UUID:        57A8F845-2A7A-E39B-B0FC-1517C7F2311C
    Time Awake Since Boot: 19000 seconds
    Crashed Thread:        0 Dispatch queue: com.apple.main-thread
    Exception Type:        EXC_BAD_ACCESS (SIGSEGV)
    Exception Codes:       KERN_INVALID_ADDRESS at 0x0000000000000000
    VM Regions Near 0:
    -->
    __TEXT 0000000100000000-000000010366a000 [ 54.4M] r-x/rwx SM=COW  /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    Thread 0 Crashed:: Dispatch queue: com.apple.main-thread
    0 com.apple.opengl                         0x00007fff821cc59c CGLDescribeRenderer + 79
    1 com.adobe.Photoshop                 0x0000000100b03089 0x100000000 + 11546761
    2 com.adobe.Photoshop                 0x000000010172e7ae 0x100000000 + 24307630
    3 com.adobe.Photoshop                 0x0000000100630258 0x100000000 + 6488664
    4 com.adobe.Photoshop                 0x0000000100614a4c 0x100000000 + 6376012
    5 com.adobe.Photoshop                 0x000000010102a551 0x100000000 + 16950609
    6   com.adobe.Photoshop                 0x000000010102c66e 0x100000000 + 16959086
    7 com.adobe.Photoshop                 0x0000000100c66edd 0x100000000 + 13004509
    8 com.adobe.Photoshop                 0x000000010093a528 0x100000000 + 9676072
    9 com.adobe.Photoshop                 0x00000001009749b3 0x100000000 + 9914803
    10 com.adobe.Photoshop                0x0000000100085690 0x100000000 + 546448
    11 com.adobe.Photoshop                0x00000001017b4f20 0x100000000 + 24858400
    12 com.apple.CoreFoundation        0x00007fff898bd45c __CFNOTIFICATIONCENTER_IS_CALLING_OUT_TO_AN_OBSERVER__ + 12
    13 com.apple.CoreFoundation        0x00007fff897ad634 _CFXNotificationPost + 3140
    14 com.apple.Foundation                0x00007fff914fd9d1 -[NSNotificationCenter postNotificationName:object:userInfo:] + 66
    15 com.apple.AppKit                       0x00007fff82b72bd9 -[NSWindow becomeKeyWindow] + 1406
    16 com.adobe.Photoshop                0x00000001017b84eb 0x100000000 + 24872171
    17 com.apple.AppKit                       0x00007fff82b71f3e -[NSWindow _changeKeyAndMainLimitedOK:] + 795
    18 com.adobe.Photoshop                0x00000001017b156d 0x100000000 + 24843629
    19 com.adobe.Photoshop                0x00000001017b8ad3 0x100000000 + 24873683
    20 com.adobe.Photoshop                0x000000010009042f 0x100000000 + 590895
    21 com.adobe.Photoshop                0x000000010097521c 0x100000000 + 9916956
    22 com.adobe.Photoshop                0x0000000100975126 0x100000000 + 9916710
    23 com.adobe.Photoshop                0x00000001009391b9 0x100000000 + 9671097
    24 com.adobe.Photoshop                0x00000001006c7344 0x100000000 + 7107396
    25 com.adobe.Photoshop                0x0000000100fc25c0 0x100000000 + 16524736
    26 com.adobe.Photoshop                0x000000010009fb35 0x100000000 + 654133
    27 com.adobe.Photoshop                0x0000000100fc2ba6 0x100000000 + 16526246
    28 com.adobe.Photoshop                0x00000001005ef14d 0x100000000 + 6222157
    29 com.adobe.Photoshop                0x0000000100090ac4 0x100000000 + 592580
    30 com.adobe.Photoshop                0x000000010008ca4a 0x100000000 + 576074
    31 com.adobe.Photoshop                0x0000000100087547 0x100000000 + 554311
    32 com.adobe.Photoshop                0x00000001000873e3 0x100000000 + 553955
    33 com.adobe.Photoshop                0x00000001016ffd94 0x100000000 + 24116628
    34 com.apple.AppKit                       0x00007fff82acac68 -[NSApplication run] + 711
    35 com.adobe.Photoshop                0x0000000101700462 0x100000000 + 24118370
    36 com.adobe.Photoshop                0x000000010170172c 0x100000000 + 24123180
    37 com.adobe.Photoshop                0x0000000100087bdd 0x100000000 + 555997
    38 com.adobe.Photoshop                0x00000001002c9bdc 0x100000000 + 2923484
    39 com.adobe.Photoshop                0x00000001002c9cb9 0x100000000 + 2923705
    40 com.adobe.Photoshop                0x0000000100002444 0x100000000 + 9284
    Thread 1:: Dispatch queue: com.apple.libdispatch-manager
    0 libsystem_kernel.dylib                 0x00007fff82641232 kevent64 + 10
    1 libdispatch.dylib             0x00007fff8ec3ca6a _dispatch_mgr_thread + 52
    Thread 2:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 3:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 4:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 5:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 6:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 7:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2 MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 8:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 MultiProcessor Support              0x0000000114e8e19b 0x114e48000 + 287131
    2   MultiProcessor Support              0x0000000114e8e05c 0x114e48000 + 286812
    3 MultiProcessor Support              0x0000000114eaef24 0x114e48000 + 421668
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 9:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 10:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 11:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4   com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 12:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 13:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 14:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6   com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 15:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3da77 TSWaitOnCondition + 108
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc76 TSWaitOnConditionTimedRelative + 171
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b13d6b MPWaitOnQueue + 192
    4 com.adobe.ACE                             0x00000001053e12c9 0x1053a8000 + 234185
    5 com.adobe.ACE                             0x00000001053e05da 0x1053a8000 + 230874
    6 com.apple.CoreServices.CarbonCore     0x00007fff90b1423c PrivateMPEntryPoint + 58
    7 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    8 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    9   libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 16:
    0 libsystem_kernel.dylib                 0x00007fff8264048a __semwait_signal + 10
    1 com.adobe.PSAutomate               0x000000012ca096eb 0x12c8c6000 + 1324779
    2 com.adobe.PSAutomate               0x000000012c9ef539 0x12c8c6000 + 1217849
    3 com.adobe.PSAutomate               0x000000012ca09a56 0x12c8c6000 + 1325654
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 17:
    0 libsystem_kernel.dylib                 0x00007fff8263b4de mach_msg_trap + 10
    1 libsystem_kernel.dylib                 0x00007fff8263a64f mach_msg + 55
    2 com.apple.CoreFoundation         0x00007fff8980feb4 __CFRunLoopServiceMachPort + 212
    3 com.apple.CoreFoundation         0x00007fff8980f37b __CFRunLoopRun + 1371
    4 com.apple.CoreFoundation         0x00007fff8980ebd8 CFRunLoopRunSpecific + 296
    5 com.apple.AppKit                         0x00007fff82b9d66b _NSEventThread + 137
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 18:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11ac0d APXGetHostAPI + 2516093
    2 com.adobe.ape.engine                 0x000000012dec8ec1 APXGetHostAPI + 83761
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 19:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11ac0d APXGetHostAPI + 2516093
    2 com.adobe.ape.engine                 0x000000012dec8ec1 APXGetHostAPI + 83761
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 20:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11ac0d APXGetHostAPI + 2516093
    2 com.adobe.ape.engine                 0x000000012dec8ec1 APXGetHostAPI + 83761
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 21:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11ac0d APXGetHostAPI + 2516093
    2 com.adobe.ape.engine                 0x000000012dec8ec1 APXGetHostAPI + 83761
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 22:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11abd0 APXGetHostAPI + 2516032
    2 com.adobe.ape.engine                 0x000000012e132ddb APXGetHostAPI + 2614859
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 23:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.ape.engine                 0x000000012e11abd0 APXGetHostAPI + 2516032
    2 com.adobe.ape.engine                 0x000000012e2ad2c3 APXGetHostAPI + 4164403
    3 com.adobe.ape.engine                 0x000000012e11acd1 APXGetHostAPI + 2516289
    4 com.adobe.ape.engine                 0x000000012e11ad4a APXGetHostAPI + 2516410
    5 com.adobe.ape.engine                 0x000000012e11ae79 APXGetHostAPI + 2516713
    6 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    7 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    8 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 24:
    0 libsystem_kernel.dylib                 0x00007fff8264033a __recvfrom + 10
    1 ServiceManager-Launcher.dylib            0x00000001316ba813 Invoke + 42176
    2 ServiceManager-Launcher.dylib            0x00000001316b9be0 Invoke + 39053
    3 ServiceManager-Launcher.dylib            0x00000001316b9c66 Invoke + 39187
    4 ServiceManager-Launcher.dylib            0x00000001316b530f Invoke + 20412
    5   ServiceManager-Launcher.dylib            0x00000001316b5616 Invoke + 21187
    6 ServiceManager-Launcher.dylib            0x00000001316b5cd7 Invoke + 22916
    7 ServiceManager-Launcher.dylib            0x00000001316b5f41 Invoke + 23534
    8 ServiceManager-Launcher.dylib            0x00000001316b861d Invoke + 33482
    9 ServiceManager-Launcher.dylib            0x00000001316b8775 Invoke + 33826
    10 ServiceManager-Launcher.dylib           0x00000001316b8fb2 Invoke + 35935
    11 ServiceManager-Launcher.dylib           0x00000001316b90ad Invoke + 36186
    12 ServiceManager-Launcher.dylib           0x00000001316abd6b Login + 480
    13 ServiceManager-Launcher.dylib           0x00000001316af7ad Login + 15394
    14 ServiceManager-Launcher.dylib           0x00000001316b9412 Invoke + 37055
    15 ServiceManager-Launcher.dylib           0x00000001316bb253 Invoke + 44800
    16 libsystem_pthread.dylib            0x00007fff90d7e268 _pthread_body + 131
    17 libsystem_pthread.dylib            0x00007fff90d7e1e5 _pthread_start + 176
    18 libsystem_pthread.dylib            0x00007fff90d7c41d thread_start + 13
    Thread 25:: cr_scratch
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.adobe.CameraRaw               0x000000013581baab 0x13521c000 + 6290091
    2 com.adobe.CameraRaw               0x00000001357a47ab 0x13521c000 + 5801899
    3 com.adobe.CameraRaw               0x00000001355a29f1 0x13521c000 + 3697137
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 26:
    0 libsystem_kernel.dylib                 0x00007fff82640136 __psynch_cvwait + 10
    1 com.apple.CoreServices.CarbonCore     0x00007fff90b3dc5e TSWaitOnConditionTimedRelative + 147
    2 com.apple.CoreServices.CarbonCore     0x00007fff90b3d839 TSWaitOnSemaphoreCommon + 403
    3 com.apple.CoreServices.CarbonCore     0x00007fff90b02430 AsyncFileThread(void*) + 281
    4 libsystem_pthread.dylib              0x00007fff90d7e268 _pthread_body + 131
    5 libsystem_pthread.dylib              0x00007fff90d7e1e5 _pthread_start + 176
    6 libsystem_pthread.dylib              0x00007fff90d7c41d thread_start + 13
    Thread 27:
    0 libsystem_kernel.dylib                 0x00007fff8264094a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff90d7c40d start_wqthread + 13
    Thread 28:
    0 libsystem_kernel.dylib                 0x00007fff8264094a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff90d7c40d start_wqthread + 13
    Thread 29:
    0 libsystem_kernel.dylib                 0x00007fff8264094a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff90d7c40d start_wqthread + 13
    Thread 30:
    0 libsystem_kernel.dylib                 0x00007fff8264094a __workq_kernreturn + 10
    1 libsystem_pthread.dylib              0x00007fff90d7c40d start_wqthread + 13
    Thread 0 crashed with X86 Thread State (64-bit):
    rax: 0x0000000000000000  rbx: 0x0000000000000000  rcx: 0x00007fff5fbfbcf4  rdx: 0x0000000000000080
    rdi: 0x0000000000000000  rsi: 0x0000000000000000  rbp: 0x00007fff5fbfbcd0  rsp: 0x00007fff5fbfbc10
    r8: 0x0000000000000008   r9: 0x000000011bc00000  r10: 0x00000000000055a0  r11: 0x00007fff821cc54d
    r12: 0x0000000000000080  r13: 0x00007fff742d5070  r14: 0x00007fff5fbfbcf4  r15: 0x0000000000000000
    rip: 0x00007fff821cc59c  rfl: 0x0000000000010246  cr2: 0x0000000000000000
    Logical CPU:     0
    Error Code:      0x00000004
    Trap Number:     14
    Binary Images:
    0x100000000 -        0x103669fe7 +com.adobe.Photoshop (13.0.6 - 13.0.6.54) <9A2B6581-BDCA-3447-8DD5-B1D09072B3EF> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/MacOS/Adobe Photoshop CS6
    0x103d2b000 -        0x103d57ff7 +libtbb.dylib (0) <57655978-A378-BE1E-7905-7D7F951AD6F7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbb.dylib
    0x103d6e000 -        0x103d7cff3 +libtbbmalloc.dylib (0) <CB038B96-2999-5EB1-E26A-7720A7A8F8CD> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/libtbbmalloc.dylib
    0x103d90000 - 0x103d96fff  org.twain.dsm (1.9.5 - 1.9.5) <6D13A0B6-113D-335A-8E7B-366A0CFE1CD6> /System/Library/Frameworks/TWAIN.framework/Versions/A/TWAIN
    0x103d9e000 -        0x103db8ff7 +com.adobe.ahclientframework (1.7.0.56 - 1.7.0.56) <C1C5DE5C-39AB-0871-49A6-FA3449D39B8A> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/ahclient.framework/Versions/A/ahclient
    0x103dc1000 - 0x103dc5fff  com.apple.agl (3.3.0 - AGL-3.3.0) <83B4076C-BD87-3436-B59F-65184128FEC1> /System/Library/Frameworks/AGL.framework/Versions/A/AGL
    0x103dcc000 -        0x103f95fff +com.adobe.owl (AdobeOwl version 5.0.4 - 5.0.4) <0FA698D2-CE7E-3C5A-B3D2-D9859A8612A0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeOwl.framework/Versions/A/AdobeOwl
    0x103fd7000 -        0x10441dff7 +com.adobe.MPS (AdobeMPS 5.8.0.19463 - 5.8.0.19463) <8A4BA3B2-6F6A-3958-ABDE-C3E8F21373B0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeMPS.framework/Versions/A/AdobeMPS
    0x104499000 -        0x1047f2ff7 +com.adobe.AGM (AdobeAGM 4.26.20.20743 - 4.26.20.20743) <27080135-E835-75EF-FF42-15299479FDA1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAGM.framework/Versions/A/AdobeAGM
    0x10485b000 -        0x104bbcfef +com.adobe.CoolType (AdobeCoolType 5.10.33.20743 - 5.10.33.20743) <758DF893-C0F4-5769-53C5-7C80FC9111FB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCoolType.framework/Versions/A/AdobeCoolType
           0x104c09000 -        0x104c31ff7 +com.adobe.BIBUtils (AdobeBIBUtils 1.1.01 - 1.1.01) <BFA061BE-7598-275D-D3F7-5842674E367E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIBUtils.framework/Versions/A/AdobeBIBUtils
           0x104c38000 -        0x104c64fff +com.adobe.AXE8SharedExpat (AdobeAXE8SharedExpat 3.7.101.18636 - 3.7.101.18636) <488DF1F7-A643-5168-706A-498A0322A87E> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXE8SharedExpat.framework/Versions/A/AdobeAXE8SharedExpa t
    0x104c87000 -        0x104dd4ff7 +com.winsoft.wrservices (WRServices 5.0.0 - 5.0.0) <FFA48E0A-A17C-A04F-AE20-6815EB944DEA> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/WRServices.framework/Versions/A/WRServices
    0x104e48000 -        0x104eb7fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <A31825AD-B52F-3D12-BE6F-EB4556B94BA6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_core.framework/Versions/A/aif_core
    0x104ed8000 -        0x104f37ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <A0CF6924-B714-32CF-9F8A-88D62AE0B73F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/data_flow.framework/Versions/A/data_flow
    0x104f9a000 -        0x10502aff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <3280BD6B-EC74-3B5F-A0D8-4359519DBBE6> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_flow.framework/Versions/A/image_flow
    0x10507d000 -        0x105099fff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <DB06257F-9AC5-3916-8844-93EFC03133F0> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/image_runtime.framework/Versions/A/image_runtime
    0x1050af000 -        0x1052ccfff +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <AA64DB39-E64F-3DF2-A56D-846593A6992F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ogl.framework/Versions/A/aif_ogl
    0x1053a8000 -        0x105521fff +com.adobe.ACE (AdobeACE 2.19.18.20743 - 2.19.18.20743) <744F14EE-D2A2-E610-ADD9-960896F05D26> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeACE.framework/Versions/A/AdobeACE
    0x105534000 -        0x105553fff +com.adobe.BIB (AdobeBIB 1.2.02.20743 - 1.2.02.20743) <15E9C88F-1DB1-C4F3-610F-9246F7C4D75D> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeBIB.framework/Versions/A/AdobeBIB
    0x10555a000 -        0x10563efe7 +com.adobe.amtlib (amtlib 6.0.0.75 - 6.0.0.75) <07A3E1E1-55C3-BA5B-A0B0-60250809ED61> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/amtlib.framework/Versions/A/amtlib
    0x10564f000 -        0x105714fff +com.adobe.JP2K (2.0.0 - 2.0.0.18562) <B14B096C-AA23-BA8F-E3AE-8DB102F9D161> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeJP2K.framework/Versions/A/AdobeJP2K
    0x105761000 -        0x105765ff7 +com.adobe.ape.shim (3.3.8.19346 - 3.3.8.19346) <13D5CEF7-6090-CD66-8DA0-190771950F76> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adbeape.framework/Versions/A/adbeape
    0x10576b000 -        0x1057e9fff +com.adobe.FileInfo.framework (Adobe XMP FileInfo 5 . 3 . 0 . 0 -i 3 - 66.145433) <5C63613F-6BDE-1C29-D3FD-9D292F9ADB12> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/FileInfo.framework/Versions/A/FileInfo
    0x1057fa000 -        0x10585aff7 +com.adobe.AdobeXMPCore (Adobe XMP Core 5.3 -c 11 - 66.145661) <B475CD07-1024-560D-5BFE-2A6FCE63925C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeXMP.framework/Versions/A/AdobeXMP
    0x105864000 -        0x105dbcfef +com.nvidia.cg (2.2.0006 - 0) /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/Cg.framework/Cg
    0x106419000 -        0x10645cff7 +com.adobe.headlights.LogSessionFramework (2.1.2.1681) <75D51FFC-5DA8-3DC3-86B7-284CB950481B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/LogSession.framework/Versions/A/LogSession
    0x106491000 -        0x1064b6ffe +adobepdfsettings (1) <56E7F033-6032-2EC2-250E-43F1EBD123B1> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobepdfsettings.framework/Versions/A/adobepdfsettings
    0x1064f2000 -        0x1064f6ff7 +com.adobe.AdobeCrashReporter (6.0 - 6.0.20120720) <A6B1F3BD-5DB0-FEE5-708A-B54E5CA80481> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeCrashReporter.framework/Versions/A/AdobeCrashReporter
    0x1064fc000 -        0x1066acfef +com.adobe.PlugPlug (3.0.0.383 - 3.0.0.383) <908DBB12-D2AC-1844-BD2A-F1C483424917> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/PlugPlug.framework/Versions/A/PlugPlug
    0x106763000 -        0x106783ff7 +com.adobe.AIF (AdobeAIF 3.0.00 - 3.0.00) <51E64547-ED9B-3358-9930-2F4990A5180F> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/aif_ocl.framework/Versions/A/aif_ocl
    0x10679a000 -        0x106857fff +com.adobe.AdobeExtendScript (ExtendScript 4.2.12 - 4.2.12.18602) <0957DFA6-0593-CE4B-8638-00F32113B07B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeExtendScript.framework/Versions/A/AdobeExtendScript
    0x1068a1000 -        0x10694ffef +com.adobe.AdobeScCore (ScCore 4.2.12 - 4.2.12.18602) <9CEE95E5-2FC6-5E58-02A4-138EA6F8D894> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeScCore.framework/Versions/A/AdobeScCore
    0x10698c000 -        0x106a86fe7 +com.adobe.AXEDOMCore (AdobeAXEDOMCore 3.7.101.18636 - 3.7.101.18636) <C7652AF2-56D7-8AF8-A207-0BDEDDFF0BEC> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeAXEDOMCore.framework/Versions/A/AdobeAXEDOMCore
    0x106b2a000 -        0x106d73fe7 +com.adobe.linguistic.LinguisticManager (6.0.0 - 17206) <301AAE8E-BA78-230E-9500-FCCA204B49CB> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdobeLinguistic.framework/Versions/3/AdobeLinguistic
    0x106ef3000 - 0x106ef5ff7 com.apple.textencoding.unicode (2.8 - 2.8) <A2CAC6A6-82CE-3929-94F8-538375EC3DF9> /System/Library/TextEncodings/Unicode Encodings.bundle/Contents/MacOS/Unicode Encodings
    0x107deb000 - 0x107df2ff7  libCGCMS.A.dylib (779.11) <5D33FF8C-AC74-3B7B-A602-4AA470FEAF79> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGCMS.A.dylib
    0x10b0e7000 -        0x10b0e7fef +cl_kernels (???) <0A91FB19-9FFB-4E8C-B28F-FFA314459C3A> cl_kernels
    0x10b0f6000 -        0x10b0f6ff5 +cl_kernels (???) <ACC665D3-D15C-4AC2-9341-DAC2CD394261> cl_kernels
    0x10c8f9000 - 0x10c8faff7 libCyrillicConverter.dylib (64) <91BE01AF-E364-3DF4-9968-05996B748FE0> /System/Library/CoreServices/Encodings/libCyrillicConverter.dylib
    0x10d14a000 - 0x10d14cffb  libCGXType.A.dylib (779.11) <51607E77-F183-3CC2-A78C-238AFBDF6262> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libCGXType.A.dylib
    0x10d153000 - 0x10d162fff libSimplifiedChineseConverter.dylib (64) <468DE6E1-42B9-3751-ACA5-7D16C550FF84> /System/Library/CoreServices/Encodings/libSimplifiedChineseConverter.dylib
    0x10d749000 - 0x10d766fff libJapaneseConverter.dylib (64) <12325659-06A4-37C9-8A9C-DA7A3F8DB8A2> /System/Library/CoreServices/Encodings/libJapaneseConverter.dylib
    0x10d76b000 - 0x10d78dfff libKoreanConverter.dylib (64) <E51FCBAE-3886-32B7-B4F8-51B3CBF683ED> /System/Library/CoreServices/Encodings/libKoreanConverter.dylib
    0x10d791000 - 0x10d7a3fff libTraditionalChineseConverter.dylib (64) <DCA11C00-8F36-39E5-BD2A-B15183931E8B> /System/Library/CoreServices/Encodings/libTraditionalChineseConverter.dylib
    0x10d7af000 - 0x10d7d7fff  libRIP.A.dylib (779.11) <88434DA0-B6B8-304A-9DC0-41D3947E8734> /System/Library/Frameworks/CoreGraphics.framework/Versions/A/Resources/libRIP.A.dylib
    0x114cc4000 -        0x114cd7fff +MeasurementCore (???) <451C40D6-3D0D-32E6-8864-F76671636533> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Measurements/MeasurementCore.plugin/Contents/MacOS/Mea surementCore
    0x114d63000 -        0x114d6aff7 +FastCore (???) <1C7EA3FC-C9E2-33DA-9115-B25F98C45023> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/FastCore.plugin/Contents/MacOS/FastCore
    0x114d73000 -        0x114dccff7 +MMXCore (???) <977F9538-7B1B-3B85-A9F8-A61055A5767B> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MMXCore.plugin/Contents/MacOS/MMXCore
    0x114e48000 -        0x114ecefff +MultiProcessor Support (???) <F23F81FA-823F-3788-940E-8003197E9A42> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/MultiProcessor Support.plugin/Contents/MacOS/MultiProcessor Support
    0x11b394000 - 0x11b440fff ColorSyncDeprecated.dylib (442) <3518239D-60D5-39AF-A68C-E7B12564103C> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ColorSync. framework/Versions/A/Resources/ColorSyncDeprecated.dylib
    0x11b587000 -        0x11b5adff7 +com.adobe.ape (3.3.8.19346 - 3.3.8.19346) <79E11A18-8AF4-2515-59F7-4CBE161BF020> /Library/Application Support/Adobe/*/adbeapecore.framework/adbeapecore
    0x11b5e5000 - 0x11b5e9fff  com.apple.audio.AppleHDAHALPlugIn (272.18 - 272.18) <BCBCD7EE-C5ED-3558-8176-70BFC88925B1> /System/Library/Extensions/AppleHDA.kext/Contents/PlugIns/AppleHDAHALPlugIn.bundle/Conten ts/MacOS/AppleHDAHALPlugIn
    0x11bef9000 - 0x11bf1ffff com.apple.cmio.DAL.VDC-4 (601.0 - 4760) <A86B471A-E141-3422-A1BE-BC2A66E70793> /System/Library/Frameworks/CoreMediaIO.framework/Resources/VDC.plugin/Contents/MacOS/VDC
    0x12c8c6000 -        0x12cb0dff7 +com.adobe.PSAutomate (13.0 - 13.0) <FDBC88C3-28D5-3823-AB35-1FA6C551D770> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Required/Plug-Ins/Extensions/ScriptingSupport.plugin/Contents/MacOS/Scri ptingSupport
    0x12cb90000 -        0x12cc81fff +com.adobe.AdbeScriptUIFlex (ScriptUIFlex 6.2.29 - 6.2.29.18602) <2BD3388F-976E-0B1C-55DB-B97A5AF95724> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/AdbeScriptUIFlex.framework/Versions/A/AdbeScriptUIFlex
    0x12cd05000 -        0x12cd7ffef +com.adobe.adobe_caps (adobe_caps 6.0.29.0 - 6.0.29.0) <C0AD101D-E452-4B4B-5B31-F467133EC20C> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/adobe_caps.framework/adobe_caps
    0x12da7c000 - 0x12daa6fff  GLRendererFloat (11.1.2) <87953360-E0E4-3523-8EC3-2062C26C7FD2> /System/Library/Frameworks/OpenGL.framework/Resources/GLRendererFloat.bundle/GLRendererFl oat
    0x12de80000 -        0x12ee05fd7 +com.adobe.ape.engine (3.3.8.19346 - 3.3.8.19346) <5E188E32-37F7-4E0B-0674-E8D16B60074F> /Library/Application Support/Adobe/*/adbeapecore.framework/Libraries/adbeapeengine.bundle/Contents/MacOS/adbea peengine
    0x131646000 -        0x13168cfff +com.adobe.AAM.AdobeUpdaterNotificationFramework (UpdaterNotifications 6.0.0.24 - 6.0.0.24) <58C40EB9-2F38-2479-E710-344CAB0CEFB7> /Applications/Adobe Photoshop CS6/Adobe Photoshop CS6.app/Contents/Frameworks/updaternotifications.framework/Versions/A/UpdaterNotification s
    0x1316a6000 -        0x1316d1fff +ServiceManager-Launcher.dylib (389) <7AE35754-3413-206D-4B92-579AAA25B4F8> /Library/Application Support/Adobe/*/ServiceManager-Launcher.dylib
    0x1319a5000 - 0x131a8bfef  unorm8_bgra.dylib (2.4.5) <7BFE1DA8-2BE4-3B4F-8A7F-F3D6D4D36ADA> /System/Library/Frameworks/OpenCL.framework/Versions/A/Libraries/ImageFormats/unorm8_bgra .dylib
    0x131dfb000 -        0x131eabfe7 + (???) <3DC0B893-3983-14AD-9701-295239CCFAA5>
    0x1320fe000 -        0x1320feffe +cl_kernels (???) <1DF0E2BB-8C47-4223-8901-C70AA69E2360> cl_kernels
    0x132200000 - 0x1323affff  GLEngine (11.1.2) <68FDFD73-F15C-3460-9984-10F5DEF79907> /System/Library/Frameworks/OpenGL.framework/Resources/GLEngine.bundle/GLEngine
    0x132637000 -        0x132637fef +cl_kernels (???) <0A91FB19-9FFB-4E8C-B28F-FFA314459C3A> cl_kernels
    0x13521c000 -        0x137853fef +com.adobe.CameraRaw (8.8.0 [397] - 8.8.0f397) <409E7907-673A-3E20-BF6C-50438600CC13> /Library/Application Support/Adobe/*/Camera Raw.plugin/Contents/MacOS/Camera Raw
    0x123400000000 - 0x1234004a4fff com.apple.driver.AppleIntelHD4000GraphicsGLDriver (10.6.20 - 10.0.6) <8F227B52-63C2-3E21-A789-DB69644F103F> /System/Library/Extensions/AppleIntelHD4000GraphicsGLDriver.bundle/Contents/MacOS/AppleIn telHD4000GraphicsGLDriver
    0x123440000000 - 0x123440864ff7 com.apple.GeForceGLDriver (10.2.7 - 10.0.2) <0C5B7449-911C-35A0-8BC8-03FA1ADEB670> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/GeForceGLDriver
    0x7fff62c46000 -     0x7fff62c7c837  dyld (353.2.1) <65DCCB06-339C-3E25-9702-600A28291D0E> /usr/lib/dyld
    0x7fff81cef000 - 0x7fff81cf3fff com.apple.IOAccelerator (156.14 - 156.14) <5D593364-14AA-3DDA-96FE-B9CF4FE09143> /System/Library/PrivateFrameworks/IOAccelerator.framework/Versions/A/IOAccelerator
    0x7fff81cf4000 - 0x7fff81cfaff7 com.apple.XPCService (2.0 - 1) <AA4A5393-1F5D-3465-A417-0414B95DC052> /System/Library/PrivateFrameworks/XPCService.framework/Versions/A/XPCService
    0x7fff81cfb000 -     0x7fff81ddffff  libcrypto.0.9.8.dylib (52.20.2) <977DA067-2588-3BF8-A7B2-F08FC6E9088F> /usr/lib/libcrypto.0.9.8.dylib
    0x7fff81de0000 - 0x7fff81de8ffb  libcopyfile.dylib (118.1.2) <0C68D3A6-ACDD-3EF3-991A-CC82C32AB836> /usr/lib/system/libcopyfile.dylib
    0x7fff82081000 - 0x7fff821a5ff7 com.apple.LaunchServices (644.56 - 644.56) <20AABB1C-9319-3E4D-A024-51B0DD5FCD3B> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/LaunchServices.fr amework/Versions/A/LaunchServices
    0x7fff821a6000 - 0x7fff821b4fff com.apple.AddressBook.ContactsFoundation (9.0 - 1579) <34ED9046-0157-399F-9742-2FC2D098E368> /System/Library/PrivateFrameworks/ContactsFoundation.framework/Versions/A/ContactsFoundat ion
    0x7fff821b5000 - 0x7fff821c0fdb  com.apple.AppleFSCompression (68.1.1 - 1.0) <EFA1D6D6-28BA-32AA-9CD4-DDF4898FEEBB> /System/Library/PrivateFrameworks/AppleFSCompression.framework/Versions/A/AppleFSCompress ion
    0x7fff821c1000 - 0x7fff821cfff7  com.apple.opengl (11.1.2 - 11.1.2) <864B35BF-1E76-382B-8D5F-38C7282621E6> /System/Library/Frameworks/OpenGL.framework/Versions/A/OpenGL
    0x7fff821d1000 - 0x7fff82278fff  com.apple.PDFKit (3.1 - 3.1) <717B6DB9-4C81-3326-AFB7-6B003FBF1311> /System/Library/Frameworks/Quartz.framework/Versions/A/Frameworks/PDFKit.framework/Versio ns/A/PDFKit
    0x7fff82279000 - 0x7fff8227dfff com.apple.LoginUICore (3.2 - 3.2) <417954C5-1675-31A8-9631-6B56E9AA3E93> /System/Library/PrivateFrameworks/LoginUIKit.framework/Versions/A/Frameworks/LoginUICore. framework/Versions/A/LoginUICore
    0x7fff8227e000 - 0x7fff82289fff com.apple.AppSandbox (4.0 - 238.20.2) <BEFAB7F2-B189-391B-9B2D-FFF3EE2B77B6> /System/Library/PrivateFrameworks/AppSandbox.framework/Versions/A/AppSandbox
    0x7fff8228a000 -     0x7fff82399ff3  com.apple.desktopservices (1.9.3 - 1.9.3) <FEE11342-5BC4-37A7-8169-DA48BE17B9C9> /System/Library/PrivateFrameworks/DesktopServicesPriv.framework/Versions/A/DesktopService sPriv
    0x7fff823a1000 - 0x7fff8240fffb  com.apple.Heimdal (4.0 - 2.0) <7697A837-98B8-3BDB-A7D2-8ED4C9ABC510> /System/Library/PrivateFrameworks/Heimdal.framework/Versions/A/Heimdal
    0x7fff82410000 - 0x7fff82414fff  libspindump.dylib (182.4) <929670EB-4963-3496-AD24-8B50E388803C> /usr/lib/libspindump.dylib
    0x7fff82415000 - 0x7fff82462fff com.apple.ImageCaptureCore (6.3 - 6.3) <44B6E670-16ED-3C81-9E8D-34543CD71273> /System/Library/Frameworks/ImageCaptureCore.framework/Versions/A/ImageCaptureCore
    0x7fff82463000 - 0x7fff82469ff7 libsystem_networkextension.dylib (167.1.10) <29AB225B-D7FB-30ED-9600-65D44B9A9442> /usr/lib/system/libsystem_networkextension.dylib
    0x7fff82495000 - 0x7fff82499fff com.apple.CommonPanels (1.2.6 - 96) <F9ECC8AF-D9CA-3350-AFB4-5113A9B789A5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/CommonPanels.framework/ Versions/A/CommonPanels
    0x7fff824d3000 - 0x7fff824d3fff com.apple.Accelerate.vecLib (3.10 - vecLib 3.10) <B92888D0-ED3F-3430-8F3A-6E56FD16C5F1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/vecLib
    0x7fff824d4000 - 0x7fff82500fff com.apple.framework.SystemAdministration (1.0 - 1.0) <B427BF0A-36DC-357F-B807-1B1AA2AFB7BA> /System/Library/PrivateFrameworks/SystemAdministration.framework/Versions/A/SystemAdminis tration
    0x7fff8250b000 - 0x7fff8250dfff libsystem_configuration.dylib (699.1.5) <20F3B077-179D-3CB0-A3C1-C8602D53B4DB> /usr/lib/system/libsystem_configuration.dylib
    0x7fff8250e000 - 0x7fff82511fff  com.apple.help (1.3.3 - 46) <CA4541F4-CEF5-355C-8F1F-EA65DC1B400F> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Help.framework/Versions /A/Help
    0x7fff82512000 - 0x7fff82512fff  libOpenScriptingUtil.dylib (162.1) <E0605012-0DDB-3150-8FD0-699376FA3CD0> /usr/lib/libOpenScriptingUtil.dylib
    0x7fff8253f000 - 0x7fff825c0ff7 com.apple.CoreUtils (1.1 - 110.1) <C98E1441-3FCB-3BC6-BB51-5380BD39EA88> /System/Library/PrivateFrameworks/CoreUtils.framework/Versions/A/CoreUtils
    0x7fff825fe000 - 0x7fff82605ff7 libcompiler_rt.dylib (35) <BF8FC133-EE10-3DA6-9B90-92039E28678F> /usr/lib/system/libcompiler_rt.dylib
    0x7fff82606000 - 0x7fff82626fff com.apple.IconServices (47.1 - 47.1) <E83DFE3B-6541-3736-96BB-26DC5D0100F1> /System/Library/PrivateFrameworks/IconServices.framework/Versions/A/IconServices
    0x7fff82627000 - 0x7fff82629ff3 com.apple.SafariServices.framework (10600 - 10600.5.17) <55E7D2A9-802C-36E9-9D38-A2D34107740D> /System/Library/PrivateFrameworks/SafariServices.framework/Versions/A/SafariServices
    0x7fff8262a000 - 0x7fff82647fff libsystem_kernel.dylib (2782.20.48) <EAFD7BD0-0C30-3E7D-9528-F9916BA0167C> /usr/lib/system/libsystem_kernel.dylib
    0x7fff82648000 - 0x7fff82650ff7 com.apple.icloud.FindMyDevice (1.0 - 1) <9CE67F85-2BA8-3093-97BA-07BF5C04A5D6> /System/Library/PrivateFrameworks/FindMyDevice.framework/Versions/A/FindMyDevice
    0x7fff82651000 - 0x7fff8267dfff  libsandbox.1.dylib (358.20.5) <C84D0EA1-CE60-3328-A196-D55874BE83D1> /usr/lib/libsandbox.1.dylib
    0x7fff8267e000 - 0x7fff8268bfff  libxar.1.dylib (255) <7CD69BB5-97BA-3858-8A8B-2F33F129E6E7> /usr/lib/libxar.1.dylib
    0x7fff8268c000 - 0x7fff8268dfff com.apple.TrustEvaluationAgent (2.0 - 25) <2D61A2C3-C83E-3A3F-8EC1-736DBEC250AB> /System/Library/PrivateFrameworks/TrustEvaluationAgent.framework/Versions/A/TrustEvaluati onAgent
    0x7fff8268e000 - 0x7fff826a8fff com.apple.AppleVPAFramework (1.4.3 - 1.4.3) <AE62A92E-EDA7-37AD-8AF0-7912E9381A1F> /System/Library/PrivateFrameworks/AppleVPA.framework/Versions/A/AppleVPA
    0x7fff826bd000 - 0x7fff826beff7 com.apple.print.framework.Print (10.0 - 265) <3BC4FE7F-78A0-3E57-8F4C-520E7EFD36FA> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Print.framework/Version s/A/Print
    0x7fff826bf000 - 0x7fff8293eff7  com.apple.CoreData (111 - 526.3) <5A27E0D8-5E5A-335B-B3F6-2601C7B976FA> /System/Library/Frameworks/CoreData.framework/Versions/A/CoreData
    0x7fff8293f000 - 0x7fff8294bff7 com.apple.OpenDirectory (10.10 - 187) <1E07769D-68DE-3BF2-8E9E-A1E98BF70D1B> /System/Library/Frameworks/OpenDirectory.framework/Versions/A/OpenDirectory
    0x7fff82a44000 - 0x7fff835c5ff7  com.apple.AppKit (6.9 - 1347.57) <B214D528-7D1C-39B2-BE36-821D417A0297> /System/Library/Frameworks/AppKit.framework/Versions/C/AppKit
    0x7fff83620000 - 0x7fff83622fff  com.apple.marco (10.0 - 1000) <87240BDC-79FE-3CBF-A94D-EAB348ED7AA2> /System/Library/PrivateFrameworks/Marco.framework/Versions/A/Marco
    0x7fff83623000 - 0x7fff83a53fff com.apple.vision.FaceCore (3.1.6 - 3.1.6) <C3B823AA-C261-37D3-B4AC-C59CE91C8241> /System/Library/PrivateFrameworks/FaceCore.framework/Versions/A/FaceCore
    0x7fff83a7f000 - 0x7fff83b71ff7  libiconv.2.dylib (42) <2A06D02F-8B76-3864-8D96-64EF5B40BC6C> /usr/lib/libiconv.2.dylib
    0x7fff83b72000 - 0x7fff83b77ff7  libmacho.dylib (862) <126CA2ED-DE91-308F-8881-B9DAEC3C63B6> /usr/lib/system/libmacho.dylib
    0x7fff83b78000 -     0x7fff83be2fff  com.apple.imfoundation (10.0 - 1000) <E201BA25-FFF2-354A-9185-041DC19D9A4D> /System/Library/PrivateFrameworks/IMFoundation.framework/Versions/A/IMFoundation
    0x7fff83be3000 - 0x7fff83be3fff com.apple.ApplicationServices (48 - 48) <5BF7910B-C328-3BF8-BA4F-CE52B574CE01> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/ApplicationServices
    0x7fff83bec000 - 0x7fff83c8afff  com.apple.Metadata (10.7.0 - 917.35) <8CBD1D32-4F4B-3F9A-AC65-76F2B5376FBF> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/Metadata.framewor k/Versions/A/Metadata
    0x7fff83c8b000 - 0x7fff83c97ff7 com.apple.commonutilities (8.0 - 900) <E5E018A7-FB3C-37A2-9769-49AFAC89FDE8> /System/Library/PrivateFrameworks/CommonUtilities.framework/Versions/A/CommonUtilities
    0x7fff83c98000 - 0x7fff83cdeff7 libFontRegistry.dylib (134.1) <CE41D8C2-BEED-345C-BC4F-3775CC06C672> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/ATS.framew ork/Versions/A/Resources/libFontRegistry.dylib
    0x7fff83cdf000 - 0x7fff83f5dffb com.apple.RawCamera.bundle (6.03.1 - 779) <A7846B7D-FC0A-3CA3-BC35-6284E9495D81> /System/Library/CoreServices/RawCamera.bundle/Contents/MacOS/RawCamera
    0x7fff83f74000 - 0x7fff840b6fff  libsqlite3.dylib (168) <7B580EB9-9260-35FE-AE2F-276A2C242BAB> /usr/lib/libsqlite3.dylib
    0x7fff8422c000 - 0x7fff8426dfff  libGLU.dylib (11.1.2) <4C54F0D1-2ADC-38A0-92D1-F479E9B99355> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libGLU.dylib
    0x7fff8426e000 - 0x7fff84279fff libcommonCrypto.dylib (60061) <D381EBC6-69D8-31D3-8084-5A80A32CB748> /usr/lib/system/libcommonCrypto.dylib
    0x7fff8427a000 - 0x7fff8427dff7  libdyld.dylib (353.2.1) <9EACCA38-291D-38CC-811F-7E9D1451E2D3> /usr/lib/system/libdyld.dylib
    0x7fff8427e000 - 0x7fff84463ff7  libicucore.A.dylib (531.48) <3CD34752-B1F9-31D2-865D-B5B0F0BE3111> /usr/lib/libicucore.A.dylib
    0x7fff8447c000 - 0x7fff8447cfff  com.apple.Accelerate (1.10 - Accelerate 1.10) <F1B96A61-7E4B-31BD-A35B-BA7EF1F16EF4> /System/Library/Frameworks/Accelerate.framework/Versions/A/Accelerate
    0x7fff844b5000 - 0x7fff846c2ff3 com.apple.CFNetwork (720.3.13 - 720.3.13) <69E15385-5784-3912-88F6-03B16F1C1A5C> /System/Library/Frameworks/CFNetwork.framework/Versions/A/CFNetwork
    0x7fff846ea000 - 0x7fff84725fff  com.apple.QD (301 - 301) <C4D2AD03-B839-350A-AAF0-B4A08F8BED77> /System/Library/Frameworks/ApplicationServices.framework/Versions/A/Frameworks/QD.framewo rk/Versions/A/QD
    0x7fff84726000 - 0x7fff84728ff7  libutil.dylib (38) <471AD65E-B86E-3C4A-8ABD-B8665A2BCE3F> /usr/lib/libutil.dylib
    0x7fff8476a000 - 0x7fff84883ffb  com.apple.CoreText (352.0 - 454.6) <D45790B0-E1A3-3C7D-8BA2-AB71D2CFA7FB> /System/Library/Frameworks/CoreText.framework/Versions/A/CoreText
    0x7fff84884000 - 0x7fff84888fff libCoreVMClient.dylib (79.1) <201EF6DF-5074-3CB7-A361-398CF957A264> /System/Library/Frameworks/OpenGL.framework/Versions/A/Libraries/libCoreVMClient.dylib
    0x7fff84889000 - 0x7fff848f8fff com.apple.SearchKit (1.4.0 - 1.4.0) <80883BD1-C9BA-3794-A20E-476F94DD89A9> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/SearchKit.framewo rk/Versions/A/SearchKit
    0x7fff848f9000 - 0x7fff848faff3  libSystem.B.dylib (1213) <CCEC13A5-D0D9-31C5-B0B0-1C564B4A20A6> /usr/lib/libSystem.B.dylib
    0x7fff848fb000 - 0x7fff8496fffb com.apple.securityfoundation (6.0 - 55126) <42589E18-D38C-3E25-B638-6E29740C224C> /System/Library/Frameworks/SecurityFoundation.framework/Versions/A/SecurityFoundation
    0x7fff84970000 - 0x7fff8498cff7 libsystem_malloc.dylib (53.1.1) <19BCC257-5717-3502-A71F-95D65AFA861B> /usr/lib/system/libsystem_malloc.dylib
    0x7fff8498d000 -     0x7fff849c6ff3  com.apple.datadetectors (5.0 - 286.13) <F2EC0715-1AD3-39C3-9B2D-D45336C73BFC> /System/Library/PrivateFrameworks/DataDetectors.framework/Versions/A/DataDetectors
    0x7fff84a0a000 - 0x7fff84b47fff com.apple.ImageIO.framework (3.3.0 - 1237) <138A800C-14B7-36C2-AB04-E162602C97E3> /System/Library/Frameworks/ImageIO.framework/Versions/A/ImageIO
    0x7fff84b48000 - 0x7fff84cd6fff  libBLAS.dylib (1128) <497912C1-A98E-3281-BED7-E9C751552F61> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libBLAS.dylib
    0x7fff84daa000 - 0x7fff84fefff7 com.apple.AddressBook.framework (9.0 - 1579) <A31956C5-AA13-35E6-B553-6BDF33F35103> /System/Library/Frameworks/AddressBook.framework/Versions/A/AddressBook
    0x7fff84ff0000 - 0x7fff85027ffb com.apple.LDAPFramework (2.4.28 - 194.5) <CAFB9695-000F-34EA-8DF5-09996929C26A> /System/Library/Frameworks/LDAP.framework/Versions/A/LDAP
    0x7fff85028000 - 0x7fff85435ff7  libLAPACK.dylib (1128) <F9201AE7-B031-36DB-BCF8-971E994EF7C1> /System/Library/Frameworks/Accelerate.framework/Versions/A/Frameworks/vecLib.framework/Ve rsions/A/libLAPACK.dylib
    0x7fff85493000 - 0x7fff85517fff com.apple.PerformanceAnalysis (1.0 - 1) <599AED3E-B689-3C40-8B91-93AD36C97658> /System/Library/PrivateFrameworks/PerformanceAnalysis.framework/Versions/A/PerformanceAna lysis
    0x7fff85518000 - 0x7fff85533ff7  libCRFSuite.dylib (34) <D64842BE-7BD4-3D0C-9842-1D202F7C2A51> /usr/lib/libCRFSuite.dylib
    0x7fff85534000 -     0x7fff855b2fff  com.apple.CoreServices.OSServices (640.4 - 640.4) <20121A5E-7AB5-3624-8CF0-3562F97C8A95> /System/Library/Frameworks/CoreServices.framework/Versions/A/Frameworks/OSServices.framew ork/Versions/A/OSServices
    0x7fff855b3000 -     0x7fff855b7fff  libcache.dylib (69) <45E9A2E7-99C4-36B2-BEE3-0C4E11614AD1> /usr/lib/system/libcache.dylib
    0x7fff855b8000 - 0x7fff855bafff  com.apple.EFILogin (2.0 - 2) <3BA837D8-94F5-3240-9CF7-E40DC2808446> /System/Library/PrivateFrameworks/EFILogin.framework/Versions/A/EFILogin
    0x7fff855ca000 - 0x7fff85653ff7 com.apple.CoreSymbolication (3.1 - 57020.1) <85707039-0C8A-3409-B0B5-153431CC1841> /System/Library/PrivateFrameworks/CoreSymbolication.framework/Versions/A/CoreSymbolicatio n
    0x7fff85808000 - 0x7fff8580dfff libsystem_stats.dylib (163.20.16) <FBC3F80F-A0FB-3BD6-9A7E-800DE45F092E> /usr/lib/system/libsystem_stats.dylib
    0x7fff8580e000 - 0x7fff85815fff  com.apple.NetFS (6.0 - 4.0) <1581D25F-CC07-39B0-90E8-5D4F3CF84EBA> /System/Library/Frameworks/NetFS.framework/Versions/A/NetFS
    0x7fff8584c000 - 0x7fff85851ffb libheimdal-asn1.dylib (398.10.1) <A7B6447A-6680-3625-83C3-993B58D5C43F> /usr/lib/libheimdal-asn1.dylib
    0x7fff85852000 - 0x7fff8585eff7 libGPUSupportMercury.dylib (11.1.2) <55BFDDBD-C196-3D24-A7DA-905A6A722DAC> /System/Library/PrivateFrameworks/GPUSupport.framework/Versions/A/Libraries/libGPUSupport Mercury.dylib
    0x7fff8585f000 - 0x7fff859a6ffb com.apple.WebKitLegacy (10600 - 10600.5.17) <B44AA3ED-CF33-3F14-9A57-06A10C653EF5> /System/Library/Frameworks/WebKit.framework/Versions/A/Frameworks/WebKitLegacy.framework/ Versions/A/WebKitLegacy
    0x7fff859a7000 - 0x7fff859a9fff com.apple.CoreDuetDebugLogging (1.0 - 1) <9A6E5710-EA99-366E-BF40-9A65EC1B46A1> /System/Library/PrivateFrameworks/CoreDuetDebugLogging.framework/Versions/A/CoreDuetDebug Logging
    0x7fff859aa000 - 0x7fff859f9ff7  libstdc++.6.dylib (104.1) <803F6AC8-87DC-3E24-9E80-729B551F6FFF> /usr/lib/libstdc++.6.dylib
    0x7fff85afb000 -     0x7fff85b8ffff  com.apple.ink.framework (10.9 - 213) <8E029630-1530-3734-A446-13353F0E7AC5> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/Ink.framework/Versions/ A/Ink
    0x7fff85b90000 - 0x7fff85b9bff7 com.apple.DirectoryService.Framework (10.10 - 187) <85675744-B77D-37ED-805B-4BD0DD20845D> /System/Library/Frameworks/DirectoryService.framework/Versions/A/DirectoryService
    0x7fff85bb4000 - 0x7fff85be5ff7 com.apple.ProtectedCloudStorage (1.0 - 1) <D0903EA8-D861-3488-BCF5-9D8E7C6D01FA> /System/Library/PrivateFrameworks/ProtectedCloudStorage.framework/Versions/A/ProtectedClo udStorage
    0x7fff85be6000 - 0x7fff85be8ff7 com.apple.securityhi (9.0 - 55006) <5DB5773C-FC07-302C-98FE-4B80D88D481A> /System/Library/Frameworks/Carbon.framework/Versions/A/Frameworks/SecurityHI.framework/Ve rsions/A/SecurityHI
    0x7fff85be9000 - 0x7fff86471ff7  libclh.dylib (4.0.3 - 4.0.3) <6B7DEEBD-1784-3998-ABC2-8623B9E4F3EC> /System/Library/Extensions/GeForceGLDriver.bundle/Contents/MacOS/libclh.dylib
    0x7fff864a5000 - 0x7fff864a9fff  com.apple.TCC (1.0 - 1) <CCA42EE2-3400-3444-9486-BC454E60D944> /System/Library/PrivateFrameworks/TCC.framework/Versions/A/TCC
    0x7fff864cf000 - 0x7fff864d5fff libsystem_trace.dylib (72.20.1) <840F5301-B55A-3078-90B9-FEFFD6CD741A> /usr/lib/system/libsystem_trace.dylib
    0x7fff864d6000 - 0x7fff864daff7  libGIF.dylib (1237) <0990002D-CA11-325D-A432-3A333F2CC088> /System/Library/Frameworks/ImageIO.framework/Ve

  • How can I modify the email who is send when I create a new user in EP6

    Hi community,
    I have a question. How can I change the text of the email which is automatically send by the EP6/WAS6.40 when I create a new user. The email displays the message "Dear Sir or Madam, your user xzy was created with the following password xxx."
    How can I modify this text. Where is it located in the Enterprise Portal / WEBAS 6.40 .
    Thank you.
    Best Regards,
    Olaf Reiss

    Hi,
    Here you can find the required steps on how to change the texts of notification emails:
    http://help.sap.com/saphelp_nw04/helpdata/en/33/d494c86203ea40b7b44ddd471baab1/frameset.htm
    Good luck,
    René

  • My Ipod touch keeps acting as though it is on a dock but headphones are in. How can I fix this?

    My headphones are plugged into my ipod touch but it keeps switching to as if it were on the dock. How can I fix this?

    Soft Reset: Hold sleep and home buttons until Apple logo appears
    ignore the off slider
    If it did not work Try this Method:
    Go to Settings > General > Reset > Reset All Settings (NO DATA WILL BE DELETED)
    Reconfirm it again when the notification pops up and wait for the phone to reboot itself

  • I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    I just bought a iTunes card and its not accepting it.  It already sent it to the support team and they said they were going to get back to my within 24 hours and i am trying to buy a program in the app store for work.  How can I expedite this process?

    Has it been 24 hours?
    I take it this was a gift card.  iTunes Store:  Invalid, Inactive, or Illegible codes http://support.apple.com/kb/TS1292 - gift cards
    I don't know if this provides an alternative means: https://expresslane.apple.com ; select 'iTunes' in the first column; 'iTunes Store' in the second column
    If you are really desperate you could buy the app yourself, then request reimbursement.

  • My ipod nano was synced by itunes and removed all of my music and game files. I am in the process of adding my music back one cd at a time, but there is no history of tetris that I paid for from the itunes store. How can I get this game back for my ipod?

    My ipod nano was synced by itunes and removed all of my music and game files, and replaced my music with my kids music that they have put into the current itunes library. My music is nowhere to be found on my computer, so now  I am in the long, forever process of adding my music back one cd at a time, but there is no history of tetris that I paid for from the itunes store. How can I get this game back for my ipod?

    Contact iTunes support and explain your situation to them.  They may let you redownload it at no cost.
    http://www.apple.com/support/itunes/contact.html
    If they don't, I'm afraid you'll have to purchase it again.  Sorry.
    B-rock

Maybe you are looking for

  • Frame outline showing with overlaid graphic item

    I have a logo that I overlaid on an image box. The logo was previously extracted from a white background using pixilmator. The ghost frame shows up when published. In other words, a thin line frame around the extracted logo. It's a png image. Driving

  • Can I use JavaMail without Mailing Server??

    Dear All, My name is Jonathan Wong, a final year student. I am going to develop an internet application for my final year project that contains a part to sent e-mails by using JavaMail. Can I use JavaMail without setting up any Mail Server?? If no, c

  • How to enable Google search tools in Blackberry Browser?

    When you are using Google there is usually a Tools option to top right. It allows me to limit search to a country for example. But in the browser on my passport I dont see this option? Any way to enable i? Solved! Go to Solution.

  • Ical newbie sync question

    I have a macbook 2 GHz intel core 2 duo, with 2gb of ram, running mac os x 10.7.1. I'm a long-time mac user, but total ical newbie....in that I've never really used this feature much in the past. What I'd **like to be able to do is use ical on my lap

  • Flash crashing browsers (cont)

    Hi, @AnotherAdmin - you had success by removing all services at start up. I did see that but was curious if, as you added services back, you were able to determine the offending service. It kind of looks to me like there is more than one cause. To re