answersLogoWhite

0


Best Answer

5 billion 46% ltv range +2pts in fees email me if you have buyers m1marlow@gmail.com DIRECT SOURCE FOR NATIONWIDE CUSTOM TAILORED REO PACKAGES We are not wasting your time by shopping your LOI with the hopes of finding a source/Tape. You can customize your own REO package and specify property type, location, condition and valuation of the properties, even the discount that you are looking for (of course, you need to be realistic in this). We have the best source in the industry by far! We are Direct to the compiler... Whether you need a 10M custom package tailored to your specifications or you need up to a 250B custom package tailored to your specifications we can have you the tape with in 24 to 48 hours, we are filling orders NOW for the end of the year. We can close your deals as fast as you allow us to. Orders are custom filled directly by the banks and not by second hand, marked up portfolios in circulation. California:

We can go from 46 cents to 50 cents on the dollar

*Depending on volume

*Depending on condition

Min 10M

*Can provide tape 48-72 hours*

Nationwide:

Are max is 45 cents

*Depending on volume

*Depending on condition

Min 10B

Max 250B

*Can provided tape same day*

Serious inquires only. Please be prepared to provide the following information:

-Contact Information

-Desired Location

-Realistic Discount Percentile

-Dollar Amount

-Letter of Intent

-Proof of Funds

* Signed NCND Agreement between all parties.

For more information, please reply to this posting with your contact information and one of our Partners will get back with you. Thank you.

If you are not a buyer but can bring any in, contact me.

NationwideREOprovider@gmail.com



User Avatar

Wiki User

16y ago
This answer is:
User Avatar

Add your answer:

Earn +20 pts
Q: What does 5B 46 2 mean on a REO package?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Continue Learning about Engineering

How do you convert 4b to 5b code in encoding techniques?

You will need to use this table to obtain the 5 Bit symbols.4-Bit 5-Bit Code0000 111100001 010010010 101000011 101010100 010100101 010110110 011100111 011111000 100101001 100111010 101101011 101111100 110101101 110111110 111001111 11101


What is altseq in dfsort?

ALTSEQ has two general uses: (1) change the normal sort EBCIDIC srt sequence to something else. Thus if you want (the manual's example) to change the sequence so that the symbol for dollar sign ($) sorts after upper case Z, you would code code ALTSEQ CODE=(5BEA). This literally means "place '5B' in front of 'EA'. The second useage is to translate a hex code for another. For example if I wanted to translate hex '00' to spaces ( hex '40') I would code ALTSEQ CODE=(0040) and use the TRAN=ALTSEQ in the OUREC statement. Check out Z/OS DFSORT Application Programming Guide p.90 and thereabouts.


Shell script to add two numbers?

echo "enter the value of a"read aecho "enter the value of b"read bc=`expr $a + $b`echo "the sum of a and b is $c"Or, alternatively, one could also...#!/bin/shA=5B=10C=`echo "$A + $B"|bc -l`echo "$A + $B = $C"The above examples illustrate the use of back ticks to fork a child process in shell, however the first example uses the 'expr' command to perform the arithmetic while the second example uses the 'bc' command to perform the calculation. As is nearly always the case in Unix or Linux, there are multiple methods of arriving at the same correct solution.While the wonderful and all powerful Perl language is perhaps, technically, not a shell, it is theoretically possible to accomplish this goal in Perl as well. Let me see now, to make this example as educational as possible, I'll use a couple of subscripts of the array @array to store our values and an off-the-shelf printf function to display the results of our calculations...perl -e '@array = (5, 10); printf("%s + %s = %s\n", $array[1], $array[0], ($array[0]+$array[1]));'As the purpose of this site is to teach, I briefly entertained and then discarded a notion to shoot for maximum obfuscation. Larry, Randy and Nathan will be proud of me I hope. :)Naturally, there are numerous other ways to accomplish this goal in Linux.


How do you Convert the hexadecimal number A5 to a decimal number?

D: 0-15 X: 0-F Dec Hex 0 0 1 1 2 2 3 3 4 4 5 5 6 6 7 7 8 8 9 9 10 A 11 B 12 C 13 D 14 E 15 F D:16-31 X: 10-1F Dec Hex 16 10 17 11 18 12 19 13 20 14 21 15 22 16 23 17 24 18 25 19 26 1A 27 1B 28 1C 29 1D 30 1E 31 1F D: 32-47 X: 20-2F Dec Hex 32 20 33 21 34 22 35 23 36 24 37 25 38 26 39 27 40 28 41 29 42 2A 43 2B 44 2C 45 2D 46 2E 47 2F D: 48-63 X: 30-3F DecHex 48 30 49 31 50 32 51 33 52 34 53 35 54 36 55 37 56 38 57 39 58 3A 59 3B 60 3C 61 3D 62 3E 63 3F D: 64-79 X:40-4F Dec Hex 64 40 65 41 66 42 67 43 68 44 69 45 70 46 71 47 72 48 73 49 74 4A 75 4B 76 4C 77 4D 78 4E 79 4F D:80-95 X: 50-5F Dec Hex 80 50 81 51 82 52 83 53 84 54 85 55 86 56 87 57 88 58 89 59 90 5A 91 5B 92 5C 93 5D 94 5E 95 5F D: 96-111 X: 60-6F Dec Hex 96 60 97 61 98 62 99 63 100 64 101 65 102 66 103 67 104 68 105 69 106 6A 107 6B 108 6C 109 6D 110 6E 111 6F D: 112-127 X:70-7F Dec Hex 112 70 113 71 114 72 115 73 116 74 117 75 118 76 119 77 120 78 121 79 122 7A 123 7B 124 7C 125 7D 126 7E 127 7F D: 128-143 X: 80-8F Dec Hex 128 80 129 81 130 82 131 83 132 84 133 85 134 86 135 87 136 88 137 89 138 8A 139 8B 140 8C 141 8D 142 8E 143 8F D: 144-159 X: 90-9F Dec Hex 144 90 145 91 146 92 147 93 148 94 149 95 150 96 151 97 152 98 153 99 154 9A 155 9B 156 9C 157 9D 158 9E 159 9F D: 160-175 X: A0-AF DecHex 160 A0 161 A1 162 A2 163 A3 164 A4 165 A5 166 A6 167 A7 168 A8 169 A9 170 AA 171 AB 172 AC 173 AD 174 AE 175 AF D:176-191 X: B0-BF Dec Hex 176 B0 177 B1 178 B2 179 B3 180 B4 181 B5 182 B6 183 B7 184 B8 185 B9 186 BA 187 BB 188 BC 189 BD 190 BE 191 BF D: 192-207 X: C0-CF Dec Hex 192 C0 193 C1 194 C2 195 C3 196 C4 197 C5 198 C6 199 C7 200 C8 201 C9 202 CA 203 CB 204 CC 205 CD 206 CE 207 CF D: 208-223 X: D0-DF Dec Hex 208 D0 209 D1 210 D2 211 D3 212 D4 213 D5 214 D6 215 D7 216 D8 217 D9 218 DA 219 DB 220 DC 221 DD 222 DE 223 DF D: 224-239 X:E0-EF Dec Hex 224 E0 225 E1 226 E2 227 E3 228 E4 229 E5 230 E6 231 E7 232 E8 233 E9 234 EA 235 EB 236 EC 237 ED 238 EE 239 EF D: 240-255 X: F0-FF Dec Hex 240 F0 241 F1 242 F2 243 F3 244 F4 245 F5 246 F6 247 F7 248 F8 249 F9 250 FA 251 FB 252 FC 253 FD 254 FE 255 FF


How much power is dissipated in the driver which drives a capacitor when its driven with a less than 50 percent duty cycle?

The simplified equivalent circuit of the setup would be a resistor R and a capacitor C in series. Where R is the output resistance of the driver circuit and C is the capacitor driven. We can assume the power is dissipated in the equivalent output resistance R of the driver circuit.___o---|___|---+-------oR C+--------->|Ur(t)The average power Pavg can be calculated from the effective value of the voltage on the resistor Ur,eff by the known simple formula for power:Pavg = Ur,eff * Ir,eff = Ur,eff2 / R (1)The effective value of the voltage on the resistor can be calculated by following formula.________________________/ TUr,eff = \/ (1/T) * integral ( ur(t)2 * dt ) (2)0In case of the above equivalent circuit and when assuming a voltage symmetrical square wave form drive signal ur(t) can be defined as_ __t__ T1 _ __t__ Tur(t) = ( 2 Umax * e R*C ) + ( -2 Umax * e R*C ) (3)0 T1where Umax is the amplitude of the square wave, thus 2 * Umax is the peak to peak amplitude of the symmetrical square wave, and T1 is time of the polarity switching in the square wave within the period.In praxis the positive and negative parts of the driving wave are provided through different branches of the driver circuit. Thus each half wave is dissipated on a different resistor. In this case the equation (3) can be split up into two parts_ __t__ T1 Tur1(t) = ( 2 Umax * e R1*C ) + ( 0 ) (3a)0 T1T1 _ __t___ Tur2(t) = ( 0 ) + ( -2 Umax * e R2*C ) (3b)0 T1For the positive side the integral of Ur1,eff in equation (2) solves to_____________________________/ _ __2_T1__Ur1,eff = 2 Umax \/ (1/T) * (R1*C/2) * ( 1 - e R1*C ) (4a)and from (1) follows the average dissipated power on R1 (positive side of the wave)2 _ __2_T1__Pr1,avg = 2 Umax (C/T) * ( 1 - e R1*C ) (5a)Analogous to (5a) the dissipated power on R2 (negative side of the wave) is2 _ __2_(T-T1)__Pr2,avg = 2 Umax (C/T) * ( 1 - e R1*C ) (5b)The total power dissipation is the sum of the two half wavesPagv,total = Pr1,avg + Pr2,avg (6)This is also valid if R1 and R2 are the same resistor R as assumed at the beginning.