id
stringlengths
1
5
texts
sequence
bboxes_block
sequence
bboxes_line
sequence
categories
sequence
page_hash
stringlengths
64
64
original_filename
stringlengths
7
118
page_no
int32
0
6.23k
num_pages
int32
1
6.23k
original_width
int32
324
2.59k
original_height
int32
324
1.68k
coco_width
int32
1.03k
1.03k
coco_height
int32
1.03k
1.03k
collection
stringclasses
27 values
doc_category
stringclasses
6 values
3300
[ "The Python Language Reference, Release 3.9.5", "Notes on using", "__slots__", "•", "When inheriting from a class without", "__slots__", ", the", "__dict__", "and", "__weakref__", "attribute of the instances will", "always be accessible.", "•", "Without a", "__dict__", "variable, instances cannot be assigned new variables not listed in the", "__slots__", "definition.", "Attempts to assign to an unlisted variable name raises", "AttributeError", ". If dynamic assignment of new", "variables is desired, then add$_{'__dict__'}$", "to the sequence of strings in the", "__slots__", "declaration.", "•", "Without a", "__weakref__", "variable for each instance, classes defining", "__slots__", "do not support weak references", "to its instances. If weak reference support is needed, then add$_{'__weakref__'}$", "to the sequence of strings", "in the", "__slots__", "declaration.", "•", "__slots__", "are implemented at the class level by creating descriptors (", "Implementing Descriptors", ") for each variable", "name. As a result, class attributes cannot be used to set default values for instance variables defined by", "__slots__", ";", "otherwise, the class attribute would overwrite the descriptor assignment.", "•", "The action of a", "__slots__", "declaration is not limited to the class where it is defined.", "__slots__", "declared in parents", "are available in child classes. However, child subclasses will get a", "__dict__", "and", "__weakref__", "unless they also", "define", "__slots__", "(which should only contain names of any", "additional", "slots).", "•", "If a class defines a slot also defined in a base class, the instance variable defined by the base class slot is", "inaccessible (except by retrieving its descriptor directly from the base class). This renders the meaning of the", "program undefined. In the future, a check may be added to prevent this.", "•", "Nonempty", "__slots__", "does not work for classes derived from “variable-length” built-in types such as", "$_{int}$,", "$_{bytes}$and$_{tuple}$", ".", "•", "Any non-string iterable may be assigned to", "__slots__", ". Mappings may also be used; however, in the future,", "special meaning may be assigned to the values corresponding to each key.", "•", "__class__", "assignment works only if both classes have the same", "__slots__", ".", "•", "Multiple inheritance with multiple slotted parent classes can be used, but only one parent is allowed to have", "attributes created by slots (the other bases must have empty slot layouts) - violations raise$_{TypeError}$.", "•", "If an iterator is used for", "__slots__", "then a descriptor is created for each of the iterator’s values. However, the", "__slots__", "attribute will be an empty iterator.", "3.3.3", "Customizing class creation", "Whenever a class inherits from another class,", "__init_subclass__", "is called on that class. This way, it is possible to write", "classes which change the behavior of subclasses. This is closely related to class decorators, but where class decorators", "only affect the specific class they’re applied to,$_{__init_subclass__}$", "solely applies to future subclasses of the", "class defining the method.", "This method is called whenever the containing class is subclassed.", "cls", "is then the new subclass. If defined as a", "normal instance method, this method is implicitly converted to a class method.", "Keyword arguments which are given to a new class are passed to the parent’s class$_{__init_subclass__}$", ".", "For compatibility with other classes using$_{__init_subclass__}$", ", one should take out the needed keyword", "arguments and pass the others over to the base class, as in:", "classmethod", "object.", "__init_subclass__", "(", "cls$_{)}$", "classPhilosopher", ":", "def", "__init_subclass__", "(cls,/, default_name,", "**kwargs):", "super()", ".__init_subclass__(", "**kwargs)", "cls.default_name=default_name", "classAustralianPhilosopher", "(Philosopher, default_name", "=\"Bruce\"):", "pass", "The default implementation$_{object.__init_subclass__}$", "does nothing, but raises an error if it is called", "with any arguments.", "3.3.", "Special method names", "33" ]
[ [ 512, 43, 388, 12 ], [ 123, 90, 208, 12 ], [ 123, 90, 208, 12 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 124, 749, 26 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 160, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 211, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 262, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 313, 749, 41 ], [ 151, 364, 749, 41 ], [ 151, 364, 749, 41 ], [ 151, 364, 749, 41 ], [ 151, 364, 749, 41 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 415, 749, 26 ], [ 151, 451, 749, 26 ], [ 151, 451, 749, 26 ], [ 151, 451, 749, 26 ], [ 151, 451, 749, 26 ], [ 151, 451, 749, 26 ], [ 151, 487, 507, 12 ], [ 151, 487, 507, 12 ], [ 151, 487, 507, 12 ], [ 151, 487, 507, 12 ], [ 151, 487, 507, 12 ], [ 151, 509, 749, 26 ], [ 151, 509, 749, 26 ], [ 151, 509, 749, 26 ], [ 151, 546, 749, 26 ], [ 151, 546, 749, 26 ], [ 151, 546, 749, 26 ], [ 151, 546, 749, 26 ], [ 151, 546, 749, 26 ], [ 151, 546, 749, 26 ], [ 123, 600, 323, 14 ], [ 123, 600, 323, 14 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 123, 632, 777, 55 ], [ 166, 712, 734, 26 ], [ 166, 712, 734, 26 ], [ 166, 712, 734, 26 ], [ 166, 712, 734, 26 ], [ 166, 749, 766, 41 ], [ 166, 749, 766, 41 ], [ 166, 749, 766, 41 ], [ 166, 749, 766, 41 ], [ 166, 749, 766, 41 ], [ 123, 698, 417, 12 ], [ 123, 698, 417, 12 ], [ 123, 698, 417, 12 ], [ 123, 698, 417, 12 ], [ 123, 698, 417, 12 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 804, 599, 89 ], [ 166, 912, 734, 26 ], [ 166, 912, 734, 26 ], [ 166, 912, 734, 26 ], [ 123, 964, 227, 12 ], [ 123, 964, 227, 12 ], [ 881, 964, 19, 12 ] ]
[ [ 512, 43, 388, 12 ], [ 123, 90, 125, 12 ], [ 253, 90, 78, 12 ], [ 151, 124, 7, 12 ], [ 165, 124, 252, 12 ], [ 422, 124, 62, 12 ], [ 485, 124, 29, 12 ], [ 519, 124, 58, 12 ], [ 582, 124, 24, 12 ], [ 611, 124, 88, 12 ], [ 704, 124, 196, 12 ], [ 166, 138, 139, 12 ], [ 151, 160, 7, 12 ], [ 166, 160, 67, 12 ], [ 239, 160, 58, 12 ], [ 301, 160, 459, 12 ], [ 766, 160, 62, 12 ], [ 833, 160, 67, 12 ], [ 166, 174, 366, 12 ], [ 538, 176, 145, 10 ], [ 682, 174, 218, 12 ], [ 166, 189, 340, 12 ], [ 471, 189, 213, 12 ], [ 689, 189, 62, 12 ], [ 756, 189, 78, 12 ], [ 151, 211, 7, 12 ], [ 166, 211, 67, 12 ], [ 239, 211, 88, 12 ], [ 332, 211, 285, 12 ], [ 622, 211, 62, 12 ], [ 690, 211, 210, 12 ], [ 166, 225, 599, 12 ], [ 728, 225, 172, 12 ], [ 166, 240, 38, 12 ], [ 209, 240, 62, 12 ], [ 276, 240, 78, 12 ], [ 151, 262, 6, 12 ], [ 166, 262, 62, 12 ], [ 232, 262, 382, 12 ], [ 615, 262, 166, 12 ], [ 782, 262, 118, 12 ], [ 166, 276, 664, 12 ], [ 834, 276, 62, 12 ], [ 896, 276, 4, 12 ], [ 166, 291, 484, 12 ], [ 151, 313, 6, 12 ], [ 165, 313, 100, 12 ], [ 269, 313, 62, 12 ], [ 335, 313, 368, 12 ], [ 709, 313, 62, 12 ], [ 775, 313, 125, 12 ], [ 166, 327, 440, 12 ], [ 611, 327, 58, 12 ], [ 674, 327, 24, 12 ], [ 703, 327, 88, 12 ], [ 796, 327, 104, 12 ], [ 166, 342, 40, 12 ], [ 211, 342, 62, 12 ], [ 278, 342, 274, 12 ], [ 556, 342, 67, 12 ], [ 629, 342, 39, 12 ], [ 151, 364, 6, 12 ], [ 164, 364, 736, 12 ], [ 166, 378, 734, 12 ], [ 166, 393, 482, 12 ], [ 151, 415, 9, 12 ], [ 169, 415, 68, 12 ], [ 244, 415, 62, 12 ], [ 313, 415, 546, 12 ], [ 865, 415, 35, 12 ], [ 166, 429, 146, 12 ], [ 302, 429, 4, 12 ], [ 151, 451, 7, 12 ], [ 165, 451, 296, 12 ], [ 467, 451, 62, 12 ], [ 530, 451, 370, 12 ], [ 166, 466, 494, 12 ], [ 151, 487, 6, 12 ], [ 166, 487, 65, 12 ], [ 237, 487, 350, 12 ], [ 592, 487, 62, 12 ], [ 654, 487, 4, 12 ], [ 151, 509, 6, 12 ], [ 164, 509, 736, 12 ], [ 166, 524, 700, 12 ], [ 151, 546, 6, 12 ], [ 164, 546, 164, 12 ], [ 333, 546, 62, 12 ], [ 401, 546, 499, 12 ], [ 166, 560, 62, 12 ], [ 233, 560, 230, 12 ], [ 123, 600, 59, 14 ], [ 193, 600, 253, 14 ], [ 123, 632, 298, 12 ], [ 426, 632, 117, 12 ], [ 548, 632, 352, 12 ], [ 123, 647, 777, 12 ], [ 123, 661, 534, 12 ], [ 627, 661, 273, 12 ], [ 123, 676, 174, 12 ], [ 166, 712, 442, 12 ], [ 614, 712, 17, 12 ], [ 636, 712, 264, 12 ], [ 166, 727, 527, 12 ], [ 166, 749, 766, 12 ], [ 896, 749, 4, 12 ], [ 166, 763, 494, 12 ], [ 624, 763, 276, 12 ], [ 166, 778, 391, 12 ], [ 123, 699, 120, 10 ], [ 247, 699, 86, 10 ], [ 319, 699, 211, 10 ], [ 494, 699, 19, 10 ], [ 505, 698, 36, 12 ], [ 166, 804, 148, 9 ], [ 324, 804, 17, 9 ], [ 203, 818, 29, 9 ], [ 240, 818, 190, 9 ], [ 398, 818, 239, 9 ], [ 611, 818, 113, 9 ], [ 240, 831, 80, 9 ], [ 305, 831, 216, 9 ], [ 481, 831, 95, 9 ], [ 240, 844, 306, 9 ], [ 166, 871, 246, 9 ], [ 416, 871, 267, 9 ], [ 657, 871, 108, 9 ], [ 203, 884, 40, 9 ], [ 166, 912, 485, 12 ], [ 604, 912, 296, 12 ], [ 166, 927, 135, 12 ], [ 123, 964, 44, 12 ], [ 176, 964, 174, 12 ], [ 881, 964, 19, 12 ] ]
[ 5, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 4 ]
261171b1baf4e2cc6c81d0256bd5a82ec48a32935b97c0eacefeee55cd408282
python_reference.pdf
38
170
595
841
1,025
1,025
manuals
manuals
3301
[ "13", "cessible values of energy in MCE and temperature in CE.", "The microcanonical and canonical ensembles are equiva-", "lent (like in the Newtonian case).", "In conclusion, the system displays second order phase", "transition in CE and MCE. This is similar to the HMF", "model [32–34].", "In Fig. 18 we plot the series of equilibria in", "d", "= 2.", "Let us first describe the canonical ensemble (CE). The", "control parameter is the inverse temperature", "η", ". The ho-", "mogeneous phase exists for any", "η", ". It is stable for", "η < η", "∗", "c", "and unstable for", "η > η", "∗", "c", "(see Sec. V). The first branch", "n", "= 1 of inhomogeneous states exists for", "η > η$_{c}$", "= 4 and", "it connects the homogeneous branch at", "η", "∗", "$_{c}$. For", "η < η", "∗", "$_{c}$,", "it has a lower free energy", "J", "than the homogeneous phase", "(see Fig.", "10)", "and it is unstable.", "For", "η > η", "∗", "$_{c}$, it has a", "higher free energy", "J", "than the homogeneous phase (see", "Fig. 10). However, it is expected to be unstable or, pos-", "sibly, metastable (to settle this issue we have to study", "the sign of the second order variations of free energy as", "explained above).", "Secondary inhomogeneous branches", "appear for smaller values of the temperature but they", "have smaller values of the free energy (see Fig. 10) and", "they are unstable. The homogeneous branch is expected", "to be fully stable for", "η < η$_{c}$", "= 4 and metastable for", "η$_{c}$", "= 4", "< η < η", "∗", "c", "(see Fig.", "19).", "These conclusions", "are motivated by two arguments: (i) in the Newtonian", "model in", "d", "= 2, we know that there exists a fully sta-", "ble equilibrium state for", "η < η$_{c}$", "= 4 and no equilibrium", "state for", "η > η$_{c}$", "= 4.", "In that case, the system under-", "goes an", "isothermal collapse", "[19, 29].", "For", "η > η$_{c}$", "= 4,", "there is no global maximum of free energy", "J", "because we", "can make it diverge by creating a Dirac peak containing", "all the particles. In the modified Newtonian model, the", "same argument applies since it is independent of bound-", "ary conditions.", "Since we know that the homogeneous", "branch is stable for", "η < η", "∗", "$_{c}$, we conclude that it must be", "metastable in the range", "η$_{c}$", "= 4", "< η < η", "∗", "$_{c}$. There is there-", "fore a zeroth order phase transition at", "η$_{c}$", "= 4 marked by", "the discontinuity of the free energy. (ii) In the chemo-", "tactic literature, it has been rigorously established that", "the Keller-Segel model in", "d", "= 2 does not blow up for", "η < η$_{c}$", "= 4 while it can blow up for", "η > η$_{c}$", "= 4 [8]. This", "is consistent with our stability results.", "2.", "The dimension", "d", "= 2", "-0.2", "-0.1", "0", "0.1", "0.2", "0", "20", "40", "60", "n=3", "n=2", "n=1", "→", "→", "d=2", "-0.4", "-0.3", "-0.2", "-0.1", "0", "0.1", "2", "4", "6", "8", "10", "12", "U", "S", "U", "M", "d=2", "$_{c}$=4", "U or M", "*", "c", "FIG. 18: Series of equilibria in", "d", "= 2.", "The first inhomoge-", "neous branch", "n", "= 1 tends to a plateau", "η", "c", "= 4 for large central", "densities 1", "/λ", "→", "$^{+}$∞ due to the formation of a Dirac peak.", "This is similar to the plateau appearing in the caloric curve", "of the classical self-gravitating gas [29].", "FIG. 19: Caloric curve in the canonical ensemble in", "d", "= 2.", "The homogeneous branch is fully stable for", "η", "<", "η", "c", "= 4,", "metastable for", "η", "c", "< η < η", "∗", "c", "and unstable for", "η > η", "∗", "$_{c}$. The inho-", "mogeneous branch is always unstable (or, possibly, metastable", "for", "η > η", "∗", "$_{c}$). For sufficiently low temperatures, the system can", "experience an isothermal collapse.", "ity of the temperature (see Fig. 20). The energy of tran-", "sition has been determined by comparing the entropy of", "the homogeneous and inhomogeneous phases and looking", "at which point the curves", "S", "(", "E", ") intersect (see Fig. 14).", "Equivalently, it can be obtained by performing a vertical", "Maxwell construction [31].", "The homogeneous phase is", "fully stable for Λ", "<", "Λ$_{t}$, metastable for Λ$_{t}$", "<", "Λ", "<", "Λ", "∗", "c", "and", "unstable for Λ", ">", "Λ", "∗", "$_{c}$. The lower part of the first inhomo-", "geneous branch is fully stable for Λ", ">", "Λ$_{t}$ and metastable", "for Λ$_{∗}$", "<", "Λ", "<", "Λ$_{t}$. The upper part of the first inhomoge-", "neous branch is unstable for Λ$_{∗}$", "<", "Λ", "<", "Λ", "∗", "$_{c}$. For Λ", ">", "Λ", "∗", "$_{c}$, it", "is unstable or, possibly, metastable. Secondary inhomo-", "geneous branches appear for smaller values of the energy", "but they have smaller values of the entropy (see Fig. 13)", "and they are unstable. The stable states of the inhomo-", "geneous branch have 1", "/λ >", "1", "indicating that the density", "Let us now describe the microcanonical ensemble", "(MCE). The control parameter is the energy Λ.", "The", "homogeneous phase exists for all values of Λ", "<", "0.", "It is", "stable for Λ", "<", "Λ", "∗", "c", "and unstable for Λ", ">", "Λ", "∗", "c", "(see Sec.", "V). The first branch", "n", "= 1 of inhomogeneous states ex-", "ists for Λ", ">", "Λ$_{∗}$ and it connects the homogeneous branch", "at Λ", "∗", "$_{c}$. We see that the inhomogeneous branch", "β", "(", "E", ") is", "multi-valued. Considering the value of the entropy in the", "different phases (see Figs. 13 and 14), the caloric curve", "is expected to display a microcanonical first order phase", "transition at Λ = Λ$_{t}$", "≃ −", "0", ".", "146 marked by the discontinu-" ]
[ [ 924, 37, 16, 12 ], [ 90, 70, 410, 42 ], [ 90, 70, 410, 42 ], [ 90, 70, 410, 42 ], [ 90, 115, 410, 42 ], [ 90, 115, 410, 42 ], [ 90, 115, 410, 42 ], [ 107, 225, 367, 12 ], [ 107, 225, 367, 12 ], [ 107, 225, 367, 12 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 90, 241, 410, 531 ], [ 210, 193, 170, 11 ], [ 210, 193, 170, 11 ], [ 210, 193, 170, 11 ], [ 210, 193, 170, 11 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 564, 65, 341, 190 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 559, 368, 348, 193 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 271, 410, 65 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 576, 410, 79 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 530, 701, 410, 235 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ], [ 90, 775, 410, 170 ] ]
[ [ 924, 37, 16, 12 ], [ 90, 70, 410, 12 ], [ 90, 85, 410, 12 ], [ 90, 100, 242, 12 ], [ 107, 115, 393, 12 ], [ 90, 130, 410, 12 ], [ 90, 145, 105, 12 ], [ 107, 225, 317, 12 ], [ 430, 225, 8, 12 ], [ 443, 225, 30, 12 ], [ 107, 241, 393, 12 ], [ 90, 256, 326, 12 ], [ 422, 256, 8, 12 ], [ 431, 256, 69, 12 ], [ 90, 271, 228, 12 ], [ 323, 271, 8, 12 ], [ 332, 271, 114, 12 ], [ 453, 271, 39, 12 ], [ 493, 269, 6, 9 ], [ 492, 277, 5, 9 ], [ 90, 285, 120, 12 ], [ 217, 285, 42, 12 ], [ 260, 284, 6, 9 ], [ 259, 292, 5, 9 ], [ 274, 285, 226, 12 ], [ 90, 300, 10, 12 ], [ 105, 300, 280, 12 ], [ 391, 300, 45, 12 ], [ 442, 300, 58, 12 ], [ 90, 315, 288, 12 ], [ 385, 315, 8, 12 ], [ 394, 313, 6, 9 ], [ 393, 315, 46, 12 ], [ 446, 315, 41, 12 ], [ 488, 313, 6, 9 ], [ 487, 315, 12, 12 ], [ 90, 330, 181, 12 ], [ 276, 330, 9, 12 ], [ 292, 330, 208, 12 ], [ 90, 345, 63, 12 ], [ 166, 345, 18, 12 ], [ 198, 345, 134, 12 ], [ 345, 345, 24, 12 ], [ 377, 345, 44, 12 ], [ 422, 343, 6, 9 ], [ 422, 345, 78, 12 ], [ 90, 360, 134, 12 ], [ 231, 360, 9, 12 ], [ 250, 360, 250, 12 ], [ 90, 374, 410, 12 ], [ 90, 389, 410, 12 ], [ 90, 404, 410, 12 ], [ 90, 419, 130, 12 ], [ 235, 419, 265, 12 ], [ 90, 434, 410, 12 ], [ 90, 448, 410, 12 ], [ 90, 463, 410, 12 ], [ 90, 478, 159, 12 ], [ 257, 478, 53, 12 ], [ 320, 478, 179, 12 ], [ 90, 493, 14, 12 ], [ 114, 493, 30, 12 ], [ 155, 493, 71, 12 ], [ 227, 491, 6, 9 ], [ 226, 499, 5, 9 ], [ 243, 493, 64, 12 ], [ 324, 493, 27, 12 ], [ 367, 493, 133, 12 ], [ 90, 508, 410, 12 ], [ 90, 523, 64, 12 ], [ 162, 523, 8, 12 ], [ 178, 523, 322, 12 ], [ 90, 537, 177, 12 ], [ 274, 537, 47, 12 ], [ 328, 537, 172, 12 ], [ 90, 552, 62, 12 ], [ 159, 552, 50, 12 ], [ 218, 552, 33, 12 ], [ 264, 552, 236, 12 ], [ 90, 567, 56, 12 ], [ 154, 568, 139, 11 ], [ 301, 567, 59, 12 ], [ 374, 567, 24, 12 ], [ 406, 567, 51, 12 ], [ 467, 567, 33, 12 ], [ 90, 582, 308, 12 ], [ 403, 582, 9, 12 ], [ 420, 582, 80, 12 ], [ 90, 597, 410, 12 ], [ 90, 612, 410, 12 ], [ 90, 626, 410, 12 ], [ 90, 641, 110, 12 ], [ 215, 641, 285, 12 ], [ 90, 656, 140, 12 ], [ 236, 656, 40, 12 ], [ 277, 654, 6, 9 ], [ 276, 656, 223, 12 ], [ 90, 671, 171, 12 ], [ 266, 671, 14, 12 ], [ 286, 671, 25, 12 ], [ 316, 671, 57, 12 ], [ 374, 669, 6, 9 ], [ 374, 671, 126, 12 ], [ 90, 686, 277, 12 ], [ 373, 686, 14, 12 ], [ 392, 686, 108, 12 ], [ 90, 700, 410, 12 ], [ 90, 715, 410, 12 ], [ 90, 730, 190, 12 ], [ 288, 730, 8, 12 ], [ 304, 730, 196, 12 ], [ 90, 745, 45, 12 ], [ 142, 745, 206, 12 ], [ 354, 745, 45, 12 ], [ 406, 745, 94, 12 ], [ 90, 760, 279, 12 ], [ 210, 193, 12, 11 ], [ 238, 193, 100, 11 ], [ 344, 193, 7, 11 ], [ 356, 193, 23, 11 ], [ 587, 237, 18, 8 ], [ 648, 237, 18, 8 ], [ 716, 237, 5, 8 ], [ 773, 237, 14, 8 ], [ 834, 237, 14, 8 ], [ 587, 231, 5, 8 ], [ 581, 187, 11, 8 ], [ 581, 142, 11, 8 ], [ 581, 98, 11, 8 ], [ 715, 78, 7, 15 ], [ 725, 132, 18, 8 ], [ 744, 213, 18, 8 ], [ 783, 91, 0, 6 ], [ 845, 218, 8, 0 ], [ 619, 79, 18, 8 ], [ 583, 542, 18, 8 ], [ 645, 542, 18, 8 ], [ 706, 542, 18, 8 ], [ 768, 542, 18, 8 ], [ 836, 542, 5, 8 ], [ 893, 542, 14, 8 ], [ 584, 536, 5, 8 ], [ 584, 503, 5, 8 ], [ 584, 470, 5, 8 ], [ 584, 437, 5, 8 ], [ 578, 403, 11, 8 ], [ 578, 370, 11, 8 ], [ 759, 399, 8, 8 ], [ 617, 513, 6, 8 ], [ 817, 480, 8, 8 ], [ 698, 475, 10, 8 ], [ 840, 385, 18, 8 ], [ 867, 510, 16, 8 ], [ 801, 410, 34, 8 ], [ 776, 443, 4, 5 ], [ 781, 452, 3, 5 ], [ 530, 271, 213, 11 ], [ 750, 271, 7, 11 ], [ 765, 271, 30, 11 ], [ 805, 271, 135, 11 ], [ 530, 284, 87, 11 ], [ 623, 284, 9, 11 ], [ 636, 284, 148, 11 ], [ 789, 284, 7, 11 ], [ 796, 289, 5, 7 ], [ 807, 284, 133, 11 ], [ 530, 298, 71, 11 ], [ 602, 298, 16, 11 ], [ 625, 299, 15, 19 ], [ 646, 299, 294, 19 ], [ 530, 312, 410, 11 ], [ 530, 325, 264, 11 ], [ 530, 576, 359, 11 ], [ 896, 576, 7, 11 ], [ 911, 576, 30, 11 ], [ 530, 590, 307, 11 ], [ 846, 590, 7, 11 ], [ 864, 590, 11, 11 ], [ 885, 590, 7, 11 ], [ 892, 594, 5, 7 ], [ 908, 590, 32, 11 ], [ 530, 603, 94, 11 ], [ 629, 603, 7, 11 ], [ 636, 608, 5, 7 ], [ 647, 603, 52, 11 ], [ 701, 603, 6, 6 ], [ 700, 609, 5, 7 ], [ 711, 603, 106, 11 ], [ 822, 603, 36, 11 ], [ 859, 603, 6, 6 ], [ 858, 603, 82, 11 ], [ 530, 617, 410, 11 ], [ 530, 630, 18, 11 ], [ 553, 630, 36, 11 ], [ 590, 630, 6, 6 ], [ 590, 630, 351, 11 ], [ 530, 644, 228, 11 ], [ 530, 701, 410, 12 ], [ 530, 716, 410, 12 ], [ 530, 731, 410, 12 ], [ 530, 746, 190, 12 ], [ 727, 746, 10, 12 ], [ 739, 746, 6, 12 ], [ 745, 746, 12, 12 ], [ 758, 746, 182, 12 ], [ 530, 761, 410, 12 ], [ 530, 775, 196, 12 ], [ 741, 775, 200, 12 ], [ 530, 790, 123, 12 ], [ 659, 790, 12, 12 ], [ 677, 790, 154, 12 ], [ 837, 790, 12, 12 ], [ 855, 790, 11, 12 ], [ 871, 790, 12, 12 ], [ 889, 790, 11, 12 ], [ 901, 789, 6, 9 ], [ 901, 796, 5, 9 ], [ 914, 790, 26, 12 ], [ 530, 805, 103, 12 ], [ 638, 805, 12, 12 ], [ 656, 805, 11, 12 ], [ 668, 803, 6, 9 ], [ 668, 805, 273, 12 ], [ 530, 820, 254, 12 ], [ 790, 820, 12, 12 ], [ 807, 820, 133, 12 ], [ 530, 835, 44, 12 ], [ 581, 835, 12, 12 ], [ 599, 835, 11, 12 ], [ 615, 835, 12, 12 ], [ 633, 835, 307, 12 ], [ 530, 850, 221, 12 ], [ 757, 850, 12, 12 ], [ 775, 850, 11, 12 ], [ 791, 850, 12, 12 ], [ 809, 850, 11, 12 ], [ 820, 848, 6, 9 ], [ 820, 850, 59, 12 ], [ 884, 850, 12, 12 ], [ 902, 850, 11, 12 ], [ 913, 848, 6, 9 ], [ 913, 850, 27, 12 ], [ 530, 864, 410, 12 ], [ 530, 879, 410, 12 ], [ 530, 894, 410, 12 ], [ 530, 909, 410, 12 ], [ 530, 924, 163, 12 ], [ 694, 924, 35, 12 ], [ 734, 924, 6, 12 ], [ 754, 924, 186, 12 ], [ 107, 775, 393, 12 ], [ 90, 790, 366, 12 ], [ 472, 790, 28, 12 ], [ 90, 805, 330, 12 ], [ 427, 805, 12, 12 ], [ 446, 805, 9, 12 ], [ 469, 805, 31, 12 ], [ 90, 820, 89, 12 ], [ 188, 820, 12, 12 ], [ 209, 820, 11, 12 ], [ 221, 818, 6, 9 ], [ 221, 826, 5, 9 ], [ 236, 820, 143, 12 ], [ 388, 820, 12, 12 ], [ 409, 820, 11, 12 ], [ 421, 818, 6, 9 ], [ 421, 826, 5, 9 ], [ 436, 820, 64, 12 ], [ 90, 835, 151, 12 ], [ 247, 835, 10, 12 ], [ 263, 835, 237, 12 ], [ 90, 850, 66, 12 ], [ 161, 850, 12, 12 ], [ 179, 850, 321, 12 ], [ 90, 864, 33, 12 ], [ 123, 863, 6, 9 ], [ 123, 864, 315, 12 ], [ 446, 864, 9, 12 ], [ 456, 864, 6, 12 ], [ 463, 864, 12, 12 ], [ 476, 864, 24, 12 ], [ 90, 879, 410, 12 ], [ 90, 894, 410, 12 ], [ 90, 909, 410, 12 ], [ 90, 924, 144, 12 ], [ 240, 924, 30, 22 ], [ 271, 924, 8, 12 ], [ 279, 924, 4, 12 ], [ 284, 924, 216, 12 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
479b035fbdb270575672871b040173d86958498c231fd0e0ab431d76bca94f23
1001.1942.pdf
12
32
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3302
[ "CAPITAL POWER CORPORATION", "30.", "Risk management, continued:", "Market risk", "Notes to the Consolidated Financial Statements", "(Tabular amounts in millions of Canadian dollars, except share and per share amounts)", "Market risk is the risk of loss that results from changes in market factors such as commodity prices, foreign", "currency exchange rates, interest rates and equity prices. The level of market risk to which the Company is", "exposed at any point in time varies depending on market conditions, expectations of future price or market", "rate movements and the composition of the Company’s financial assets and liabilities held, non-trading", "physical asset and contract portfolios, and trading portfolios.", "To manage the exposure related to changes in market risk, the Company uses various risk management", "techniques", "including", "derivative", "instruments.", "Derivative", "instruments", "may", "include", "forward", "contracts,", "fixed-for-floating swaps (or contracts-for-differences), and option contracts. Such derivative instruments may", "be used to establish a fixed price for an energy commodity, an interest-bearing obligation or an obligation", "denominated in a foreign currency. Commodity risk exposures are monitored daily against approved risk", "limits, and control processes are in place to monitor that only authorized activities are undertaken.", "The sensitivities provided in each of the following risk discussions disclose the effect of reasonably possible", "changes in relevant prices and rates on net income at the reporting date. The sensitivities are hypothetical", "and should not be considered to be predictive of future performance or indicative of income on these", "contracts. The Company’s actual exposure to market risks is constantly changing as the Company’s portfolio", "of debt, foreign currency and commodity contracts changes. Changes in fair values or cash flows based on", "market variable fluctuations cannot be extrapolated since the relationship between the change in the market", "variable and the change in fair value or cash flows may not be linear. In addition, the effect of a change in a", "particular market variable on fair values or cash flows is calculated without considering interrelationships", "between the various market rates or mitigating actions that would be taken by the Company.", "The Company is exposed to commodity price risk as part of its normal business operations, including energy", "procurement activities in Alberta, Ontario and the U.S. The Company’s energy procurement activities consist", "of power generation, non-market traded and market traded electricity and natural gas purchase and sales", "contracts, and derivative contracts. The Company is primarily exposed to changes in the prices of electricity,", "and to a lesser extent is exposed to changes in the prices of natural gas and coal. The Company actively", "manages commodity price risk by optimizing its asset and contract portfolios utilizing the following methods", "variously:", "Commodity price risk", "", "The Company reduces its exposure to the volatility of commodity prices related to electricity sales by", "entering into offsetting contracts such as contracts-for-differences and firm price physical contracts for", "periods of varying duration.", "", "The Company enters into fixed-price energy sales contracts and power purchase arrangements which", "limit the exposure to electricity prices. The Company has entered into long-term tolling arrangements", "whereby variable changes linked to the price of natural gas and coal are assumed by the counterparty.", "", "The Company enters into back-to-back electricity and natural gas physical and financial contracts in", "order to lock in a margin.", "The Company also engages in taking market risk positions within authorized limits approved by Capital", "Power’s executive team and Board of Directors. The trading portfolio consists of electricity and natural gas", "physical and financial derivative contracts which are transacted with the intent of benefiting from short-term", "actual or expected differences between their buying and selling prices or to lock in arbitrage opportunities.", "The fair value of the Company’s energy related derivatives as at December 31, 2012, that are required to be", "measured at fair value with the respective changes in fair value recognized in net income are disclosed in", "note 14.", "121" ]
[ [ 150, 47, 432, 23 ], [ 150, 126, 244, 12 ], [ 150, 126, 244, 12 ], [ 180, 150, 79, 12 ], [ 150, 72, 581, 28 ], [ 150, 72, 581, 28 ], [ 180, 173, 723, 75 ], [ 180, 173, 723, 75 ], [ 180, 173, 723, 75 ], [ 180, 173, 723, 75 ], [ 180, 173, 723, 75 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 259, 723, 90 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 360, 723, 137 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 531, 723, 106 ], [ 180, 507, 140, 12 ], [ 180, 646, 723, 45 ], [ 180, 646, 723, 45 ], [ 180, 646, 723, 45 ], [ 180, 646, 723, 45 ], [ 180, 700, 723, 45 ], [ 180, 700, 723, 45 ], [ 180, 700, 723, 45 ], [ 180, 700, 723, 45 ], [ 180, 755, 723, 29 ], [ 180, 755, 723, 29 ], [ 180, 755, 723, 29 ], [ 180, 795, 723, 59 ], [ 180, 795, 723, 59 ], [ 180, 795, 723, 59 ], [ 180, 795, 723, 59 ], [ 180, 864, 723, 44 ], [ 180, 864, 723, 44 ], [ 180, 864, 723, 44 ], [ 879, 952, 25, 12 ] ]
[ [ 150, 47, 432, 23 ], [ 150, 126, 21, 12 ], [ 176, 126, 218, 12 ], [ 180, 150, 79, 12 ], [ 150, 72, 318, 12 ], [ 150, 88, 581, 12 ], [ 180, 173, 723, 12 ], [ 180, 189, 723, 12 ], [ 180, 204, 723, 12 ], [ 180, 220, 723, 12 ], [ 180, 235, 400, 12 ], [ 180, 259, 723, 12 ], [ 180, 274, 73, 12 ], [ 265, 274, 59, 12 ], [ 337, 274, 64, 12 ], [ 413, 274, 82, 12 ], [ 508, 274, 66, 12 ], [ 587, 274, 77, 12 ], [ 676, 274, 28, 12 ], [ 717, 274, 47, 12 ], [ 777, 274, 49, 12 ], [ 839, 274, 65, 12 ], [ 180, 290, 723, 12 ], [ 180, 305, 723, 12 ], [ 180, 321, 723, 12 ], [ 180, 336, 651, 12 ], [ 180, 360, 723, 12 ], [ 180, 375, 723, 12 ], [ 180, 391, 723, 12 ], [ 180, 406, 723, 12 ], [ 180, 422, 723, 12 ], [ 180, 437, 723, 12 ], [ 180, 453, 723, 12 ], [ 180, 468, 723, 12 ], [ 180, 484, 614, 12 ], [ 180, 531, 723, 12 ], [ 180, 546, 723, 12 ], [ 180, 562, 723, 12 ], [ 180, 577, 723, 12 ], [ 180, 593, 723, 12 ], [ 180, 608, 723, 12 ], [ 180, 624, 63, 12 ], [ 180, 507, 140, 12 ], [ 180, 646, 6, 14 ], [ 211, 647, 693, 12 ], [ 211, 663, 693, 12 ], [ 211, 678, 182, 12 ], [ 180, 700, 6, 14 ], [ 211, 701, 693, 12 ], [ 211, 717, 693, 12 ], [ 211, 732, 683, 12 ], [ 180, 755, 6, 14 ], [ 211, 756, 693, 12 ], [ 211, 771, 166, 12 ], [ 180, 795, 723, 12 ], [ 180, 810, 723, 12 ], [ 180, 826, 723, 12 ], [ 180, 841, 705, 12 ], [ 180, 864, 723, 12 ], [ 180, 880, 723, 12 ], [ 180, 895, 54, 12 ], [ 879, 952, 25, 12 ] ]
[ 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 4 ]
83f20492a3a8df627a217e385b190cc6626f9f52b3ee1a63bf221d006be4f3a2
TSX_CPX_2012.pdf
122
136
612
792
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3303
[ "3", "for the O$_{2}$ dissociation on", "sp", "metal surfaces. Motivated by these backgrounds, in this paper", "we investigate the dissociation of O$_{2}$ molecules on another", "sp", "metal surface, lead (Pb). We", "find that the adiabatic DFT calculation also leads to reliable results for the O$_{2}$/Pb(111)", "system.", "Another motive for us to study the O$_{2}$ dissociation on the Pb(111) surface is that atom-", "ically uniform Pb films with thickness from several to tens of monolayers (MLs) have been", "successfully fabricated on both metal and semiconductor substrates", "$^{20,21}$, which can serve as", "an ideal prototype for experimental researchers to investigate the surface oxidation of Pb.", "However, it is believed that for very thin metal films, the adsorption and dissociation of O$_{2}$", "molecules becomes more complex because of the two boundaries. According to the “particle-", "in-a-box” model, electrons confined in a uniform film are quantized into discrete energy levels", "along the film-normal direction, forming the so-called quantum well states. Because the elec-", "tron Fermi wavelength of Pb is nearly 4 times the lattice spacing along the [111] direction", "$^{22}$,", "many properties like thermal stability, surface energy, and work function of the Pb films", "oscillate with thickness with a quasibilayer period", "$^{23–25}$. Recently, a unique two-step method", "has been brought out to efficiently oxidize the the Pb(111) surface", "$^{26,27}$. During this special", "oxidation process, O$_{2}$ molecules are firstly introduced at a low temperature and adsorb in a", "precursor state, then the Pb(111) surface is oxidized by a subsequently annealing to room", "temperature", "$^{27}$. Most interestingly, both the oxygen coverage at low temperature and oxide", "coverage after annealing are found to be modulated by the quantum size effect (QSE) of", "ultrathin Pb(111) films", "$^{26}$. These studies together with other investigations28", "clearly prove", "the modulation of surface oxidation by QSE. To understand the complicated experimen-", "tal observations, the systematical investigations on the adsorption and dissociation of O$_{2}$", "molecules on ultrathin Pb(111) films are needed.", "In our previous work, we have already studied the adsorption properties for both molec-", "ular O$_{2}$ and atomic O on different Pb(111) films", "$^{29,30}$.", "It is found that O$_{2}$ molecules will", "not spontaneously dissociate on Pb(111) films, and a precursor molecular adsorption state", "exists", "$^{29}$. Here in this work, we further analyze the electronic interactions for the adsorption", "of O$_{2}$, investigate the dissociation process for O$_{2}$, and study the QSE on the dissociation", "energy barriers. The rest of the paper organized as follows. In Sec. II, we give details of", "the first-principles total energy calculations, which is followed in Sec. III by our analysis for", "the adsorption state of O$_{2}$ on the Pb(111) surface. In Sec. IV, we study the O$_{2}$ dissociation" ]
[ [ 496, 978, 9, 15 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 94, 780, 96 ], [ 120, 202, 780, 96 ], [ 120, 202, 780, 96 ], [ 120, 202, 780, 96 ], [ 120, 202, 780, 96 ], [ 120, 202, 780, 96 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 311, 781, 421 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ], [ 120, 744, 780, 205 ] ]
[ [ 496, 978, 9, 15 ], [ 120, 94, 218, 15 ], [ 344, 95, 19, 14 ], [ 370, 94, 531, 15 ], [ 120, 121, 500, 15 ], [ 627, 122, 19, 14 ], [ 652, 121, 248, 15 ], [ 120, 148, 780, 15 ], [ 120, 175, 63, 15 ], [ 146, 202, 754, 15 ], [ 120, 229, 780, 15 ], [ 120, 256, 577, 15 ], [ 698, 256, 203, 15 ], [ 120, 283, 780, 15 ], [ 120, 311, 780, 15 ], [ 120, 338, 780, 15 ], [ 120, 365, 780, 15 ], [ 120, 392, 780, 15 ], [ 120, 419, 760, 15 ], [ 880, 419, 20, 15 ], [ 120, 446, 780, 15 ], [ 120, 473, 424, 15 ], [ 545, 473, 356, 15 ], [ 120, 500, 571, 15 ], [ 691, 500, 209, 15 ], [ 120, 527, 780, 15 ], [ 120, 554, 781, 15 ], [ 120, 581, 104, 15 ], [ 225, 581, 675, 15 ], [ 120, 608, 780, 15 ], [ 120, 636, 200, 15 ], [ 320, 636, 462, 15 ], [ 791, 636, 109, 15 ], [ 120, 663, 780, 15 ], [ 120, 690, 780, 15 ], [ 120, 717, 417, 15 ], [ 146, 744, 754, 15 ], [ 120, 771, 429, 15 ], [ 550, 771, 38, 15 ], [ 603, 771, 298, 15 ], [ 120, 798, 780, 15 ], [ 120, 825, 47, 15 ], [ 167, 825, 733, 15 ], [ 120, 852, 780, 15 ], [ 120, 879, 780, 15 ], [ 120, 906, 780, 15 ], [ 120, 933, 780, 15 ] ]
[ 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
c067c6e33cb0754ace4824221fa2d083cc1487ad6dd9e11f2bb92cbc73718a4d
1001.4591.pdf
2
23
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3304
[ "2", "Preliminaries", "Throughout the paper, we will make use of the usual Euclidean norm for vectors and the norm induced", "by the Euclidean norm for matrices.", "Let", "(", "X, d", ")", "be a metric space, and", "T", "refer to either the set of real numbers or the set of integers.", "Suppose that", "π", ":", "T", "×", "X", "→", "X", "is a flow on", "X", ", i.e.,", "π", "(0", ", σ", ") =", "σ", "for all", "σ", "∈", "X, π", "(", "t, σ", ")", "is continuous in the", "pair of variables", "t", "and", "σ,", "and", "π", "(", "t$_{1}$, π", "(", "t$_{2}$, σ", ")) =", "π", "(", "t$_{1}$", "+", "t$_{2}$, σ", ")", "for all", "t$_{1}$, t$_{2}$", "∈", "T", "and", "σ", "∈", "X", "[16]. We modified", "the Poisson stable points to unpredictable points in paper [10] as follows.", "Definition 2.1", "A point", "σ", "∈", "X", "and the trajectory through it are unpredictable if there exist a positive", "number", "ϵ$_{0}$", "(the unpredictability constant) and sequences", "{", "t$_{k}$", "}", "and", "{", "τ$_{k}$", "}", ",", "both of which diverge to infinity,", "such that", "lim", "k", "→∞", "π", "(", "t$_{k}$, σ", ") =", "σ", "and", "d", "[", "π", "(", "t$_{k}$", "+", "τ$_{k}$, σ", ")", ", π", "(", "τ$_{k}$, σ", ")]", "≥", "ϵ$_{0}$", "for each", "k", "∈", "N", ".", "To develop the row of periodic, quasiperiodic, and almost periodic oscillations to a new one, we", "specified in [11]-[13] unpredictability for functions as points of a dynamics.", "Definition 2.2", "A uniformly continuous and bounded function", "ϕ", ":", "R", "→", "R", "p", "is unpredictable if there", "exist positive numbers", "ϵ$_{0}$,", "δ,", "and sequences", "{", "t$_{k}$", "}", ",", "{", "τ$_{k}$", "}", ", both of which diverge to infinity, such that", "‖", "ϕ", "(", "t", "+", "t$_{k}$", ")", "−", "ϕ", "(", "t", ")", "‖", "→", "0", "as", "k", "→", "∞", "uniformly on compact subsets of", "R", ",", "and", "‖", "ϕ", "(", "t", "+", "t$_{k}$", ")", "−", "ϕ", "(", "t", ")", "‖", "≥", "ϵ$_{0}$", "for each", "t", "∈", "[", "τ$_{k}$", "−", "δ, τ$_{k}$", "+", "δ", "]", "and", "n", "∈", "N", ".", "Definition 2.4", "A continuous and bounded function", "ϕ", ":", "R", "→", "R", "p", "is unpredictable if there exist positive", "numbers", "ϵ$_{0}$, δ,", "and sequences", "{", "t$_{k}$", "}", ",", "{", "τ$_{k}$", "}", ", both of which diverge to infinity, such that", "‖", "ϕ", "(", "t$_{k}$", ")", "−", "ϕ", "(0)", "‖ →", "0", "as", "k", "→ ∞", "and", "‖", "ϕ", "(", "t$_{k}$", "+", "τ$_{k}$", ")", "−", "ϕ", "(", "τ$_{k}$", ")", "‖ ≥", "ϵ$_{0}$", "for each", "k", "∈", "N", ".", "The following definition of an unpredictable sequence was first mentioned in paper [13] as an analogue", "for Definition 2.2.", "Definition 2.5", "A bounded sequence", "{", "ϕ$_{n}$", "}", ", n", "∈", "Z", ",", "in", "R", "p", "is called unpredictable if there exist a positive", "number", "ϵ$_{0}$", "and sequences", "{", "ζ$_{k}$", "}", ",", "{", "η$_{k}$", "}", ",", "k", "∈", "N", ", of positive integers, both of which diverge to infinity,", "such that", "‖", "ϕ$_{n}$$_{+}$$_{ζ}$$_{k}$", "−", "ϕ$_{n}$", "‖", "→", "0", "uniformly as", "k", "→", "∞", "for each", "n", "in bounded intervals of integers and", "‖", "ϕ$_{ζ}$$_{k}$$_{+}$$_{η}$$_{k}$", "−", "ϕ$_{η}$$_{k}$", "‖ ≥", "ϵ$_{0}$", "for each", "k", "∈", "N", ".", "2", "The last definition can be considered as a more restrictive version of the next two, which will be", "useful in the future for applications of functional analysis methods in the theory of differential equations.", "Definition 2.3", "A continuous and bounded function", "ϕ", ":", "R", "→", "R", "p", "is unpredictable if there exist positive", "numbers", "ϵ$_{0}$, δ,", "and sequences", "{", "t$_{k}$", "}", ",", "{", "τ$_{k}$", "}", ", both of which diverge to infinity, such that", "‖", "ϕ", "(", "t", "+", "t$_{k}$", ")", "−", "ϕ", "(", "t", ")", "‖ →", "0", "as", "k", "→ ∞", "uniformly on compact subsets of", "R", "and", "‖", "ϕ", "(", "t$_{k}$", "+", "τ$_{k}$", ")", "−", "ϕ", "(", "τ$_{k}$", ")", "‖ ≥", "ϵ$_{0}$", "for each", "k", "∈", "N", "." ]
[ [ 124, 87, 198, 15 ], [ 124, 87, 198, 15 ], [ 124, 127, 777, 36 ], [ 124, 127, 777, 36 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 175, 777, 85 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 284, 777, 67 ], [ 124, 369, 777, 36 ], [ 124, 369, 777, 36 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 428, 777, 86 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 683, 777, 62 ], [ 124, 769, 777, 36 ], [ 124, 769, 777, 36 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 124, 828, 777, 86 ], [ 508, 964, 8, 12 ], [ 124, 539, 777, 36 ], [ 124, 539, 777, 36 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ], [ 124, 598, 777, 62 ] ]
[ [ 124, 87, 13, 15 ], [ 164, 87, 158, 15 ], [ 124, 127, 777, 12 ], [ 124, 151, 271, 12 ], [ 149, 175, 25, 12 ], [ 182, 175, 6, 12 ], [ 188, 175, 31, 12 ], [ 219, 175, 6, 12 ], [ 233, 175, 175, 12 ], [ 416, 176, 11, 8 ], [ 435, 175, 465, 12 ], [ 124, 199, 98, 12 ], [ 228, 199, 9, 12 ], [ 244, 199, 4, 12 ], [ 254, 200, 11, 8 ], [ 269, 199, 13, 12 ], [ 286, 199, 14, 12 ], [ 307, 199, 17, 12 ], [ 329, 199, 14, 12 ], [ 351, 199, 86, 12 ], [ 443, 199, 14, 12 ], [ 458, 199, 37, 12 ], [ 501, 199, 9, 12 ], [ 512, 199, 15, 12 ], [ 527, 199, 17, 12 ], [ 545, 199, 25, 12 ], [ 575, 199, 9, 12 ], [ 592, 199, 44, 12 ], [ 642, 199, 9, 12 ], [ 658, 199, 11, 12 ], [ 674, 199, 35, 12 ], [ 710, 199, 6, 12 ], [ 716, 199, 23, 12 ], [ 741, 199, 6, 12 ], [ 753, 199, 147, 12 ], [ 124, 224, 119, 12 ], [ 248, 224, 6, 12 ], [ 259, 224, 27, 12 ], [ 292, 224, 14, 12 ], [ 311, 224, 27, 12 ], [ 343, 224, 9, 12 ], [ 354, 224, 6, 12 ], [ 360, 224, 31, 12 ], [ 392, 224, 6, 12 ], [ 399, 224, 31, 12 ], [ 431, 224, 31, 12 ], [ 467, 224, 9, 12 ], [ 478, 224, 6, 12 ], [ 484, 224, 13, 12 ], [ 501, 224, 13, 12 ], [ 517, 224, 31, 12 ], [ 549, 224, 6, 12 ], [ 560, 224, 43, 12 ], [ 609, 224, 36, 12 ], [ 652, 224, 11, 12 ], [ 668, 224, 11, 8 ], [ 684, 224, 27, 12 ], [ 717, 224, 9, 12 ], [ 732, 224, 11, 12 ], [ 748, 224, 14, 12 ], [ 769, 224, 131, 12 ], [ 124, 248, 550, 12 ], [ 124, 284, 117, 12 ], [ 249, 284, 56, 12 ], [ 314, 284, 9, 12 ], [ 330, 284, 11, 12 ], [ 348, 284, 14, 12 ], [ 371, 284, 529, 12 ], [ 124, 309, 55, 12 ], [ 184, 309, 13, 12 ], [ 205, 309, 333, 12 ], [ 544, 309, 8, 12 ], [ 552, 309, 13, 12 ], [ 567, 309, 8, 12 ], [ 581, 309, 27, 12 ], [ 614, 309, 8, 12 ], [ 623, 309, 14, 12 ], [ 639, 309, 8, 12 ], [ 650, 309, 4, 12 ], [ 661, 309, 240, 12 ], [ 124, 333, 67, 12 ], [ 203, 333, 23, 12 ], [ 198, 343, 7, 8 ], [ 205, 345, 27, 5 ], [ 235, 333, 9, 12 ], [ 246, 333, 6, 12 ], [ 252, 333, 32, 12 ], [ 285, 333, 24, 12 ], [ 315, 333, 9, 12 ], [ 331, 333, 27, 12 ], [ 365, 333, 8, 12 ], [ 373, 333, 4, 12 ], [ 378, 333, 9, 12 ], [ 389, 333, 6, 12 ], [ 395, 333, 13, 12 ], [ 414, 333, 13, 12 ], [ 431, 333, 33, 12 ], [ 465, 333, 6, 12 ], [ 472, 333, 17, 12 ], [ 490, 333, 6, 12 ], [ 496, 333, 33, 12 ], [ 530, 333, 11, 12 ], [ 547, 333, 13, 12 ], [ 565, 333, 13, 12 ], [ 586, 333, 59, 12 ], [ 652, 333, 8, 12 ], [ 666, 333, 11, 12 ], [ 682, 334, 12, 8 ], [ 694, 333, 4, 12 ], [ 149, 369, 751, 12 ], [ 124, 393, 560, 12 ], [ 124, 430, 117, 12 ], [ 249, 430, 353, 12 ], [ 611, 430, 11, 12 ], [ 631, 430, 4, 12 ], [ 644, 431, 12, 8 ], [ 665, 430, 17, 12 ], [ 691, 431, 12, 8 ], [ 703, 428, 7, 8 ], [ 720, 430, 181, 12 ], [ 124, 454, 169, 12 ], [ 302, 454, 19, 12 ], [ 330, 454, 12, 12 ], [ 352, 454, 106, 12 ], [ 467, 454, 8, 12 ], [ 476, 454, 13, 12 ], [ 491, 454, 8, 12 ], [ 502, 454, 4, 12 ], [ 516, 454, 8, 12 ], [ 524, 454, 14, 12 ], [ 540, 454, 8, 12 ], [ 549, 454, 352, 12 ], [ 124, 478, 8, 12 ], [ 132, 478, 11, 12 ], [ 143, 478, 6, 12 ], [ 150, 478, 6, 12 ], [ 160, 478, 13, 12 ], [ 177, 478, 13, 12 ], [ 192, 478, 6, 12 ], [ 202, 478, 13, 12 ], [ 219, 478, 11, 12 ], [ 231, 478, 6, 12 ], [ 237, 478, 6, 12 ], [ 243, 478, 6, 12 ], [ 250, 478, 8, 12 ], [ 267, 478, 17, 12 ], [ 293, 478, 8, 12 ], [ 310, 478, 15, 12 ], [ 334, 478, 8, 12 ], [ 352, 478, 17, 12 ], [ 377, 478, 17, 12 ], [ 403, 478, 249, 12 ], [ 660, 479, 12, 8 ], [ 672, 478, 4, 12 ], [ 685, 478, 27, 12 ], [ 721, 478, 8, 12 ], [ 729, 478, 11, 12 ], [ 740, 478, 6, 12 ], [ 747, 478, 6, 12 ], [ 757, 478, 13, 12 ], [ 774, 478, 13, 12 ], [ 789, 478, 6, 12 ], [ 800, 478, 13, 12 ], [ 817, 478, 11, 12 ], [ 828, 478, 6, 12 ], [ 834, 478, 6, 12 ], [ 841, 478, 6, 12 ], [ 847, 478, 8, 12 ], [ 864, 478, 13, 12 ], [ 886, 478, 13, 12 ], [ 124, 503, 59, 12 ], [ 189, 503, 6, 12 ], [ 200, 503, 11, 12 ], [ 217, 503, 4, 12 ], [ 222, 503, 14, 12 ], [ 241, 503, 13, 12 ], [ 258, 503, 29, 12 ], [ 293, 503, 13, 12 ], [ 310, 503, 7, 12 ], [ 318, 503, 4, 12 ], [ 329, 503, 27, 12 ], [ 363, 503, 10, 12 ], [ 378, 503, 11, 12 ], [ 394, 503, 12, 8 ], [ 407, 503, 4, 12 ], [ 124, 685, 117, 12 ], [ 249, 685, 267, 12 ], [ 524, 685, 11, 12 ], [ 541, 685, 4, 12 ], [ 552, 685, 12, 8 ], [ 570, 685, 17, 12 ], [ 593, 685, 12, 8 ], [ 606, 683, 7, 8 ], [ 620, 685, 280, 12 ], [ 124, 709, 62, 12 ], [ 192, 709, 37, 12 ], [ 235, 709, 103, 12 ], [ 345, 709, 8, 12 ], [ 353, 709, 13, 12 ], [ 368, 709, 8, 12 ], [ 379, 709, 4, 12 ], [ 390, 709, 8, 12 ], [ 398, 709, 14, 12 ], [ 414, 709, 8, 12 ], [ 423, 709, 326, 12 ], [ 755, 709, 8, 12 ], [ 764, 709, 11, 12 ], [ 775, 709, 6, 12 ], [ 782, 709, 13, 12 ], [ 796, 709, 6, 12 ], [ 807, 709, 13, 12 ], [ 824, 709, 11, 12 ], [ 835, 709, 21, 12 ], [ 857, 709, 30, 12 ], [ 892, 709, 8, 12 ], [ 124, 733, 15, 12 ], [ 145, 733, 8, 12 ], [ 160, 733, 39, 12 ], [ 205, 733, 27, 12 ], [ 238, 733, 8, 12 ], [ 247, 733, 11, 12 ], [ 258, 733, 6, 12 ], [ 265, 733, 13, 12 ], [ 283, 733, 13, 12 ], [ 300, 733, 14, 12 ], [ 316, 733, 6, 12 ], [ 327, 733, 13, 12 ], [ 344, 733, 11, 12 ], [ 355, 733, 6, 12 ], [ 362, 733, 14, 12 ], [ 378, 733, 6, 12 ], [ 384, 733, 26, 12 ], [ 416, 733, 13, 12 ], [ 437, 733, 59, 12 ], [ 503, 733, 8, 12 ], [ 517, 733, 11, 12 ], [ 533, 734, 12, 8 ], [ 546, 733, 4, 12 ], [ 149, 769, 751, 12 ], [ 124, 794, 132, 12 ], [ 124, 830, 117, 12 ], [ 249, 830, 148, 12 ], [ 404, 830, 8, 12 ], [ 413, 830, 19, 12 ], [ 433, 830, 8, 12 ], [ 445, 830, 21, 12 ], [ 472, 830, 11, 12 ], [ 489, 831, 11, 8 ], [ 500, 830, 4, 12 ], [ 511, 830, 14, 12 ], [ 533, 831, 12, 8 ], [ 545, 828, 7, 8 ], [ 559, 830, 341, 12 ], [ 124, 854, 55, 12 ], [ 187, 854, 13, 12 ], [ 210, 854, 106, 12 ], [ 325, 854, 8, 12 ], [ 334, 854, 14, 12 ], [ 349, 854, 8, 12 ], [ 361, 854, 4, 12 ], [ 374, 854, 8, 12 ], [ 383, 854, 15, 12 ], [ 400, 854, 8, 12 ], [ 408, 854, 5, 12 ], [ 423, 854, 8, 12 ], [ 441, 854, 11, 12 ], [ 462, 855, 12, 8 ], [ 474, 854, 427, 12 ], [ 124, 879, 70, 12 ], [ 202, 879, 8, 12 ], [ 211, 879, 42, 12 ], [ 260, 879, 13, 12 ], [ 277, 879, 19, 12 ], [ 297, 879, 8, 12 ], [ 315, 879, 17, 12 ], [ 341, 879, 8, 12 ], [ 358, 879, 96, 12 ], [ 463, 879, 8, 12 ], [ 481, 879, 17, 12 ], [ 507, 879, 17, 12 ], [ 533, 879, 62, 12 ], [ 603, 879, 10, 12 ], [ 622, 879, 279, 12 ], [ 124, 903, 8, 12 ], [ 132, 903, 48, 12 ], [ 187, 903, 13, 12 ], [ 204, 903, 24, 12 ], [ 231, 903, 26, 12 ], [ 262, 903, 13, 12 ], [ 283, 903, 59, 12 ], [ 349, 903, 8, 12 ], [ 363, 903, 11, 12 ], [ 379, 904, 12, 8 ], [ 392, 903, 4, 12 ], [ 508, 964, 8, 12 ], [ 149, 539, 751, 12 ], [ 124, 563, 777, 12 ], [ 124, 600, 117, 12 ], [ 249, 600, 267, 12 ], [ 524, 600, 11, 12 ], [ 541, 600, 4, 12 ], [ 552, 600, 12, 8 ], [ 570, 600, 17, 12 ], [ 593, 600, 12, 8 ], [ 606, 598, 7, 8 ], [ 620, 600, 280, 12 ], [ 124, 624, 62, 12 ], [ 191, 624, 36, 12 ], [ 232, 624, 103, 12 ], [ 341, 624, 8, 12 ], [ 349, 624, 13, 12 ], [ 364, 624, 8, 12 ], [ 375, 624, 4, 12 ], [ 385, 624, 8, 12 ], [ 394, 624, 14, 12 ], [ 410, 624, 8, 12 ], [ 418, 624, 320, 12 ], [ 744, 624, 8, 12 ], [ 752, 624, 11, 12 ], [ 764, 624, 6, 12 ], [ 770, 624, 6, 12 ], [ 780, 624, 13, 12 ], [ 797, 624, 13, 12 ], [ 812, 624, 6, 12 ], [ 822, 624, 13, 12 ], [ 840, 624, 11, 12 ], [ 851, 624, 6, 12 ], [ 857, 624, 6, 12 ], [ 864, 624, 6, 12 ], [ 870, 624, 30, 12 ], [ 124, 648, 8, 12 ], [ 138, 648, 15, 12 ], [ 160, 648, 8, 12 ], [ 174, 648, 39, 12 ], [ 220, 648, 240, 12 ], [ 467, 649, 12, 8 ], [ 485, 648, 27, 12 ], [ 519, 648, 8, 12 ], [ 527, 648, 11, 12 ], [ 538, 648, 6, 12 ], [ 545, 648, 13, 12 ], [ 563, 648, 13, 12 ], [ 581, 648, 14, 12 ], [ 597, 648, 6, 12 ], [ 607, 648, 13, 12 ], [ 624, 648, 11, 12 ], [ 635, 648, 6, 12 ], [ 642, 648, 14, 12 ], [ 658, 648, 6, 12 ], [ 665, 648, 26, 12 ], [ 696, 648, 13, 12 ], [ 717, 648, 59, 12 ], [ 783, 648, 8, 12 ], [ 797, 648, 11, 12 ], [ 814, 649, 12, 8 ], [ 826, 648, 4, 12 ] ]
[ 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
c96dc6df2cfea59128aa262634c36d79f14318828333aabe2bf533994f6db923
1704.06963.pdf
1
10
595
842
1,025
1,025
arxiv_doublespaced
scientific_articles
3305
[ "0.4", "0.5", "0.6", "0.7", "0.8", "0.9", "1", "(aQ)", "2", "0", "0.005", "0.01", "2-loop", "3-loop", "4-loop", "C$_{0}$(Q$^{2}$,", "$^{2}$,", "$_{s}$)-c+1/(2", "$^{2}$)ln(aQ)2", "FIG. 7:", "C$_{0}$", "(", "Q", "$^{2}$, µ$^{2}$, α$_{s}$", ")", "−", "c", "+ 1", "/", "(2", "π", "$^{2}$) ln(", "aQ", ")", "2", "as a function of (", "aQ", ")", "$^{2}$. The perturbative results at", "two-loop (solid), three-loop (dashed), and four-loop (dotted) calculations are shown. The logarithm", "at the leading order is subtracted in order to enhance their small differences.", "As previously discussed, the size of neglected 1", "/Q", "6", "terms in the OPE formula is at most", "0.001 for Π$_{J}$(", "Q", ") at the lower end of the fitting range (", "aQ", ")", "2", "min", "= 0", ".", "463 (see Figure 4). This", "is less than 1/5 of the estimated discretization effect discussed above. We therefore expect", "that the impact on", "α", "(5)", "s", "(", "M$_{Z}$", ") is smaller than 0.0001.", "The uncertainty of charm and bottom quark masses,", "m$_{c}$", "and", "m$_{b}$", "used in a perturbative", "matching of", "α", "(3)", "s", "onto", "α", "(5)", "s", "is +0", ".", "0001 and", "−", "0", ".", "0003, which are the maximum and mini-", "mum values when", "m$_{b,c}$", "are changed within 1", "σ", "in the analysis. The input values ¯", "m$_{c}$", "( ¯", "m$_{c}$", ") =", "1.27(", "+07", "−", "$_{11}$) GeV and ¯", "m$_{b}$", "( ¯", "m$_{b}$", ") = 4.20(", "+17", "−", "$_{07}$) GeV are taken from [2].", "The uncertainty of the lattice spacing is the largest source of the systematic error.", "17", "H.", "Lattice spacing", "G.", "Charm and bottom quark mass", "F.", "1", "/Q", "2", "expansion" ]
[ [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 272, 89, 481, 276 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 392, 780, 72 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 554, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 120, 739, 780, 98 ], [ 145, 923, 706, 15 ], [ 491, 978, 19, 15 ], [ 145, 880, 181, 12 ], [ 145, 880, 181, 12 ], [ 145, 696, 332, 12 ], [ 145, 696, 332, 12 ], [ 145, 509, 178, 16 ], [ 145, 509, 178, 16 ], [ 145, 509, 178, 16 ], [ 145, 509, 178, 16 ], [ 145, 509, 178, 16 ] ]
[ [ 317, 333, 20, 11 ], [ 382, 333, 20, 11 ], [ 446, 333, 20, 11 ], [ 511, 333, 20, 11 ], [ 575, 333, 20, 11 ], [ 639, 333, 20, 11 ], [ 711, 333, 8, 11 ], [ 509, 350, 35, 13 ], [ 545, 345, 6, 9 ], [ 302, 326, 8, 11 ], [ 275, 210, 36, 11 ], [ 284, 94, 28, 11 ], [ 641, 231, 43, 11 ], [ 641, 246, 43, 11 ], [ 641, 260, 43, 11 ], [ 414, 288, 48, 12 ], [ 474, 288, 11, 12 ], [ 497, 288, 67, 12 ], [ 574, 288, 67, 12 ], [ 120, 394, 58, 14 ], [ 196, 394, 20, 14 ], [ 217, 394, 7, 14 ], [ 224, 394, 14, 14 ], [ 238, 394, 61, 14 ], [ 300, 394, 7, 14 ], [ 312, 394, 14, 14 ], [ 330, 394, 7, 14 ], [ 342, 394, 27, 14 ], [ 370, 394, 9, 14 ], [ 379, 394, 16, 14 ], [ 395, 394, 10, 14 ], [ 406, 394, 40, 14 ], [ 447, 394, 24, 14 ], [ 471, 394, 7, 14 ], [ 478, 392, 7, 10 ], [ 492, 394, 138, 14 ], [ 630, 394, 24, 14 ], [ 654, 394, 7, 14 ], [ 661, 394, 239, 14 ], [ 120, 422, 780, 14 ], [ 120, 450, 614, 14 ], [ 145, 555, 400, 15 ], [ 546, 555, 25, 15 ], [ 571, 554, 7, 10 ], [ 586, 555, 315, 15 ], [ 120, 583, 114, 15 ], [ 234, 583, 15, 15 ], [ 250, 583, 340, 15 ], [ 590, 583, 25, 15 ], [ 616, 583, 7, 15 ], [ 624, 581, 7, 10 ], [ 624, 590, 23, 10 ], [ 654, 583, 31, 15 ], [ 686, 583, 5, 15 ], [ 691, 583, 209, 15 ], [ 120, 610, 780, 15 ], [ 120, 637, 162, 15 ], [ 289, 637, 12, 15 ], [ 302, 633, 17, 10 ], [ 301, 643, 6, 9 ], [ 320, 637, 7, 15 ], [ 328, 637, 28, 15 ], [ 358, 637, 207, 15 ], [ 145, 739, 455, 15 ], [ 608, 739, 23, 15 ], [ 639, 739, 31, 15 ], [ 678, 739, 23, 15 ], [ 709, 739, 191, 15 ], [ 120, 767, 104, 15 ], [ 233, 767, 12, 15 ], [ 246, 763, 17, 10 ], [ 246, 772, 6, 9 ], [ 274, 767, 37, 15 ], [ 321, 767, 12, 15 ], [ 334, 763, 17, 10 ], [ 334, 772, 6, 9 ], [ 362, 767, 47, 15 ], [ 410, 767, 5, 15 ], [ 415, 767, 80, 15 ], [ 505, 767, 15, 15 ], [ 520, 767, 9, 15 ], [ 530, 767, 5, 15 ], [ 536, 767, 365, 15 ], [ 120, 794, 153, 15 ], [ 281, 794, 33, 15 ], [ 322, 794, 180, 15 ], [ 503, 794, 11, 15 ], [ 522, 794, 306, 15 ], [ 815, 794, 23, 15 ], [ 839, 794, 21, 15 ], [ 847, 794, 23, 15 ], [ 871, 794, 30, 15 ], [ 120, 821, 42, 15 ], [ 163, 818, 25, 10 ], [ 163, 829, 11, 9 ], [ 174, 821, 125, 15 ], [ 286, 821, 23, 15 ], [ 310, 821, 21, 15 ], [ 318, 821, 23, 15 ], [ 342, 821, 78, 15 ], [ 421, 818, 25, 10 ], [ 421, 829, 11, 9 ], [ 432, 821, 232, 15 ], [ 145, 923, 706, 15 ], [ 491, 978, 19, 15 ], [ 145, 880, 22, 12 ], [ 188, 880, 138, 12 ], [ 145, 696, 22, 12 ], [ 188, 696, 289, 12 ], [ 145, 512, 19, 12 ], [ 185, 511, 9, 14 ], [ 194, 511, 23, 14 ], [ 218, 509, 7, 10 ], [ 233, 512, 90, 12 ] ]
[ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3 ]
b7effe35df6c1d09bbe9d2cc9b93c121905f000975e1dffdd4af510c16e8612c
1002.0371.pdf
16
22
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3306
[ "Innovating across ", "technologies ", "and addressing ", "growers’ needs", "Farmers think about their land and their crops in a holistic, ", "integrated way. By doing the same, we equip ourselves to create ", "truly innovative and transformative technologies focused on a crop ", "rather than a specific scientific discipline. We look beyond single ", "products to create complete solutions. And increasingly, we look ", "beyond yield alone to complete solutions that benefit both people ", "and the land.", "Meetinggrowe", "r", "s’needs", "Uniquein", "themarket", "Crop", "specific", "Integrated", "solutions", "Integrated solutions", "We are moving beyond ", "single products and ", "developing game-", "changing technologies.", "Crop specific", "To meet growers’ ", "needs, we are", "focusing on crops", "and harnessing our ", "experience from ", "around the world. ", "Unique in the market", "With our broad ", "technical expertise ", "and global teams, ", "we are uniquely placed ", "to translate our insights ", "into solutions." ]
[ [ 267, 19, 710, 273 ], [ 267, 19, 710, 273 ], [ 267, 19, 710, 273 ], [ 267, 19, 710, 273 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 267, 387, 647, 138 ], [ 46, 36, 51, 352 ], [ 46, 36, 51, 352 ], [ 46, 36, 51, 352 ], [ 736, 653, 135, 45 ], [ 736, 653, 135, 45 ], [ 546, 652, 99, 45 ], [ 546, 652, 99, 45 ], [ 323, 653, 128, 45 ], [ 323, 653, 128, 45 ], [ 292, 837, 195, 87 ], [ 292, 837, 195, 87 ], [ 292, 837, 195, 87 ], [ 292, 837, 195, 87 ], [ 292, 837, 195, 87 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 518, 837, 164, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ], [ 730, 837, 193, 118 ] ]
[ [ 267, 19, 710, 80 ], [ 267, 83, 531, 80 ], [ 267, 148, 642, 80 ], [ 267, 212, 615, 80 ], [ 267, 387, 566, 21 ], [ 267, 406, 632, 21 ], [ 267, 426, 647, 21 ], [ 267, 445, 624, 21 ], [ 267, 465, 630, 21 ], [ 267, 484, 639, 21 ], [ 267, 504, 127, 21 ], [ 46, 36, 51, 219 ], [ 46, 254, 51, 12 ], [ 46, 266, 51, 121 ], [ 745, 653, 116, 24 ], [ 736, 673, 135, 24 ], [ 564, 652, 61, 24 ], [ 546, 673, 99, 24 ], [ 323, 653, 128, 24 ], [ 330, 673, 114, 24 ], [ 292, 837, 180, 18 ], [ 292, 860, 195, 18 ], [ 292, 875, 167, 18 ], [ 292, 891, 148, 18 ], [ 292, 906, 189, 18 ], [ 518, 837, 121, 18 ], [ 518, 859, 148, 18 ], [ 518, 875, 115, 18 ], [ 518, 890, 146, 18 ], [ 518, 906, 164, 18 ], [ 518, 921, 138, 18 ], [ 518, 937, 149, 18 ], [ 730, 837, 187, 18 ], [ 730, 859, 128, 18 ], [ 730, 875, 157, 18 ], [ 730, 890, 151, 18 ], [ 730, 906, 193, 18 ], [ 730, 921, 192, 18 ], [ 730, 937, 110, 18 ] ]
[ 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 5, 5, 5, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
3bf45c2f9d964a13a599dec981c5d2b896fcbe031aab186a4320ff5766925999
NYSE_SYT_2011.pdf
21
62
595
793
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3307
[ "Figure 5-95. ", "Bag positioned under canopy.", "Figure 5-96. ", "Second “S” fold.", "Figure 5-94. ", "Finish wrapping tail, four clamps.", "Figure 5-93. ", "Wrap tail, two clamps.", "Figure 5-97. ", "Split fabric and form “ears.”", "5. ", "Hold down the center cell material and then shape the ", "molar folds. ", "[Figure 5-99]", "6. ", "Fold", "the", "ends", "of", "the", "molar", "folds", "under", "to", "create ", "the bulk necessary to fill the top of the reserve bag. ", "[Figure 5-100]", "7. ", "When", "placing", "the", "canopy", "in", "the", "bag,", "allow", "the ", "folded canopy to stick out 2–3 inches at the mouth ", "of the bag to fill the corners of the reserve container. ", "[Figure 5-101]", "[Figure 5-102]", "8. ", "Close bag and secure with the locking stows. ", "9. ", "Shape the bag. The shape of the bag should reflect the ", "desired shape of the reserve container.", "10.", "Cover any exposed hook Velcro", "$^{®}$ to avoid contact ", "with the lines.", "5-34" ]
[ [ 491, 285, 267, 14 ], [ 491, 285, 267, 14 ], [ 491, 556, 187, 14 ], [ 491, 556, 187, 14 ], [ 62, 706, 294, 14 ], [ 62, 706, 294, 14 ], [ 62, 401, 222, 14 ], [ 62, 401, 222, 14 ], [ 491, 825, 262, 14 ], [ 491, 825, 262, 14 ], [ 77, 732, 397, 31 ], [ 77, 732, 397, 31 ], [ 77, 732, 397, 31 ], [ 77, 732, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 77, 771, 397, 31 ], [ 108, 804, 104, 15 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 77, 827, 397, 48 ], [ 108, 877, 104, 15 ], [ 108, 916, 104, 15 ], [ 77, 899, 391, 15 ], [ 77, 899, 391, 15 ], [ 507, 848, 397, 31 ], [ 507, 848, 397, 31 ], [ 507, 848, 397, 31 ], [ 507, 887, 399, 31 ], [ 507, 887, 399, 31 ], [ 507, 887, 399, 31 ], [ 507, 887, 399, 31 ], [ 62, 964, 34, 16 ] ]
[ [ 491, 285, 81, 13 ], [ 573, 285, 186, 13 ], [ 491, 556, 81, 13 ], [ 573, 556, 105, 13 ], [ 62, 707, 81, 13 ], [ 143, 706, 213, 13 ], [ 62, 402, 81, 13 ], [ 143, 401, 141, 13 ], [ 491, 826, 81, 13 ], [ 573, 825, 181, 13 ], [ 77, 732, 17, 15 ], [ 108, 732, 366, 15 ], [ 108, 749, 87, 15 ], [ 196, 749, 96, 15 ], [ 77, 771, 17, 15 ], [ 108, 771, 22, 15 ], [ 143, 771, 19, 15 ], [ 175, 771, 25, 15 ], [ 214, 771, 12, 15 ], [ 239, 771, 19, 15 ], [ 271, 771, 31, 15 ], [ 316, 771, 31, 15 ], [ 361, 771, 28, 15 ], [ 401, 771, 12, 15 ], [ 427, 771, 44, 15 ], [ 108, 788, 366, 15 ], [ 108, 804, 104, 15 ], [ 77, 827, 17, 15 ], [ 108, 827, 23, 15 ], [ 146, 827, 47, 15 ], [ 207, 827, 20, 15 ], [ 242, 827, 41, 15 ], [ 296, 827, 13, 15 ], [ 324, 827, 20, 15 ], [ 358, 827, 23, 15 ], [ 395, 827, 34, 15 ], [ 443, 827, 27, 15 ], [ 108, 843, 366, 15 ], [ 108, 860, 366, 15 ], [ 108, 877, 104, 15 ], [ 108, 916, 104, 15 ], [ 77, 899, 17, 15 ], [ 108, 899, 360, 15 ], [ 507, 848, 17, 15 ], [ 538, 848, 366, 15 ], [ 538, 865, 264, 15 ], [ 507, 887, 17, 15 ], [ 533, 887, 236, 15 ], [ 770, 887, 137, 15 ], [ 538, 904, 97, 15 ], [ 62, 964, 34, 16 ] ]
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4 ]
0df893af0d5396c064224aeb31208dea56fa16662600ee1e45aadb3422c4b233
prh_change1.pdf
133
350
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3308
[ "the core into the upper plenum or chimney region of the boiling water", "reactor.", "[001 1]", "The isolation condenser", "system lowers reactor pressure", "vessel", "pressure", "following an isolation event.", "Any increase in core power that", "results", "from the condensate", "return", "into the downcomer region of the", "reactor pressure vessel reduces the effectiveness of the isolation condenser", "system.", "The", "reactor", "pressure", "vessel", "pressure", "increase", "can", "be", "unacceptably large especially when the isolation event occurs concurrent", "with", "a failure", "or delay in", "scram", "(reactor", "shutdown)", "such", "as in", "an", "anticipated", "transient", "without scram.", "Return of the isolation condenser", "system condensate", "into the region above the core, on the other hand,", "dramatically increases the effectiveness of the isolation condenser system", "and substantially", "lowers the peak pressure that will occur.", "This lowering", "of the pressure", "provides additional", "time for an alternate", "slower scram", "mechanism", "to function during an anticipated", "transient", "without", "scram", "scenario where the faster primary scram mechanism", "has failed or was", "severely degraded.", "[0012]", "The isolation condenser", "system condensate", "is returned", "to the", "reactor pressure vessel of the boiling water reactor inside the core barrel", "above the core rather than into the downcomer.", "This increases isolation", "condenser system effectiveness and makes it possible to greatly reduce the", "magnitude", "of", "the", "pressure", "increase", "that", "would", "otherwise", "occur", "consequently,", "the opening of safety relief valves can be avoided which", "retains fluid inventory in the reactor pressure vessel.", "The need for high", "pressure", "emergency core cooling systems can be eliminated because the" ]
[ [ 155, 91, 743, 49 ], [ 155, 91, 743, 49 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 159, 747, 495 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ], [ 155, 674, 745, 255 ] ]
[ [ 155, 91, 743, 15 ], [ 155, 125, 72, 15 ], [ 156, 161, 58, 12 ], [ 247, 160, 242, 15 ], [ 507, 159, 317, 15 ], [ 841, 159, 58, 15 ], [ 155, 194, 80, 15 ], [ 253, 194, 289, 14 ], [ 564, 194, 333, 14 ], [ 155, 228, 62, 15 ], [ 237, 229, 210, 15 ], [ 466, 228, 57, 15 ], [ 542, 228, 356, 15 ], [ 155, 262, 740, 15 ], [ 156, 297, 73, 15 ], [ 272, 297, 37, 15 ], [ 330, 297, 66, 15 ], [ 421, 297, 80, 15 ], [ 529, 297, 58, 15 ], [ 610, 297, 80, 15 ], [ 718, 297, 79, 15 ], [ 822, 297, 33, 15 ], [ 878, 297, 23, 15 ], [ 155, 331, 738, 15 ], [ 155, 365, 42, 15 ], [ 213, 365, 88, 15 ], [ 318, 365, 119, 15 ], [ 454, 365, 57, 15 ], [ 531, 365, 74, 15 ], [ 622, 365, 101, 15 ], [ 743, 365, 44, 15 ], [ 806, 365, 54, 15 ], [ 876, 365, 24, 15 ], [ 155, 400, 105, 15 ], [ 278, 400, 83, 15 ], [ 378, 400, 151, 15 ], [ 554, 400, 342, 15 ], [ 156, 434, 188, 15 ], [ 362, 434, 534, 15 ], [ 155, 468, 743, 15 ], [ 155, 503, 167, 15 ], [ 339, 503, 410, 15 ], [ 766, 503, 136, 15 ], [ 155, 538, 152, 14 ], [ 326, 537, 191, 15 ], [ 534, 537, 212, 15 ], [ 765, 537, 133, 15 ], [ 155, 571, 109, 15 ], [ 283, 571, 346, 14 ], [ 649, 571, 83, 15 ], [ 751, 571, 73, 15 ], [ 840, 571, 57, 15 ], [ 156, 605, 547, 15 ], [ 721, 605, 179, 15 ], [ 156, 640, 180, 15 ], [ 156, 675, 55, 13 ], [ 247, 674, 243, 15 ], [ 508, 674, 187, 15 ], [ 714, 674, 108, 15 ], [ 840, 674, 59, 14 ], [ 155, 708, 742, 15 ], [ 155, 743, 488, 15 ], [ 661, 743, 238, 15 ], [ 155, 777, 743, 15 ], [ 155, 811, 101, 15 ], [ 284, 812, 19, 14 ], [ 322, 811, 29, 15 ], [ 374, 811, 80, 15 ], [ 482, 811, 79, 15 ], [ 587, 811, 36, 15 ], [ 647, 811, 60, 15 ], [ 729, 811, 93, 15 ], [ 846, 811, 53, 15 ], [ 155, 846, 133, 15 ], [ 306, 846, 593, 15 ], [ 155, 880, 544, 15 ], [ 718, 880, 182, 15 ], [ 155, 914, 80, 15 ], [ 252, 914, 647, 15 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
bb89fcce2fe8bad261071756e1b44d19316d2aafd4653d144d2e7ce223b9bbca
WO2020210010A1.pdf
5
30
595
842
1,025
1,025
patents_wp
patents
3309
[ "Contract number: [", "complete", "] ", " 2019 ", "The contractor must immediately ", "notify", "the contracting authority of the suspension. The ", "notification", "must include a description of the ", "force majeure", "and state when the contractor ", "expects to resume the provision of services. ", "The contractor must ", "notify", " the contracting authority as soon as it is able to resume ", "performance ", "of the specific contract", ", unless the contracting authority has already terminated the FWC or the ", "specific contract. ", "The contracting authority may suspend the ", "implementation of the FWC", " or ", "performance of a ", "specific contract", " or any part of it: ", "The contracting authority must ", "formally notify", " the contractor of the suspension. Suspension ", "takes effect on the date of ", "formal notification", ", or at a later date if the ", "formal notification", " so ", "provides.", "The contracting authority must ", "notify", " the contractor as soon as possible whether: ", "The contractor is not entitled to compensation for suspension of any part of the FWC or a ", "specific contract. ", "The contracting authority may terminate the FWC or a specific contract in the following ", "circumstances: ", "30 ", "(c)", "if the contractor does not implement the FWC or perform the specific contract in ", "accordance with the tender specifications or ", "request for service", " or is in breach of another ", "substantial contractual obligation or repeatedly refuses to sign specific contracts. ", "Termination of three or more specific contracts in these circumstances also constitutes ", "grounds for termination of the FWC; ", "(a)", "if provision of the services under a pending specific contract has not actually started ", "within 15 days of the scheduled date and the contracting authority considers the new ", "date proposed, if any, unacceptable, taking into account Article II.11.2; ", "(b)", "if the contractor is unable, through its own fault, to obtain any permit or licence required ", "for ", "implementation of the FWC", "; ", "(a)", "it is lifting the suspension; or ", "(b)", "it intends to terminate the FWC or a specific contract under Article II.18.1(f) or (j). ", "(a)", "if the procedure for awarding the FWC or a specific contract or the ", "implementation of the ", "FWC", " proves to have been subject to ", "substantial errors", ", ", "irregularities", " or ", "fraud", ";", "(b)", "in order to verify whether the presumed ", "substantial errors", ", ", "irregularities", " or ", "fraud", " actually ", "occurred.", "II.17.1 ", "Suspension by the contracting authority ", "II.18. TERMINATION OF THE FWC ", "II.18.1 ", "Grounds for termination by the contracting authority " ]
[ [ 122, 33, 182, 14 ], [ 122, 33, 182, 14 ], [ 122, 33, 182, 14 ], [ 868, 33, 38, 14 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 84, 790, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 152, 785, 53 ], [ 122, 253, 787, 36 ], [ 122, 253, 787, 36 ], [ 122, 253, 787, 36 ], [ 122, 253, 787, 36 ], [ 122, 253, 787, 36 ], [ 122, 253, 787, 36 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 405, 785, 53 ], [ 122, 472, 671, 19 ], [ 122, 472, 671, 19 ], [ 122, 472, 671, 19 ], [ 122, 557, 785, 36 ], [ 122, 557, 785, 36 ], [ 122, 678, 789, 36 ], [ 122, 678, 789, 36 ], [ 502, 972, 25, 19 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 813, 755, 86 ], [ 153, 729, 756, 53 ], [ 153, 729, 756, 53 ], [ 153, 729, 756, 53 ], [ 153, 729, 756, 53 ], [ 153, 779, 754, 36 ], [ 153, 779, 754, 36 ], [ 153, 779, 754, 36 ], [ 153, 779, 754, 36 ], [ 153, 779, 754, 36 ], [ 153, 506, 276, 19 ], [ 153, 506, 276, 19 ], [ 153, 523, 722, 19 ], [ 153, 523, 722, 19 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 304, 786, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 122, 354, 785, 36 ], [ 163, 219, 438, 20 ], [ 163, 219, 438, 20 ], [ 183, 607, 347, 23 ], [ 163, 644, 558, 20 ], [ 163, 644, 558, 20 ] ]
[ [ 122, 33, 117, 14 ], [ 240, 33, 55, 14 ], [ 295, 33, 8, 14 ], [ 868, 33, 38, 14 ], [ 122, 84, 299, 19 ], [ 421, 85, 47, 19 ], [ 480, 84, 432, 19 ], [ 122, 101, 95, 19 ], [ 228, 101, 292, 19 ], [ 520, 101, 118, 19 ], [ 650, 101, 260, 19 ], [ 122, 118, 366, 19 ], [ 122, 152, 170, 19 ], [ 292, 152, 46, 19 ], [ 339, 152, 458, 19 ], [ 797, 152, 110, 19 ], [ 122, 169, 188, 19 ], [ 310, 169, 597, 19 ], [ 122, 185, 146, 19 ], [ 122, 253, 369, 19 ], [ 491, 253, 234, 19 ], [ 725, 253, 29, 19 ], [ 757, 253, 152, 19 ], [ 122, 270, 137, 19 ], [ 259, 270, 144, 19 ], [ 122, 405, 269, 19 ], [ 392, 405, 124, 19 ], [ 516, 405, 391, 19 ], [ 122, 422, 229, 19 ], [ 351, 422, 157, 19 ], [ 508, 422, 209, 19 ], [ 720, 422, 157, 19 ], [ 877, 422, 30, 19 ], [ 122, 439, 76, 19 ], [ 122, 472, 260, 19 ], [ 382, 473, 47, 19 ], [ 429, 472, 363, 19 ], [ 122, 557, 785, 19 ], [ 122, 574, 146, 19 ], [ 122, 678, 789, 19 ], [ 122, 695, 127, 19 ], [ 502, 972, 25, 19 ], [ 153, 813, 24, 19 ], [ 183, 813, 724, 19 ], [ 184, 829, 361, 19 ], [ 545, 830, 151, 19 ], [ 697, 829, 209, 19 ], [ 184, 846, 723, 19 ], [ 184, 863, 724, 19 ], [ 184, 880, 309, 19 ], [ 153, 729, 23, 19 ], [ 182, 729, 725, 19 ], [ 184, 745, 725, 19 ], [ 184, 762, 593, 19 ], [ 153, 779, 23, 19 ], [ 181, 779, 725, 19 ], [ 184, 796, 29, 19 ], [ 213, 796, 229, 19 ], [ 442, 796, 10, 19 ], [ 153, 506, 23, 19 ], [ 181, 506, 248, 19 ], [ 153, 523, 24, 19 ], [ 182, 523, 693, 19 ], [ 122, 304, 23, 19 ], [ 150, 304, 571, 19 ], [ 722, 304, 186, 19 ], [ 158, 321, 43, 19 ], [ 202, 320, 260, 19 ], [ 462, 321, 147, 19 ], [ 609, 320, 10, 19 ], [ 620, 321, 110, 19 ], [ 730, 320, 27, 19 ], [ 757, 321, 44, 19 ], [ 802, 320, 5, 19 ], [ 122, 354, 24, 19 ], [ 151, 354, 340, 19 ], [ 492, 355, 147, 19 ], [ 639, 354, 10, 19 ], [ 649, 355, 110, 19 ], [ 760, 354, 27, 19 ], [ 787, 355, 44, 19 ], [ 832, 354, 75, 19 ], [ 158, 371, 77, 19 ], [ 163, 219, 62, 20 ], [ 244, 219, 357, 20 ], [ 183, 607, 347, 23 ], [ 163, 644, 62, 20 ], [ 244, 644, 478, 20 ] ]
[ 5, 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, 7 ]
06a338b2d3fa686e5a3e22f219d717cf8035e5a8e8c961ca3fe59c5327a9ad7c
EN-OJ_2021_DPR_23669_Framework contract.pdf
29
56
595
841
1,025
1,025
eu_tenders
government_tenders
3310
[ "EXHIBIT 31.1 ", "RULE 13a-14(a)/15d-14(a) CERTIFICATION ", "1. ", "I", "have reviewed this Annual Report on Form 10-K of Minerals Technologies Inc.; ", "2. ", "Based on my knowledge, this report does not contain any untrue statement of a material fact or omit to state a material ", "fact necessary to make the statements made, in light of the circumstances under which such statements were made, not ", "misleading with respect to the period covered by this report; ", "3. ", "Based on my knowledge, the financial statements, and other financial information included in this report, fairly present in ", "all material respects the financial condition, results of operations and cash flows of the registrant as of, and for, the ", "periods presented in this report; ", "4. ", "The registrant's other certifying officer(s) and I are responsible for establishing and maintaining disclosure controls and ", "procedures (as defined in Exchange Act Rules 13a-15(e) and 15d-15(e)) and internal control over financial reporting (as ", "defined in Exchange Act Rules 13a-15(f) and 15d-15(f)) for the registrant and have: ", "Date: February 21, 2014 ", "/s/ ", "Robert S. Wetherbee ", "Robert S. Wetherbee ", "President and Chief Executive Officer ", "I, Robert S. Wetherbee, certify that: ", "5. ", "The registrant's other certifying officer(s) and I have disclosed, based on our most recent evaluation of internal control ", "over financial reporting, to the registrant's auditors and the audit committee of the registrant's board of directors: ", "(a)", "Designed such disclosure controls and procedures, or caused such disclosure controls and procedures to be ", "designed under our supervision, to ensure that material information relating to the registrant, including its ", "consolidated subsidiaries, is made known to us by others within those entities, particularly during the period in ", "which this report is being prepared; ", "(b)", "Designed such internal control over financial reporting, or caused such internal control over financial reporting ", "to be designed under our supervision, to provide reasonable assurance regarding the reliability of financial ", "reporting and the preparation of financial statements for external purposes in accordance with generally accepted ", "accounting principles; ", "(c)", "Evaluated the effectiveness of the registrant's disclosure controls and procedures and presented in this report ", "our conclusions about the effectiveness of the disclosure controls and procedures, as of the end of the period ", "covered by this report based on such evaluation; and", "(d)", "Disclosed in this report any change in the registrant's internal control over financial reporting that occurred ", "during the registrant's most recent fiscal quarter ", "(the registrant’s fourth fiscal quarter in the case of an annual ", "report) that has materially affected, or is reasonably likely to materially affect, the registrant's internal control over ", "financial reporting; and", "(a)", "All significant deficiencies and material weaknesses in the design or operation of internal control over financial ", "reporting which are reasonably likely to adversely affect the registrant's ability to record, process, summarize and ", "report financial information; and", "(b)", "Any fraud, whether or not material, that involves management or other employees who have a significant role ", "in the registrant's internal control over financial reporting. " ]
[ [ 859, 74, 109, 14 ], [ 376, 104, 335, 14 ], [ 120, 165, 585, 12 ], [ 120, 165, 585, 12 ], [ 120, 165, 585, 12 ], [ 120, 187, 854, 42 ], [ 120, 187, 854, 42 ], [ 120, 187, 854, 42 ], [ 120, 187, 854, 42 ], [ 120, 240, 856, 42 ], [ 120, 240, 856, 42 ], [ 120, 240, 856, 42 ], [ 120, 240, 856, 42 ], [ 120, 292, 854, 42 ], [ 120, 292, 854, 42 ], [ 120, 292, 854, 42 ], [ 120, 292, 854, 42 ], [ 180, 756, 168, 12 ], [ 427, 770, 294, 44 ], [ 427, 770, 294, 44 ], [ 427, 770, 294, 44 ], [ 427, 770, 294, 44 ], [ 120, 135, 244, 12 ], [ 120, 599, 855, 27 ], [ 120, 599, 855, 27 ], [ 120, 599, 855, 27 ], [ 197, 345, 781, 57 ], [ 197, 345, 781, 57 ], [ 197, 345, 781, 57 ], [ 197, 345, 781, 57 ], [ 197, 345, 781, 57 ], [ 197, 412, 781, 57 ], [ 197, 412, 781, 57 ], [ 197, 412, 781, 57 ], [ 197, 412, 781, 57 ], [ 197, 412, 781, 57 ], [ 197, 479, 779, 42 ], [ 197, 479, 779, 42 ], [ 197, 479, 779, 42 ], [ 197, 479, 779, 42 ], [ 197, 532, 779, 57 ], [ 197, 532, 779, 57 ], [ 197, 532, 779, 57 ], [ 197, 532, 779, 57 ], [ 197, 532, 779, 57 ], [ 197, 532, 779, 57 ], [ 197, 636, 777, 42 ], [ 197, 636, 777, 42 ], [ 197, 636, 777, 42 ], [ 197, 636, 777, 42 ], [ 197, 689, 778, 27 ], [ 197, 689, 778, 27 ], [ 197, 689, 778, 27 ] ]
[ [ 859, 74, 109, 14 ], [ 376, 104, 335, 14 ], [ 120, 165, 16, 12 ], [ 152, 165, 5, 12 ], [ 161, 165, 544, 12 ], [ 120, 187, 16, 12 ], [ 152, 187, 823, 12 ], [ 152, 202, 823, 12 ], [ 152, 217, 407, 12 ], [ 120, 240, 16, 12 ], [ 152, 240, 822, 12 ], [ 152, 255, 824, 12 ], [ 152, 270, 216, 12 ], [ 120, 292, 16, 12 ], [ 152, 292, 823, 12 ], [ 152, 307, 822, 12 ], [ 152, 322, 566, 12 ], [ 180, 756, 168, 12 ], [ 427, 770, 20, 14 ], [ 461, 770, 154, 14 ], [ 461, 787, 144, 12 ], [ 461, 801, 260, 12 ], [ 120, 135, 244, 12 ], [ 120, 599, 16, 12 ], [ 152, 599, 824, 12 ], [ 152, 614, 757, 12 ], [ 197, 345, 19, 12 ], [ 221, 345, 755, 12 ], [ 197, 360, 781, 12 ], [ 197, 374, 778, 12 ], [ 197, 389, 241, 12 ], [ 197, 412, 19, 12 ], [ 221, 412, 753, 12 ], [ 197, 427, 781, 12 ], [ 197, 442, 777, 12 ], [ 197, 457, 152, 12 ], [ 197, 479, 19, 12 ], [ 220, 479, 754, 12 ], [ 197, 494, 779, 12 ], [ 197, 509, 351, 12 ], [ 197, 532, 20, 12 ], [ 222, 532, 753, 12 ], [ 197, 547, 342, 12 ], [ 539, 545, 437, 14 ], [ 197, 561, 776, 12 ], [ 197, 576, 157, 12 ], [ 197, 636, 18, 12 ], [ 220, 636, 753, 12 ], [ 197, 651, 777, 12 ], [ 197, 666, 219, 12 ], [ 197, 689, 19, 12 ], [ 221, 689, 754, 12 ], [ 197, 704, 392, 12 ] ]
[ 5, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
1b99f0cd0e13a49914f8a5de29d36ed9eb3ece755d798a64dc59d302c56d90d2
NYSE_MTX_2013.pdf
96
102
612
792
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3311
[ "CODE OF CONDUCT", "SECTION XVII - CODE OF CONDUCT", "single violation of this Section shall also constitute the Player ", "Major Offense of Aggravated Behavior.", "vii. Coaching and Coaches", "(a)", "Players shall not receive coaching during a match (including ", "warm up) with the exception of the allowed coaching breaks ", "as defined in Section XVIII.D.3 - On-Court Coaching Requests.", "Communication of any kind, audible or visible, between a ", "Player and a coach may be construed as coaching, and the use ", "of any electronic device (excluding a WTA-approved electronic ", "device under Section VII.C.4.d - Electronic Devices or an official ", "WTA electronic device authorized for On-Court Coaching under ", "Section XVIII.D.2.f) constitutes coaching.", "Players also shall prohibit their coaches on site from: i) using ", "an audible obscenity or making obscene gestures of any kind; ", "ii) abusing any official, opponent, spectator, or other person, ", "verbally or physically; iii) engaging in conduct contrary to the ", "integrity of the game of tennis. Conduct contrary to the integrity ", "of the game of tennis shall include, but not be limited to, public ", "comments, whether or not to the media, that unreasonably ", "attack or disparage a Tournament, sponsor, player, official, or ", "the WTA.", "Responsible expressions of legitimate disagreements with ", "WTA policies are not prohibited. However, public comments that ", "one of the stated persons above knows, or should reasonably ", "know, will harm the reputation or financial best interest of a ", "Tournament, players, sponsor, official, or the WTA are expressly ", "covered by this Section.", "In circumstances that are flagrant and particularly injurious to ", "the success of the Tournament, or are singularly egregious, ", "the Supervisor/Referee shall have the authority to relocate the ", "position of a coach if there is reasonable belief that coaching is ", "occurring, or the Supervisor/Referee may order the coach to be ", "removed from the match site or Tournament site and upon his/", "her failure to comply with such order, may declare an immediate ", "default of such Player.", "(b) ", "Violations of this Section shall subject a Player to a fine up to ", "$5,000 for each violation. In addition, if such violation occurs ", "during a match, the Player shall be penalized in accordance with ", "the Point Penalty Schedule.", "283" ]
[ [ 352, 34, 320, 36 ], [ 352, 34, 320, 36 ], [ 279, 82, 660, 36 ], [ 279, 82, 660, 36 ], [ 186, 138, 281, 18 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 229, 175, 715, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 279, 362, 663, 167 ], [ 267, 549, 679, 111 ], [ 267, 549, 679, 111 ], [ 267, 549, 679, 111 ], [ 267, 549, 679, 111 ], [ 267, 549, 679, 111 ], [ 267, 549, 679, 111 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 279, 773, 663, 149 ], [ 227, 680, 712, 74 ], [ 227, 680, 712, 74 ], [ 227, 680, 712, 74 ], [ 227, 680, 712, 74 ], [ 227, 680, 712, 74 ], [ 471, 960, 35, 17 ] ]
[ [ 399, 34, 226, 21 ], [ 352, 53, 320, 16 ], [ 279, 82, 660, 18 ], [ 279, 100, 397, 18 ], [ 186, 138, 281, 18 ], [ 229, 175, 28, 18 ], [ 263, 175, 678, 18 ], [ 279, 194, 661, 18 ], [ 279, 212, 641, 18 ], [ 279, 231, 664, 18 ], [ 279, 250, 658, 18 ], [ 279, 269, 659, 18 ], [ 279, 287, 659, 18 ], [ 279, 306, 658, 18 ], [ 279, 325, 410, 18 ], [ 279, 362, 660, 18 ], [ 279, 381, 660, 18 ], [ 279, 399, 662, 18 ], [ 279, 418, 660, 18 ], [ 279, 437, 656, 18 ], [ 279, 455, 657, 18 ], [ 279, 474, 663, 18 ], [ 279, 493, 661, 18 ], [ 279, 512, 92, 18 ], [ 267, 549, 679, 18 ], [ 279, 568, 655, 18 ], [ 279, 586, 660, 18 ], [ 279, 605, 661, 18 ], [ 279, 624, 658, 18 ], [ 279, 642, 244, 18 ], [ 279, 773, 660, 18 ], [ 279, 792, 663, 18 ], [ 279, 811, 659, 18 ], [ 279, 829, 658, 18 ], [ 279, 848, 658, 18 ], [ 279, 867, 652, 18 ], [ 279, 886, 656, 18 ], [ 279, 904, 226, 18 ], [ 227, 680, 36, 18 ], [ 279, 680, 660, 18 ], [ 279, 699, 660, 18 ], [ 279, 717, 657, 18 ], [ 279, 736, 281, 18 ], [ 471, 960, 35, 17 ] ]
[ 5, 5, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 4 ]
e3bb3ca3a1a9e76f1e995c87c09d6e718e2791d124da99c9b3a74c2a2a68c22b
2021Rulebook.pdf
285
495
396
603
1,025
1,025
manuals
manuals
3312
[ "command-line, 138, 414", "list of, 91", "mysqld_multi, 391", "mysqld_safe, 382", "torn page, 3172, 6193", "TotalSendBufferMemory", "API and SQL nodes, 4156", "data nodes, 4147", "management nodes, 4067", "Touches()", "removed features, 45", "Townsend Alliance Key Manager", "keyring_okv keyring plugin, 1415", "TO_BASE64(), 2182", "TO_DAYS(), 2165", "TO_SECONDS(), 2166", "TPS, 6193", "TP_THREAD_GROUP_STATE", "INFORMATION_SCHEMA table, 4886", "tp_thread_group_state table", "performance_schema, 5037", "TP_THREAD_GROUP_STATS", "INFORMATION_SCHEMA table, 4887", "tp_thread_group_stats table", "performance_schema, 5039", "TP_THREAD_STATE", "INFORMATION_SCHEMA table, 4887", "tp_thread_state table", "performance_schema, 5041", "trace DBI method, 1156", "trace files", "ndbmtd, 4254", "trace files (NDB Cluster), 4248", "TRADITIONAL SQL mode, 971, 977", "trailing spaces", "CHAR, 2036, 2039", "ENUM, 2045", "in comparisons, 2039", "SET, 2046", "VARCHAR, 2037, 2039", "trailing spaces in comparisons, 1957", "transaction, 6193", "transaction access mode, 2732", "transaction consistency guarantees", "understanding, 3729", "transaction ID, 6193", "transaction isolation level, 2732", "NDB Cluster, 3969", "READ COMMITTED, 3086", "READ UNCOMMITTED, 3088", "REPEATABLE READ, 3086", "SERIALIZABLE, 3088", "transaction state", "change tracking, 1010", "5600" ]
[ [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 94, 305, 835 ], [ 60, 964, 37, 11 ] ]
[ [ 80, 94, 179, 11 ], [ 80, 110, 67, 11 ], [ 80, 126, 134, 11 ], [ 80, 141, 131, 11 ], [ 60, 157, 163, 11 ], [ 60, 172, 181, 11 ], [ 80, 188, 194, 11 ], [ 80, 203, 129, 11 ], [ 80, 219, 194, 11 ], [ 60, 234, 75, 11 ], [ 80, 250, 158, 11 ], [ 60, 265, 244, 11 ], [ 80, 281, 243, 11 ], [ 60, 296, 153, 11 ], [ 60, 312, 135, 11 ], [ 60, 327, 173, 11 ], [ 60, 343, 79, 11 ], [ 60, 358, 233, 11 ], [ 80, 374, 285, 11 ], [ 60, 390, 209, 11 ], [ 80, 405, 208, 11 ], [ 60, 421, 233, 11 ], [ 80, 436, 285, 11 ], [ 60, 452, 208, 11 ], [ 80, 467, 208, 11 ], [ 60, 483, 162, 11 ], [ 80, 498, 285, 11 ], [ 60, 514, 157, 11 ], [ 80, 529, 208, 11 ], [ 60, 545, 176, 11 ], [ 60, 560, 71, 11 ], [ 80, 576, 102, 11 ], [ 60, 591, 227, 11 ], [ 60, 607, 269, 11 ], [ 60, 622, 107, 11 ], [ 80, 638, 140, 11 ], [ 80, 654, 95, 11 ], [ 80, 669, 159, 11 ], [ 80, 685, 79, 11 ], [ 80, 700, 175, 11 ], [ 60, 716, 270, 11 ], [ 60, 731, 128, 11 ], [ 60, 747, 231, 11 ], [ 60, 762, 262, 11 ], [ 80, 778, 152, 11 ], [ 60, 793, 149, 11 ], [ 60, 809, 233, 11 ], [ 80, 824, 139, 11 ], [ 80, 840, 199, 11 ], [ 80, 855, 223, 11 ], [ 80, 871, 207, 11 ], [ 80, 887, 163, 11 ], [ 60, 902, 122, 11 ], [ 80, 918, 164, 11 ], [ 60, 964, 37, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
eb1f408844ec6c2d1d20c88199afcade5c760762c1dbea131f4967bde18f6bf1
refman-8.0-en.pdf
5,629
6,228
612
792
1,025
1,025
manuals
manuals
3313
[ "FIG 4", "−", "3", "−", "6", "Effects of a Geographical Constraint on a Runway’s Declared Distances", "8/15/19", "AIM ", "Airport Operations", "4", "−", "3", "−", "12", "NOTE", "−", "A runway’s RSA begins a set distance prior to the threshold and will extend a set distance beyond the end of the runway", "depending on the runway’s design criteria. If these required lengths cannot be achieved, the ASDA and/or LDA will be", "reduced as necessary to obtain the required lengths to the extent practicable." ]
[ [ 256, 92, 524, 27 ], [ 256, 92, 524, 27 ], [ 256, 92, 524, 27 ], [ 256, 92, 524, 27 ], [ 256, 92, 524, 27 ], [ 256, 92, 524, 27 ], [ 864, 39, 51, 15 ], [ 108, 39, 36, 15 ], [ 784, 969, 126, 15 ], [ 108, 971, 50, 15 ], [ 108, 971, 50, 15 ], [ 108, 971, 50, 15 ], [ 108, 971, 50, 15 ], [ 108, 971, 50, 15 ], [ 108, 715, 54, 15 ], [ 108, 715, 54, 15 ], [ 108, 734, 821, 41 ], [ 108, 734, 821, 41 ], [ 108, 734, 821, 41 ] ]
[ [ 482, 92, 32, 12 ], [ 514, 92, 8, 12 ], [ 522, 92, 6, 12 ], [ 528, 92, 8, 12 ], [ 536, 92, 6, 12 ], [ 256, 108, 524, 11 ], [ 864, 39, 51, 15 ], [ 108, 39, 36, 15 ], [ 784, 969, 126, 15 ], [ 108, 971, 8, 15 ], [ 116, 971, 9, 15 ], [ 125, 971, 8, 15 ], [ 133, 971, 9, 15 ], [ 142, 971, 15, 15 ], [ 108, 715, 44, 15 ], [ 152, 715, 10, 15 ], [ 108, 734, 821, 11 ], [ 108, 749, 821, 11 ], [ 108, 764, 513, 11 ] ]
[ 0, 0, 0, 0, 0, 0, 5, 5, 4, 4, 4, 4, 4, 4, 7, 7, 9, 9, 9 ]
dd0f8e181fe8c6d95e9cc24543f5c6af6a4b6ce7a4874e763b069f70bed3b42a
aim_basic_w_chg_1_2_3_dtd_12-31-20.pdf
224
775
612
792
1,025
1,025
faa_regulations
laws_and_regulations
3314
[ "US 10,054,853 B2 ", "82 ", "81 ", "-continued ", "-continued ", "(++) ", "H ", "’j==o ", "O:f", "O ", "CF", "3 ", "OH ", "C ", "(++) ", "H ", "’j==o ", ",,,..._ ", "O\"l---t<CF3 ", "0 ", "F3~ ", "’OH ", "(++) ", "H ", "’j==o ", "O ", "CF3 ", "OH ", "C ", "(++) ", "H ", "’j==o ", "(++) ", "H ", "’j==o ", "0 ", "0 ", "OH ", "OH ", "(++) ", "H ", "’j==o ", "0 " ]
[ [ 429, 73, 157, 13 ], [ 691, 92, 22, 13 ], [ 300, 92, 21, 13 ], [ 670, 112, 68, 9 ], [ 279, 112, 68, 9 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 549, 125, 278, 829 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ], [ 157, 122, 309, 835 ] ]
[ [ 429, 73, 157, 13 ], [ 691, 92, 22, 13 ], [ 300, 92, 21, 13 ], [ 670, 112, 68, 9 ], [ 279, 112, 68, 9 ], [ 550, 520, 94, 59 ], [ 561, 578, 20, 14 ], [ 608, 573, 47, 22 ], [ 573, 609, 86, 47 ], [ 602, 602, 10, 7 ], [ 661, 602, 13, 7 ], [ 676, 605, 8, 7 ], [ 661, 633, 20, 7 ], [ 635, 646, 9, 7 ], [ 693, 367, 94, 59 ], [ 704, 425, 20, 14 ], [ 750, 419, 47, 22 ], [ 718, 447, 18, 20 ], [ 744, 447, 80, 20 ], [ 704, 463, 40, 34 ], [ 767, 485, 22, 7 ], [ 800, 485, 25, 7 ], [ 693, 520, 94, 59 ], [ 704, 578, 20, 14 ], [ 750, 573, 47, 22 ], [ 744, 603, 10, 7 ], [ 804, 603, 20, 7 ], [ 803, 633, 20, 7 ], [ 778, 646, 9, 7 ], [ 159, 404, 94, 59 ], [ 170, 462, 20, 14 ], [ 217, 456, 47, 22 ], [ 314, 404, 94, 59 ], [ 325, 462, 20, 14 ], [ 371, 456, 48, 22 ], [ 211, 484, 8, 7 ], [ 366, 484, 8, 7 ], [ 257, 587, 20, 7 ], [ 380, 607, 20, 7 ], [ 188, 786, 94, 59 ], [ 199, 844, 20, 14 ], [ 245, 839, 47, 22 ], [ 239, 866, 8, 7 ] ]
[ 5, 5, 5, 9, 9, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 ]
f8520bffe0dbe2e9cd8413c2936cd11a9630e9a6ec48fe433fe5969cf59a7085
10054853_AdobeOCR.pdf
43
95
612
792
1,025
1,025
patents_superacid_pags
patents
3315
[ "Authentication Plugins", "mysql> ", "SELECT PLUGIN_NAME, PLUGIN_STATUS", "FROM INFORMATION_SCHEMA.PLUGINS", "WHERE PLUGIN_NAME LIKE ’%windows%’;", "+------------------------+---------------+", "| PLUGIN_NAME", "| PLUGIN_STATUS |", "+------------------------+---------------+", "| authentication_windows | ACTIVE", "|", "+------------------------+---------------+", "CREATE USER sql_admin", "IDENTIFIED WITH authentication_windows", "AS ’Rafal, Tasha, Administrators, \"Power Users\"’;", "If the plugin fails to initialize, check the server error log for diagnostic messages.", "To associate MySQL accounts with the Windows authentication plugin, see Using", "Windows Pluggable Authentication. Additional plugin control is provided by the", "authentication_windows_use_principal_name", " and ", "authentication_windows_log_level", "system variables. See Section 5.1.8, “Server System Variables”", ".", "The method used to uninstall the Windows authentication plugin depends on how you installed it:", "UNINSTALL PLUGIN authentication_windows;", "In addition, remove any startup options that set Windows plugin-related system variables.", "The Windows authentication plugin supports the use of MySQL accounts such that users who have logged", "in to Windows can connect to the MySQL server without having to specify an additional password. It is", "assumed that the server is running with the server-side plugin enabled, as described in Installing Windows", "Pluggable Authentication. Once the DBA has enabled the server-side plugin and set up accounts to use it,", "clients can connect using those accounts with no other setup required on their part.", "To refer to the Windows authentication plugin in the ", "IDENTIFIED WITH", " clause of a ", "CREATE USER", "statement, use the name ", "authentication_windows", ". Suppose that the Windows users ", "Rafal", " and", "Tasha", " should be permitted to connect to MySQL, as well as any users in the ", "Administrators", " or ", "Power", "Users", " group. To set this up, create a MySQL account named ", "sql_admin", " that uses the Windows plugin", "for authentication:", "The plugin name is ", "authentication_windows", ". The string following the ", "AS", " keyword is the", "authentication string. It specifies that the Windows users named ", "Rafal", " or ", "Tasha", " are permitted", "to authenticate to the server as the MySQL user ", "sql_admin", ", as are any Windows users in the", "Administrators", " or ", "Power Users", " group. The latter group name contains a space, so it must be quoted", "with double quote characters.", "After you create the ", "sql_admin", " account, a user who has logged in to Windows can attempt to connect to", "the server using that account:", "C:\\> ", "mysql --user=sql_admin", "1330", "Using Windows Pluggable Authentication", "•If you installed the plugin at server startup using a ", "--plugin-load-add", " option, restart the server", "without the option.", "•If you installed the plugin at runtime using an ", "INSTALL PLUGIN", " statement, it remains installed across", "server restarts. To uninstall it, use ", "UNINSTALL PLUGIN", ":", "Uninstalling Windows Pluggable Authentication" ]
[ [ 414, 48, 165, 11 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 96, 337, 95 ], [ 140, 733, 409, 32 ], [ 140, 733, 409, 32 ], [ 140, 733, 409, 32 ], [ 140, 210, 592, 11 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 240, 770, 58 ], [ 140, 347, 716, 11 ], [ 157, 463, 321, 8 ], [ 140, 490, 660, 11 ], [ 140, 551, 788, 74 ], [ 140, 551, 788, 74 ], [ 140, 551, 788, 74 ], [ 140, 551, 788, 74 ], [ 140, 551, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 643, 788, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 785, 787, 74 ], [ 140, 877, 784, 27 ], [ 140, 877, 784, 27 ], [ 140, 877, 784, 27 ], [ 140, 877, 784, 27 ], [ 140, 921, 217, 8 ], [ 140, 921, 217, 8 ], [ 60, 964, 37, 11 ], [ 60, 520, 364, 13 ], [ 140, 375, 747, 27 ], [ 140, 375, 747, 27 ], [ 140, 375, 747, 27 ], [ 140, 375, 747, 27 ], [ 140, 419, 773, 27 ], [ 140, 419, 773, 27 ], [ 140, 419, 773, 27 ], [ 140, 419, 773, 27 ], [ 140, 419, 773, 27 ], [ 140, 419, 773, 27 ], [ 60, 316, 418, 13 ] ]
[ [ 414, 48, 165, 11 ], [ 140, 96, 56, 8 ], [ 196, 96, 265, 8 ], [ 196, 109, 249, 8 ], [ 196, 121, 281, 8 ], [ 140, 133, 337, 8 ], [ 140, 146, 104, 8 ], [ 341, 146, 136, 8 ], [ 140, 158, 337, 8 ], [ 140, 171, 265, 8 ], [ 470, 171, 8, 8 ], [ 140, 183, 337, 8 ], [ 140, 733, 168, 8 ], [ 156, 745, 305, 8 ], [ 156, 758, 394, 8 ], [ 140, 210, 592, 11 ], [ 140, 240, 604, 11 ], [ 140, 255, 580, 11 ], [ 140, 272, 412, 10 ], [ 552, 271, 37, 11 ], [ 589, 272, 321, 10 ], [ 140, 286, 498, 11 ], [ 611, 286, 4, 11 ], [ 140, 347, 716, 11 ], [ 157, 463, 321, 8 ], [ 140, 490, 660, 11 ], [ 140, 551, 788, 11 ], [ 140, 566, 755, 11 ], [ 140, 582, 785, 11 ], [ 140, 598, 784, 11 ], [ 140, 613, 615, 11 ], [ 140, 643, 386, 11 ], [ 527, 644, 150, 10 ], [ 677, 643, 90, 11 ], [ 768, 644, 110, 10 ], [ 140, 658, 188, 11 ], [ 329, 659, 221, 10 ], [ 550, 658, 258, 11 ], [ 809, 659, 50, 10 ], [ 859, 658, 32, 11 ], [ 140, 675, 50, 10 ], [ 190, 674, 523, 11 ], [ 714, 675, 140, 10 ], [ 854, 674, 24, 11 ], [ 878, 675, 50, 10 ], [ 140, 690, 50, 10 ], [ 190, 689, 411, 11 ], [ 602, 690, 90, 10 ], [ 692, 689, 222, 11 ], [ 140, 705, 133, 11 ], [ 140, 785, 146, 11 ], [ 286, 786, 221, 10 ], [ 507, 785, 186, 11 ], [ 694, 786, 20, 10 ], [ 714, 785, 111, 11 ], [ 140, 801, 477, 11 ], [ 618, 802, 50, 10 ], [ 668, 801, 24, 11 ], [ 692, 802, 50, 10 ], [ 742, 801, 103, 11 ], [ 140, 816, 360, 11 ], [ 500, 817, 90, 10 ], [ 591, 816, 251, 11 ], [ 140, 833, 140, 10 ], [ 281, 832, 24, 11 ], [ 305, 833, 110, 10 ], [ 416, 832, 512, 11 ], [ 140, 847, 218, 11 ], [ 140, 877, 150, 11 ], [ 291, 878, 90, 10 ], [ 381, 877, 542, 11 ], [ 140, 892, 219, 11 ], [ 140, 921, 40, 8 ], [ 180, 921, 176, 8 ], [ 60, 964, 37, 11 ], [ 60, 520, 364, 13 ], [ 140, 375, 390, 11 ], [ 530, 376, 170, 10 ], [ 701, 375, 186, 11 ], [ 157, 391, 135, 11 ], [ 140, 419, 352, 11 ], [ 493, 420, 140, 10 ], [ 634, 419, 280, 11 ], [ 157, 435, 255, 11 ], [ 413, 436, 160, 10 ], [ 574, 435, 4, 11 ], [ 60, 316, 418, 13 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7 ]
ffb80203326399ddf57981ca44c8f79973f3e834a45b1f680e1737f36ff4e6f6
refman-8.0-en.pdf
1,359
6,228
612
792
1,025
1,025
manuals
manuals
3316
[ "FIG. 6: Top: Effect on the eigenfrequencies of an", "a", "= 7", ".", "5", "mm water droplet of adding a quadrupole", "harmonic", "c", "′", "2", "to the shape of the magnetogravitational potential well (", "c", "′", "0", "= 0", ".", "36", "ms", "−", "$^{2}$, all other", "c", "′", "j", "= 0). The thick black lines show the eigenfrequencies (squared) of the", "m", "= 0 modes (i.e. the", "eigenvalues", "ω", "2", "of Eqn. 19) corresponding to", "l", "= 1", "−", "5; the eigenvalues of Eqn. 19 were computed", "using MATLAB. (Note that we have plotted", "ω", "$^{2}$−", "σ", "2", "T", "for clarity). The thin lines show the first-order", "approximation, Eqn. 20, departing from the numerically-computed frequencies at", "|", "c", "′", "2", "|", "≳", "1.", "Long-", "dash, medium-dash, short-dash, dot-dash and dotted lines show the frequencies of the", "|", "m", "|", "= 1", "−", "5", "modes, respectively (the treatment of the", "m", "= 0 modes is summarized in the Appendix). Bottom:", "Effect on the eigenfrequencies of an", "a", "= 7", ".", "5", "mm water droplet of adding a harmonic", "c", "′", "3", "to the shape", "of the well (", "c", "′", "0", "= 0", ".", "36", "ms", "−", "$^{2}$, all other", "c", "′", "j", "= 0).", "19", "−3", "−2", "−1", "0", "1", "2", "3", "−50", "0", "50", "100", "150", "200", "250", "300", "1", "2", "3", "4", "5", "c", "′$_{2}$", "(ms", "−", "$^{2}$)", "ω", "2", "−", "σ", "2", "T", "(rad", "2", "s", "−", "2", ")", "−3", "−2", "−1", "0", "1", "2", "3", "−50", "0", "50", "100", "150", "200", "250", "300", "1", "2", "3", "4", "5", "c", "′$_{3}$", "(ms", "−", "$^{2}$)", "ω", "2", "−", "σ", "2", "T", "(rad", "2", "s", "−", "2", ")", "a", "= 7", ".", "5", "mm,", "c", "′$_{0}$", "= 0", ".", "36ms", "−", "2" ]
[ [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 120, 584, 780, 268 ], [ 491, 979, 19, 13 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ], [ 300, 94, 418, 461 ] ]
[ [ 120, 584, 386, 14 ], [ 511, 584, 9, 14 ], [ 526, 584, 28, 14 ], [ 554, 584, 5, 14 ], [ 559, 584, 9, 14 ], [ 574, 584, 327, 14 ], [ 120, 612, 74, 14 ], [ 202, 612, 7, 14 ], [ 210, 610, 3, 9 ], [ 210, 619, 7, 9 ], [ 226, 612, 468, 14 ], [ 695, 612, 7, 14 ], [ 703, 610, 3, 9 ], [ 703, 619, 7, 9 ], [ 719, 612, 31, 14 ], [ 750, 612, 5, 14 ], [ 755, 612, 17, 14 ], [ 778, 612, 21, 14 ], [ 800, 610, 11, 9 ], [ 811, 612, 90, 14 ], [ 120, 640, 7, 14 ], [ 128, 638, 3, 9 ], [ 128, 648, 5, 9 ], [ 142, 640, 570, 14 ], [ 719, 640, 16, 14 ], [ 741, 640, 159, 14 ], [ 120, 668, 88, 14 ], [ 215, 668, 11, 14 ], [ 227, 666, 7, 9 ], [ 241, 668, 231, 14 ], [ 479, 668, 5, 14 ], [ 491, 668, 29, 14 ], [ 524, 668, 14, 24 ], [ 543, 668, 358, 14 ], [ 120, 696, 348, 14 ], [ 473, 696, 11, 14 ], [ 485, 696, 23, 24 ], [ 510, 696, 10, 14 ], [ 521, 695, 7, 9 ], [ 520, 704, 8, 9 ], [ 536, 696, 364, 14 ], [ 120, 724, 652, 14 ], [ 780, 724, 5, 24 ], [ 785, 724, 7, 14 ], [ 793, 722, 3, 9 ], [ 793, 731, 7, 9 ], [ 800, 724, 5, 24 ], [ 811, 725, 14, 12 ], [ 831, 724, 15, 14 ], [ 852, 724, 49, 14 ], [ 120, 752, 684, 14 ], [ 811, 752, 5, 24 ], [ 816, 752, 16, 14 ], [ 832, 752, 5, 24 ], [ 842, 752, 28, 14 ], [ 874, 752, 14, 24 ], [ 892, 752, 9, 14 ], [ 120, 780, 328, 14 ], [ 455, 780, 16, 14 ], [ 476, 780, 425, 14 ], [ 120, 808, 278, 14 ], [ 403, 808, 9, 14 ], [ 418, 808, 28, 14 ], [ 446, 808, 5, 14 ], [ 452, 808, 9, 14 ], [ 466, 808, 312, 14 ], [ 783, 808, 7, 14 ], [ 791, 806, 3, 9 ], [ 791, 816, 7, 9 ], [ 804, 808, 96, 14 ], [ 120, 836, 96, 14 ], [ 217, 836, 7, 14 ], [ 224, 834, 3, 9 ], [ 224, 844, 7, 9 ], [ 237, 836, 28, 14 ], [ 266, 836, 5, 14 ], [ 271, 836, 17, 14 ], [ 294, 836, 21, 14 ], [ 316, 834, 11, 9 ], [ 327, 836, 86, 14 ], [ 419, 836, 7, 14 ], [ 427, 834, 3, 9 ], [ 427, 844, 5, 9 ], [ 439, 836, 40, 14 ], [ 491, 979, 19, 13 ], [ 346, 298, 13, 7 ], [ 404, 298, 13, 7 ], [ 463, 298, 13, 7 ], [ 529, 298, 6, 7 ], [ 588, 298, 6, 7 ], [ 647, 298, 6, 7 ], [ 706, 298, 6, 7 ], [ 329, 287, 20, 7 ], [ 343, 260, 6, 7 ], [ 336, 232, 13, 7 ], [ 330, 205, 19, 7 ], [ 330, 178, 19, 7 ], [ 330, 150, 19, 7 ], [ 330, 123, 19, 7 ], [ 330, 95, 19, 7 ], [ 531, 224, 6, 7 ], [ 531, 198, 6, 7 ], [ 531, 172, 6, 7 ], [ 531, 146, 6, 7 ], [ 531, 120, 6, 7 ], [ 503, 309, 5, 10 ], [ 509, 307, 5, 12 ], [ 519, 309, 20, 10 ], [ 540, 307, 8, 12 ], [ 548, 309, 10, 10 ], [ 306, 229, 13, 6 ], [ 305, 225, 9, 4 ], [ 306, 214, 22, 7 ], [ 306, 206, 13, 5 ], [ 305, 202, 9, 4 ], [ 313, 202, 9, 4 ], [ 306, 178, 13, 18 ], [ 305, 174, 9, 4 ], [ 306, 170, 13, 3 ], [ 304, 164, 15, 6 ], [ 305, 160, 9, 4 ], [ 306, 155, 13, 3 ], [ 346, 532, 13, 7 ], [ 404, 532, 13, 7 ], [ 463, 532, 13, 7 ], [ 529, 532, 6, 7 ], [ 588, 532, 6, 7 ], [ 647, 532, 6, 7 ], [ 706, 532, 6, 7 ], [ 329, 522, 20, 7 ], [ 343, 494, 6, 7 ], [ 336, 467, 13, 7 ], [ 330, 439, 19, 7 ], [ 330, 412, 19, 7 ], [ 330, 385, 19, 7 ], [ 330, 357, 19, 7 ], [ 330, 330, 19, 7 ], [ 531, 459, 6, 7 ], [ 531, 433, 6, 7 ], [ 531, 407, 6, 7 ], [ 531, 381, 6, 7 ], [ 531, 355, 6, 7 ], [ 503, 543, 5, 10 ], [ 509, 541, 5, 12 ], [ 519, 543, 20, 10 ], [ 540, 541, 8, 12 ], [ 548, 543, 10, 10 ], [ 306, 465, 13, 6 ], [ 304, 460, 9, 4 ], [ 305, 450, 22, 7 ], [ 306, 442, 13, 5 ], [ 304, 438, 9, 4 ], [ 312, 437, 9, 4 ], [ 306, 414, 13, 18 ], [ 304, 410, 9, 4 ], [ 306, 405, 13, 3 ], [ 303, 399, 15, 6 ], [ 304, 395, 9, 4 ], [ 306, 391, 13, 3 ], [ 474, 509, 6, 10 ], [ 484, 509, 19, 10 ], [ 504, 509, 3, 10 ], [ 507, 509, 6, 10 ], [ 517, 509, 25, 10 ], [ 547, 509, 5, 10 ], [ 553, 508, 5, 12 ], [ 562, 509, 19, 10 ], [ 582, 509, 3, 10 ], [ 585, 509, 28, 10 ], [ 614, 508, 8, 12 ], [ 622, 508, 5, 7 ] ]
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 4, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 ]
52e9107c5850ab1def13862b87db3c7626307c89698c1ff6afbcd0fb9f28a034
1001.3433.pdf
18
19
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3317
[ "Smart card readers from FC 0885 or FC 0891 can be carried forward. Smart cards can be ", "used on TKE 9.0 with these readers. Access to and use of confidential data on the smart card ", "are protected by a user-defined PIN. Up to 990 other smart cards can be ordered for backup. ", "(The extra smart card feature code is FC 0892.) When one feature code is ordered, 10 smart ", "cards are included. The order increment is 1 - 99 (10 - 990 blank smart cards).", "If smart cards with applets that are not supported by the new smart card reader are reused, ", "new smart cards on TKE 8.1 or later must be created and the content from the old smart ", "cards to the new smart cards must be copied. The new smart cards can be created and ", "copied on a TKE 8.1 system. If the copies are done on TKE 9.0, the source smart card must ", "be placed in an older smart card reader from feature code 0885 or 0891.", "A new smart card for the Trusted Key Entry (TKE) allows stronger Elliptic Curve Cryptography ", "(ECC) levels. More TKE Smart Cards (FC 0900, packs of 10, FIPS certified blanks) require ", "TKE 9.1 LIC or up.", "The new TKE 9.2 LIC (FC 0881) is originally shipped with a new z15 server. The following ", "TKE workstations can be ordered with a new z15:", "Note:", " Several options for ordering the TKE with or without ordering Keyboard, Mouse, and ", "Display are available. Ask your IBM Representative for more information about which ", "option is the best option for you.", "The TKE 9.2 LIC requires the 4768 crypto adapter. The TKE 8.x and TKE 7.3 workstations ", "can be upgraded to the TKE 9.2 tower workstation by purchasing a 4768 crypto adapter. ", "The Omnikey Cardman 3821 smart card readers can be carried forward to any TKE 9.2 ", "workstation. Smart cards 45D3398, 74Y0551, and 00JA710 can be used on TKE 9.2.", "When performing a MES upgrade from TKE 7.3, TKE 8.0, or TKE 8.1 to a TKE 9.2 ", "installation, the following steps must be completed:", "If you are migrating your configuration with Crypto Express5S and TKE Release 8.x to a z15, ", "you do not need to upgrade the TKE LIC.", "Note:", " A workstation that was upgraded to TKE V8.x includes the 4767 cryptographic ", "adapter that is required to manage Crypto Express5S; however, it cannot be used to ", "manage the Crypto Express7S or Crypto Express6S.", "If your z15 includes Crypto Express7S or Crypto Express6S, you must upgrade to TKE ", "V9.2, which requires the 4768 cryptographic adapter.", "TKE upgrade considerations", "6.6.3", "TKE hardware support and migration information", "GLYPH<SM590000>", "TKE 9.2 tower workstation (FC 0088)", "GLYPH<SM590000>", "TKE 9.2 rack-mounted workstation (FC 0087)", "1.", "Save Upgrade Data on an old TKE to USB memory to save client data.", "2.", "Replace the 4767 crypto adapter with the 4768 crypto adapter. ", "3.", "Upgrade the firmware to TKE 9.2. ", "4.", "Install the Frame Roll to apply Save Upgrade Data (client data) to the TKE 9.2 system.", "5.", "Run the TKE Workstation Setup wizard.", "248 ", "IBM z15 (8561) Technical Guide" ]
[ [ 229, 92, 687, 74 ], [ 229, 92, 687, 74 ], [ 229, 92, 687, 74 ], [ 229, 92, 687, 74 ], [ 229, 92, 687, 74 ], [ 229, 183, 684, 74 ], [ 229, 183, 684, 74 ], [ 229, 183, 684, 74 ], [ 229, 183, 684, 74 ], [ 229, 183, 684, 74 ], [ 229, 273, 687, 42 ], [ 229, 273, 687, 42 ], [ 229, 273, 687, 42 ], [ 229, 377, 669, 27 ], [ 229, 377, 669, 27 ], [ 239, 460, 667, 42 ], [ 239, 460, 667, 42 ], [ 239, 460, 667, 42 ], [ 239, 460, 667, 42 ], [ 229, 528, 673, 27 ], [ 229, 528, 673, 27 ], [ 229, 572, 651, 27 ], [ 229, 572, 651, 27 ], [ 229, 616, 613, 27 ], [ 229, 616, 613, 27 ], [ 229, 769, 687, 27 ], [ 229, 769, 687, 27 ], [ 239, 821, 630, 42 ], [ 239, 821, 630, 42 ], [ 239, 821, 630, 42 ], [ 239, 821, 630, 42 ], [ 239, 880, 646, 27 ], [ 239, 880, 646, 27 ], [ 229, 749, 273, 14 ], [ 108, 343, 569, 15 ], [ 108, 343, 569, 15 ], [ 229, 414, 299, 11 ], [ 229, 414, 299, 11 ], [ 229, 430, 360, 11 ], [ 229, 430, 360, 11 ], [ 229, 654, 548, 11 ], [ 229, 654, 548, 11 ], [ 229, 669, 492, 11 ], [ 229, 669, 492, 11 ], [ 229, 685, 278, 11 ], [ 229, 685, 278, 11 ], [ 229, 700, 663, 11 ], [ 229, 700, 663, 11 ], [ 229, 716, 318, 11 ], [ 229, 716, 318, 11 ], [ 108, 976, 281, 11 ], [ 108, 976, 281, 11 ] ]
[ [ 229, 92, 668, 11 ], [ 229, 108, 687, 11 ], [ 229, 123, 687, 11 ], [ 229, 139, 687, 11 ], [ 229, 154, 579, 11 ], [ 229, 183, 679, 11 ], [ 229, 198, 656, 11 ], [ 229, 214, 651, 11 ], [ 229, 229, 684, 11 ], [ 229, 245, 536, 11 ], [ 229, 273, 687, 11 ], [ 229, 289, 676, 11 ], [ 229, 304, 138, 11 ], [ 229, 377, 669, 11 ], [ 229, 392, 367, 11 ], [ 239, 460, 42, 11 ], [ 281, 460, 624, 11 ], [ 239, 475, 633, 11 ], [ 239, 491, 237, 11 ], [ 229, 528, 673, 11 ], [ 229, 544, 657, 11 ], [ 229, 572, 651, 11 ], [ 229, 588, 630, 11 ], [ 229, 616, 613, 11 ], [ 229, 632, 376, 11 ], [ 229, 769, 687, 11 ], [ 229, 784, 305, 11 ], [ 239, 821, 42, 11 ], [ 281, 821, 587, 11 ], [ 239, 836, 628, 11 ], [ 239, 852, 391, 11 ], [ 239, 880, 646, 11 ], [ 239, 896, 392, 11 ], [ 229, 749, 273, 14 ], [ 108, 343, 48, 15 ], [ 163, 343, 514, 15 ], [ 229, 414, 8, 11 ], [ 253, 414, 275, 11 ], [ 229, 430, 8, 11 ], [ 253, 430, 336, 11 ], [ 229, 654, 14, 11 ], [ 247, 654, 530, 11 ], [ 229, 669, 14, 11 ], [ 247, 669, 473, 11 ], [ 229, 685, 14, 11 ], [ 248, 685, 259, 11 ], [ 229, 700, 14, 11 ], [ 247, 700, 644, 11 ], [ 229, 716, 14, 11 ], [ 248, 716, 299, 11 ], [ 108, 976, 32, 11 ], [ 165, 977, 224, 10 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4 ]
45480e9d0bc42daf579efd2069f5e5fb6ee2ba493105161c46b34fc05c4d0e81
sg248851.pdf
267
548
612
792
1,025
1,025
redbooks
manuals
3318
[ "Appendix: Simulation comparing the power of the omnibus F-test to", "I", "c", "In this appendix, we compare the power of the omnibus F-test to the power of our version", "method to detect departures from Fisher’s sharp null hypothesis under varying degrees", "of “versioning.” The results can be found in Table 2.", "When the degree of versioning is", "modest, the version method is more powerful than the F-test.", "Let there be", "I", "= 100 matched sets, with", "m$_{i}$", "= 1 treated and", "n$_{i}$", "−", "m$_{i}$", "= 4 controls in", "each set. The design is balanced over versions, i.e., there are two controls of each version", "in each matched set. In each set we generate outcomes as follows:", "Y$_{ij}$", "=", "τ", "+", "X$_{i}$", "+", "ϵ$_{ij}$", "if the", "j", "-th subject in set", "i", "receives treatment,", "Y$_{ij}$", "=", "X$_{i}$", "+", "ϵ$_{ij}$", "if the", "j", "-th subject receives control", "version", "b", ", and", "Y$_{ij}$", "=", "δ", "+", "X$_{i}$", "+", "ϵ$_{ij}$", "if the", "j", "-th subject receives control version. We let the", "individual and matched-set level terms,", "ϵ$_{ij}$", "and", "X$_{i}$", ", be distributed as independent standard", "normals. Finally, let", "τ", "b", "=", "τ", "and", "τ", "a", "=", "τ", "−", "δ", ". If there are no versions, then", "δ", "= 0. When", "conducting the F-test of the null of no treatment effect, we model", "X$_{i}$", "as a linear effect.", "Simulation settings", "Table 2: Comparison of the power of the version method (columns 2 and 4) and the power", "of the F-test (columns 3 and 5) to reject Fisher’s sharp null hypothesis under alternative", "hypotheses with varying degrees of “versioning.” Significance level of the tests are", "α", "= 0", ".", "05", "Version", "τ", "b", "= 0", ".", "25", "τ", "b", "= 0", ".", "4", "P", "(", "I", "c", "̸⊇", "0)", "P", "(", "F > c$_{α}$", ")", "P", "(", "I", "c", "̸⊇", "0)", "P", "(", "F > c$_{α}$", ")", "τ", "a", "=", "τ", "b", "0.61", "0.49", "0.94", "0.91", "τ", "a", "= 0", ".", "95", "×", "τ", "b", "0.58", "0.47", "0.93", "0.88", "τ", "a", "= 0", ".", "9", "τ", "b", "0.56", "0.47", "0.93", "0.89", "τ", "a", "= 0", ".", "75", "×", "τ", "b", "0.51", "0.43", "0.89", "0.85", "τ", "a", "= 0", ".", "65", "τ", "b", "0.44", "0.42", "0.83", "0.84", "τ", "a", "= 0", ".", "6", "×", "τ", "b", "0.44", "0.44", "0.83", "0.86", "τ", "a", "= 0", ".", "5", "τ", "b", "0.37", "0.41", "0.75", "0.84", "τ", "a", "= 0", ".", "25", "×", "τ", "b", "0.27", "0.55", "0.58", "0.95", "28" ]
[ [ 153, 125, 656, 26 ], [ 153, 125, 656, 26 ], [ 153, 125, 656, 26 ], [ 153, 168, 717, 99 ], [ 153, 168, 717, 99 ], [ 153, 168, 717, 99 ], [ 153, 168, 717, 99 ], [ 153, 168, 717, 99 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 609, 717, 213 ], [ 153, 582, 152, 12 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 153, 500, 717, 49 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 239, 307, 550, 188 ], [ 503, 868, 18, 14 ] ]
[ [ 153, 126, 631, 13 ], [ 792, 125, 10, 26 ], [ 803, 132, 6, 9 ], [ 153, 168, 717, 14 ], [ 153, 197, 717, 14 ], [ 153, 225, 435, 14 ], [ 602, 225, 268, 14 ], [ 153, 254, 493, 14 ], [ 182, 610, 99, 14 ], [ 288, 610, 8, 14 ], [ 304, 610, 206, 14 ], [ 517, 610, 20, 14 ], [ 545, 610, 129, 14 ], [ 682, 610, 15, 14 ], [ 703, 609, 14, 24 ], [ 722, 610, 20, 14 ], [ 750, 610, 121, 14 ], [ 153, 638, 717, 14 ], [ 153, 666, 522, 14 ], [ 684, 666, 21, 14 ], [ 711, 666, 14, 14 ], [ 731, 666, 7, 14 ], [ 744, 666, 14, 14 ], [ 762, 666, 19, 14 ], [ 786, 666, 14, 14 ], [ 804, 666, 17, 14 ], [ 829, 666, 41, 14 ], [ 153, 695, 7, 14 ], [ 162, 695, 138, 14 ], [ 307, 695, 6, 14 ], [ 319, 695, 151, 14 ], [ 477, 695, 21, 14 ], [ 506, 695, 14, 14 ], [ 526, 695, 19, 14 ], [ 551, 695, 14, 14 ], [ 570, 695, 17, 14 ], [ 596, 695, 42, 14 ], [ 645, 695, 7, 14 ], [ 654, 695, 216, 14 ], [ 153, 723, 55, 14 ], [ 216, 723, 7, 14 ], [ 224, 723, 41, 14 ], [ 273, 723, 21, 14 ], [ 303, 723, 14, 14 ], [ 324, 723, 8, 14 ], [ 338, 723, 14, 14 ], [ 357, 723, 19, 14 ], [ 382, 723, 14, 14 ], [ 401, 723, 17, 14 ], [ 428, 723, 43, 14 ], [ 478, 723, 7, 14 ], [ 487, 723, 383, 14 ], [ 153, 752, 311, 14 ], [ 470, 752, 17, 14 ], [ 494, 752, 29, 14 ], [ 529, 752, 19, 14 ], [ 550, 752, 321, 14 ], [ 153, 780, 164, 14 ], [ 325, 780, 7, 14 ], [ 335, 778, 6, 9 ], [ 348, 780, 14, 14 ], [ 368, 780, 7, 14 ], [ 385, 780, 29, 14 ], [ 421, 780, 7, 14 ], [ 431, 778, 7, 9 ], [ 446, 780, 14, 14 ], [ 466, 780, 7, 14 ], [ 481, 780, 14, 24 ], [ 499, 780, 8, 14 ], [ 508, 780, 249, 14 ], [ 764, 780, 8, 14 ], [ 779, 780, 91, 14 ], [ 153, 808, 526, 14 ], [ 686, 808, 19, 14 ], [ 712, 808, 135, 14 ], [ 153, 582, 152, 12 ], [ 153, 500, 717, 14 ], [ 153, 517, 717, 14 ], [ 153, 535, 643, 14 ], [ 802, 535, 11, 14 ], [ 819, 535, 28, 14 ], [ 847, 535, 5, 14 ], [ 852, 535, 18, 14 ], [ 278, 310, 59, 14 ], [ 441, 310, 7, 14 ], [ 451, 309, 6, 9 ], [ 463, 310, 28, 14 ], [ 491, 310, 5, 14 ], [ 496, 310, 18, 14 ], [ 650, 310, 7, 14 ], [ 660, 309, 6, 9 ], [ 672, 310, 28, 14 ], [ 700, 310, 5, 14 ], [ 705, 310, 9, 14 ], [ 385, 328, 11, 14 ], [ 400, 328, 7, 14 ], [ 407, 328, 9, 24 ], [ 417, 334, 6, 9 ], [ 429, 328, 14, 24 ], [ 448, 328, 16, 14 ], [ 484, 328, 11, 14 ], [ 499, 328, 7, 14 ], [ 506, 328, 55, 14 ], [ 562, 328, 7, 14 ], [ 590, 328, 11, 14 ], [ 604, 328, 7, 14 ], [ 611, 328, 9, 24 ], [ 621, 334, 6, 9 ], [ 633, 328, 14, 24 ], [ 653, 328, 16, 14 ], [ 689, 328, 11, 14 ], [ 703, 328, 7, 14 ], [ 710, 328, 55, 14 ], [ 767, 328, 7, 14 ], [ 250, 346, 7, 14 ], [ 260, 345, 7, 9 ], [ 274, 346, 14, 14 ], [ 293, 346, 7, 14 ], [ 303, 345, 6, 9 ], [ 432, 346, 32, 14 ], [ 537, 346, 32, 14 ], [ 636, 346, 32, 14 ], [ 741, 346, 32, 14 ], [ 250, 364, 7, 14 ], [ 260, 362, 7, 9 ], [ 274, 364, 28, 14 ], [ 302, 364, 5, 14 ], [ 307, 364, 18, 14 ], [ 329, 364, 14, 24 ], [ 348, 364, 7, 14 ], [ 358, 362, 6, 9 ], [ 432, 364, 32, 14 ], [ 537, 364, 32, 14 ], [ 636, 364, 32, 14 ], [ 741, 364, 32, 14 ], [ 250, 381, 7, 14 ], [ 260, 380, 7, 9 ], [ 274, 381, 28, 14 ], [ 302, 381, 5, 14 ], [ 307, 381, 9, 14 ], [ 339, 381, 7, 14 ], [ 349, 380, 6, 9 ], [ 432, 381, 32, 14 ], [ 537, 381, 32, 14 ], [ 636, 381, 32, 14 ], [ 741, 381, 32, 14 ], [ 250, 399, 7, 14 ], [ 260, 397, 7, 9 ], [ 274, 399, 28, 14 ], [ 302, 399, 5, 14 ], [ 307, 399, 18, 14 ], [ 329, 399, 14, 24 ], [ 348, 399, 7, 14 ], [ 358, 397, 6, 9 ], [ 432, 399, 32, 14 ], [ 537, 399, 32, 14 ], [ 636, 399, 32, 14 ], [ 741, 399, 32, 14 ], [ 250, 417, 7, 14 ], [ 260, 415, 7, 9 ], [ 274, 417, 28, 14 ], [ 302, 417, 5, 14 ], [ 307, 417, 18, 14 ], [ 348, 417, 7, 14 ], [ 358, 415, 6, 9 ], [ 432, 417, 32, 14 ], [ 537, 417, 32, 14 ], [ 636, 417, 32, 14 ], [ 741, 417, 32, 14 ], [ 250, 434, 7, 14 ], [ 260, 432, 7, 9 ], [ 274, 434, 28, 14 ], [ 302, 434, 5, 14 ], [ 307, 434, 9, 14 ], [ 320, 434, 14, 24 ], [ 339, 434, 7, 14 ], [ 349, 432, 6, 9 ], [ 432, 434, 32, 14 ], [ 537, 434, 32, 14 ], [ 636, 434, 32, 14 ], [ 741, 434, 32, 14 ], [ 250, 452, 7, 14 ], [ 260, 450, 7, 9 ], [ 274, 452, 28, 14 ], [ 302, 452, 5, 14 ], [ 307, 452, 9, 14 ], [ 339, 452, 7, 14 ], [ 349, 450, 6, 9 ], [ 432, 452, 32, 14 ], [ 537, 452, 32, 14 ], [ 636, 452, 32, 14 ], [ 741, 452, 32, 14 ], [ 250, 469, 7, 14 ], [ 260, 467, 7, 9 ], [ 274, 469, 28, 14 ], [ 302, 469, 5, 14 ], [ 307, 469, 18, 14 ], [ 329, 469, 14, 24 ], [ 348, 469, 7, 14 ], [ 358, 467, 6, 9 ], [ 432, 469, 32, 14 ], [ 537, 469, 32, 14 ], [ 636, 469, 32, 14 ], [ 741, 469, 32, 14 ], [ 503, 868, 18, 14 ] ]
[ 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 0, 0, 0, 0, 0, 0, 0, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4 ]
404400e724a584b9695f9c6c4afba2028f18397141ade294cb09218e9621c52c
1705.03918.pdf
27
28
612
792
1,025
1,025
arxiv_doublespaced
scientific_articles
3319
[ "Report to Shareholders", "simon property group, inc.", "2", "GROWTH STRATEGY", "CASH DIVIDEND INCREASE", "SHAREHOLDER RETURNS", "FINANCIAL RESULTS", "W", "e had a very busy and productive ", "year in ", "", ". We completed ", "three significant acquisitions; partnered ", "with the leading Italian retail real ", "estate developer; launched four new ", "development projects; and continued ", "to increase real estate cash flow and ", "asset value through our redevelopment ", "and expansion program. We also sold ", "", "non-core assets, realizing net proceeds of ", "", " million. We continued to finance ", "the Company in a prudent manner and ", "completed a ", "", " million bond issuance ", "at industry-leading interest rates. We ", "once again posted solid operational and ", "financial results. ", "Due to our excellent performance in ", "", "and our positive outlook for the ", "future, we raised the common stock div-", "idend by ", "", ".", "", "% in February of ", "", " to an ", "annual rate of $", "", ".", "", " per share. Our an-", "nual dividend has increased by ", "", "% over ", "the last two years, from ", "", ".", "", " per share ", "in ", "", " to ", "", ".", "", " per share in ", "", ".", "We", "delivered", "a", "strong", "total", "return ", "of ", "", "%", "for", "our", "shareholders", "in ", "", "comprised", "of", "a ", "", "%", "increase", "in", "the ", "price", "of", "our", "common", "stock", "plus", "cash ", "dividends", "of", "$", "", ".", "", "per", "share.", "We ", "significantly", "outperformed", "the", "S&P ", "500 which", "delivered", "a", "total", "return", "of ", "", "%", "in ", "", ".", "Since", "our", "IPO", "in ", "", ", ", "our", "investors", "have", "enjoyed", "a", "total ", "return,", "including", "the", "reinvestment", "of ", "dividends of ", "", "%.", "Revenues increased in ", "", " by ", "", ".", "", "% ", "to ", "", ".", "", " billion. Operating income rose ", "", ".", "", "%", "to", "$", "", "million.", "Diluted", "funds ", "from", "operations", "(FFO)", "gained ", "", ".", "", "% ", "to ", "", ".", "", " per common share from ", "", ".", "", "per", "common", "share", "in ", "", ".", "FFO", "is ", "a", "widely", "recognized", "measure", "of", "the ", "performance", "of", "real", "estate", "investment ", "trusts. ", "Net income available to common ", "shareholders", "decreased ", "", ".", "", "%", "to ", "", "million, or ", "", ".", "", "per diluted common ", "share, from ", "", "million, or ", "", ".", "", "per ", "diluted common share, due primarily to ", "the sale of certain joint venture interests in ", "real estate in ", "", ". In ", "", ", we recorded ", "a net gain of ", "", " million, or ", "", ".", "", " per ", "share, as a result of the disposition of ", "real estate or interests in real estate, as ", "compared to a net gain of ", "", " million, ", "or ", "", ".", "", " per share, in ", "", ".", "Our", "growth", "strategy", "has", "five", "major ", "components:", "SIMON GROWTH STRATEGY", "● ", "Enhance Profitability of the Core ", "Portfolio", "● ", "Generate Supplemental Revenues", "● ", "Develop High Quality Retail Real ", "Estate", "● ", "Acquire High Quality Retail Real ", "Estate", "● ", "Selectively Expand Our ", "International Presence", "•", "Enhance Profitability of", "the Core Portfolio", "•", "Generate Supplemental Revenues", "•", "Develop High Quality Retail", "Real Estate", "•", "Acquire High Quality Retail", "Real Estate", "•", "Selectively Expand Our International ", "Presence" ]
[ [ 85, 44, 328, 23 ], [ 85, 993, 243, 17 ], [ 491, 994, 9, 15 ], [ 136, 288, 127, 13 ], [ 363, 567, 175, 14 ], [ 363, 734, 176, 16 ], [ 661, 281, 143, 16 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 277, 271, 271 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 584, 271, 132 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 363, 752, 271, 182 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 299, 271, 149 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 451, 271, 199 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 686, 271, 31 ], [ 661, 668, 197, 16 ], [ 661, 729, 253, 31 ], [ 661, 729, 253, 31 ], [ 661, 729, 253, 31 ], [ 661, 771, 250, 14 ], [ 661, 771, 250, 14 ], [ 661, 796, 259, 31 ], [ 661, 796, 259, 31 ], [ 661, 796, 259, 31 ], [ 661, 838, 254, 31 ], [ 661, 838, 254, 31 ], [ 661, 838, 254, 31 ], [ 661, 880, 187, 31 ], [ 661, 880, 187, 31 ], [ 661, 880, 187, 31 ], [ 75, 323, 157, 32 ], [ 75, 323, 157, 32 ], [ 75, 323, 157, 32 ], [ 75, 377, 225, 14 ], [ 75, 377, 225, 14 ], [ 75, 413, 190, 32 ], [ 75, 413, 190, 32 ], [ 75, 413, 190, 32 ], [ 75, 468, 186, 32 ], [ 75, 468, 186, 32 ], [ 75, 468, 186, 32 ], [ 75, 522, 246, 32 ], [ 75, 522, 246, 32 ], [ 75, 522, 246, 32 ] ]
[ [ 85, 44, 328, 23 ], [ 85, 993, 243, 17 ], [ 491, 994, 9, 15 ], [ 136, 288, 127, 13 ], [ 363, 567, 175, 14 ], [ 363, 734, 176, 16 ], [ 661, 281, 143, 16 ], [ 363, 277, 50, 42 ], [ 413, 281, 220, 14 ], [ 413, 298, 57, 14 ], [ 473, 300, 34, 12 ], [ 509, 298, 125, 14 ], [ 363, 315, 271, 14 ], [ 363, 332, 271, 14 ], [ 363, 349, 271, 14 ], [ 363, 365, 271, 14 ], [ 363, 382, 271, 14 ], [ 363, 399, 271, 14 ], [ 363, 416, 255, 14 ], [ 617, 418, 12, 12 ], [ 363, 433, 271, 14 ], [ 363, 451, 30, 12 ], [ 393, 450, 241, 14 ], [ 363, 466, 271, 14 ], [ 363, 483, 86, 14 ], [ 447, 485, 31, 12 ], [ 479, 483, 154, 14 ], [ 363, 500, 271, 14 ], [ 363, 517, 271, 14 ], [ 363, 534, 115, 14 ], [ 384, 584, 249, 14 ], [ 363, 603, 32, 12 ], [ 409, 601, 224, 14 ], [ 363, 618, 266, 14 ], [ 363, 635, 62, 14 ], [ 424, 636, 7, 12 ], [ 432, 635, 4, 14 ], [ 436, 636, 6, 12 ], [ 442, 635, 116, 14 ], [ 558, 636, 33, 12 ], [ 592, 635, 41, 14 ], [ 363, 652, 107, 14 ], [ 470, 653, 7, 12 ], [ 478, 652, 4, 14 ], [ 482, 653, 17, 12 ], [ 499, 652, 130, 14 ], [ 363, 668, 206, 14 ], [ 569, 670, 14, 12 ], [ 582, 668, 51, 14 ], [ 363, 685, 166, 14 ], [ 530, 687, 14, 12 ], [ 545, 685, 4, 14 ], [ 549, 687, 13, 12 ], [ 562, 685, 71, 14 ], [ 363, 702, 18, 14 ], [ 381, 704, 33, 12 ], [ 415, 702, 23, 14 ], [ 438, 704, 15, 12 ], [ 453, 702, 4, 14 ], [ 457, 704, 17, 12 ], [ 475, 702, 88, 14 ], [ 564, 704, 34, 12 ], [ 598, 702, 4, 14 ], [ 384, 752, 11, 14 ], [ 409, 752, 53, 14 ], [ 475, 752, 6, 14 ], [ 496, 752, 37, 14 ], [ 546, 752, 30, 14 ], [ 590, 752, 43, 14 ], [ 363, 769, 18, 14 ], [ 384, 771, 15, 12 ], [ 399, 769, 4, 14 ], [ 418, 769, 21, 14 ], [ 453, 769, 21, 14 ], [ 488, 769, 72, 14 ], [ 575, 769, 17, 14 ], [ 597, 771, 32, 12 ], [ 363, 786, 59, 14 ], [ 436, 786, 13, 14 ], [ 463, 786, 13, 14 ], [ 482, 788, 15, 12 ], [ 498, 786, 4, 14 ], [ 516, 786, 53, 14 ], [ 584, 786, 10, 14 ], [ 609, 786, 24, 14 ], [ 363, 803, 34, 14 ], [ 411, 803, 13, 14 ], [ 438, 803, 20, 14 ], [ 473, 803, 31, 14 ], [ 518, 803, 34, 14 ], [ 566, 803, 24, 14 ], [ 604, 803, 30, 14 ], [ 363, 820, 61, 14 ], [ 440, 820, 15, 14 ], [ 471, 820, 6, 14 ], [ 477, 822, 7, 12 ], [ 485, 820, 4, 14 ], [ 489, 822, 17, 12 ], [ 522, 820, 22, 14 ], [ 560, 820, 39, 14 ], [ 614, 820, 20, 14 ], [ 363, 837, 87, 14 ], [ 466, 837, 95, 14 ], [ 578, 837, 19, 14 ], [ 614, 837, 19, 14 ], [ 363, 853, 46, 14 ], [ 423, 853, 55, 14 ], [ 493, 853, 7, 14 ], [ 514, 853, 31, 14 ], [ 560, 853, 38, 14 ], [ 613, 853, 21, 14 ], [ 363, 872, 16, 12 ], [ 379, 870, 4, 14 ], [ 399, 870, 19, 14 ], [ 421, 872, 32, 12 ], [ 454, 870, 5, 14 ], [ 474, 870, 27, 14 ], [ 516, 870, 21, 14 ], [ 552, 870, 9, 14 ], [ 575, 870, 18, 14 ], [ 596, 872, 29, 12 ], [ 625, 870, 8, 14 ], [ 363, 887, 22, 14 ], [ 399, 887, 58, 14 ], [ 473, 887, 20, 14 ], [ 508, 887, 48, 14 ], [ 571, 887, 7, 14 ], [ 593, 887, 40, 14 ], [ 363, 904, 44, 14 ], [ 422, 904, 55, 14 ], [ 492, 904, 17, 14 ], [ 524, 904, 72, 14 ], [ 612, 904, 22, 14 ], [ 363, 921, 88, 14 ], [ 451, 922, 20, 12 ], [ 472, 921, 19, 14 ], [ 683, 299, 153, 14 ], [ 836, 301, 32, 12 ], [ 868, 299, 24, 14 ], [ 893, 301, 7, 12 ], [ 901, 299, 4, 14 ], [ 905, 301, 8, 12 ], [ 913, 299, 19, 14 ], [ 661, 316, 18, 14 ], [ 681, 318, 15, 12 ], [ 696, 316, 4, 14 ], [ 701, 318, 6, 12 ], [ 708, 316, 225, 14 ], [ 661, 335, 8, 12 ], [ 670, 333, 4, 14 ], [ 675, 335, 7, 12 ], [ 682, 333, 4, 14 ], [ 701, 333, 14, 14 ], [ 730, 333, 5, 14 ], [ 736, 335, 23, 12 ], [ 774, 333, 43, 14 ], [ 832, 333, 44, 14 ], [ 892, 333, 40, 14 ], [ 661, 350, 28, 14 ], [ 707, 350, 77, 14 ], [ 800, 350, 18, 14 ], [ 835, 350, 53, 14 ], [ 892, 351, 8, 12 ], [ 901, 350, 4, 14 ], [ 905, 351, 8, 12 ], [ 913, 350, 19, 14 ], [ 661, 366, 18, 14 ], [ 680, 368, 15, 12 ], [ 696, 366, 4, 14 ], [ 700, 368, 17, 12 ], [ 718, 366, 174, 14 ], [ 893, 368, 14, 12 ], [ 907, 366, 4, 14 ], [ 911, 368, 17, 12 ], [ 661, 383, 23, 14 ], [ 701, 383, 36, 14 ], [ 754, 383, 35, 14 ], [ 805, 383, 19, 14 ], [ 829, 385, 33, 12 ], [ 863, 383, 6, 14 ], [ 885, 383, 8, 14 ], [ 909, 383, 23, 14 ], [ 661, 400, 7, 14 ], [ 683, 400, 39, 14 ], [ 737, 400, 67, 14 ], [ 819, 400, 46, 14 ], [ 880, 400, 14, 14 ], [ 908, 400, 24, 14 ], [ 661, 417, 70, 14 ], [ 746, 417, 14, 14 ], [ 774, 417, 24, 14 ], [ 813, 417, 42, 14 ], [ 870, 417, 62, 14 ], [ 661, 434, 46, 14 ], [ 683, 451, 249, 14 ], [ 661, 467, 73, 14 ], [ 750, 467, 71, 14 ], [ 827, 469, 13, 12 ], [ 840, 467, 4, 14 ], [ 845, 469, 6, 12 ], [ 851, 467, 4, 14 ], [ 871, 467, 23, 14 ], [ 901, 469, 27, 12 ], [ 661, 484, 78, 14 ], [ 744, 486, 12, 12 ], [ 757, 484, 4, 14 ], [ 761, 486, 15, 12 ], [ 792, 484, 140, 14 ], [ 661, 501, 82, 14 ], [ 748, 503, 27, 12 ], [ 790, 501, 71, 14 ], [ 866, 503, 12, 12 ], [ 878, 501, 4, 14 ], [ 883, 503, 16, 12 ], [ 910, 501, 22, 14 ], [ 661, 518, 271, 14 ], [ 661, 535, 271, 14 ], [ 661, 552, 86, 14 ], [ 748, 553, 33, 12 ], [ 780, 552, 27, 14 ], [ 808, 553, 31, 12 ], [ 840, 552, 92, 14 ], [ 661, 568, 92, 14 ], [ 756, 570, 22, 12 ], [ 778, 568, 83, 14 ], [ 864, 570, 16, 12 ], [ 879, 568, 4, 14 ], [ 884, 570, 17, 12 ], [ 901, 568, 31, 14 ], [ 661, 585, 271, 14 ], [ 661, 602, 271, 14 ], [ 661, 619, 179, 14 ], [ 842, 621, 28, 12 ], [ 871, 619, 62, 14 ], [ 661, 636, 19, 14 ], [ 680, 637, 16, 12 ], [ 697, 636, 4, 14 ], [ 701, 637, 17, 12 ], [ 719, 636, 93, 14 ], [ 812, 637, 33, 12 ], [ 846, 636, 4, 14 ], [ 661, 686, 18, 14 ], [ 695, 686, 40, 14 ], [ 751, 686, 59, 14 ], [ 825, 686, 18, 14 ], [ 858, 686, 18, 14 ], [ 891, 686, 41, 14 ], [ 661, 703, 88, 14 ], [ 661, 668, 197, 16 ], [ 661, 731, 13, 11 ], [ 683, 729, 232, 14 ], [ 683, 746, 60, 14 ], [ 661, 773, 13, 11 ], [ 683, 771, 229, 14 ], [ 661, 798, 13, 11 ], [ 683, 796, 237, 14 ], [ 683, 813, 41, 14 ], [ 661, 840, 13, 11 ], [ 683, 838, 233, 14 ], [ 683, 855, 41, 14 ], [ 661, 882, 13, 11 ], [ 683, 880, 165, 14 ], [ 683, 897, 152, 14 ], [ 75, 323, 6, 14 ], [ 88, 323, 144, 14 ], [ 91, 341, 108, 14 ], [ 75, 377, 7, 14 ], [ 98, 377, 202, 14 ], [ 75, 413, 7, 14 ], [ 98, 413, 167, 14 ], [ 91, 431, 67, 14 ], [ 75, 468, 7, 14 ], [ 97, 468, 165, 14 ], [ 91, 486, 67, 14 ], [ 75, 522, 6, 14 ], [ 96, 522, 225, 14 ], [ 91, 540, 54, 14 ] ]
[ 7, 4, 4, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 ]
838bdca9fa6fb5f9c36964d2c97a021463db1faf797f0e5f5725fc5e548e9497
NYSE_SPG_2003.pdf
4
89
576
792
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3320
[ "This can be manipulated into V$_{S}$", " times the square root of the ", "load factor (which equals weight × G loading).", "For example, if a glider stall speed is 34 knots, consider the ", "following formula (34 × √1.2 (load factor) = 34 × 1.10 = 37 ", "at 30° ) for thermalling:", "• ", "In", "a", "30°", "banked", "turn,", "load", "factor", "is", "1.2", "Gs.", "The ", "approximate square root of 1.2 is 1.1. Now multiply ", "34", "knots times 1.1 yields a 37-knot stall speed. Since ", "the minimum sink speed is 40 which is still above ", "the stall speed but by only approximately 3 knots, the ", "margin of safety is decreasing and the pilot should ", "consider increasing the minimum airspeed by a factor ", "proportionate to the stall speed increase, in this case ", "44", "knots (40 × √1.2 (load factor) = 40 × 1.10 = 44 at ", "30°). ", "• ", "In a 45° banked turn, load factor is 1.18 (34 × √1.4 ", "= 34 × 1.18 = 40.12 knots at 45°). Now multiply 34 ", "knots times 1.18 which yields a 41-knot stall speed. ", "The minimum sink speed of 40 knots is now below ", "the stall speed. The pilot should increase the minimum ", "airspeed proportionately to the stall airspeed, and the ", "new speed would be 48 knots (40 × √1.4 (load factor) ", "= 41 × 1.18 = 48 at 45°), a 7-knot safety factor.", "• ", "In", "a", "60°", "banked", "turn,", "load", "factor", "is", "2.0", "Gs.", "The ", "approximate square root of 2.0 is 1.4 (34 × √2.0 = 34 ", "× 1.41 = 48 knots at 60°). Now multiply 34 knots times ", "1.4", "which yields a 48-knot stall speed. The minimum ", "sink speed of 40 knots is now below the stall speed. ", "The pilot should increase the minimum airspeed ", "proportionately to 57 knots, yielding an 9-knot safety ", "(40 × √2.0 (load factor) = 40 × 1.41 = 56.4 at 60°).", "• ", "Improper determination of minimum sink speed.", "• ", "Failure to maintain proper pitch attitude and airspeed ", "control.", "Minimum", "sink", "airspeed", "is", "always", "lower", "than", "best L/D ", "airspeed at any given operating weight. If the operating weight ", "of the glider is noticeably less than maximum gross weight, ", "then the actual minimum sink airspeed at that operating ", "weight is lower than that published by the manufacturer. ", "Common errors regarding minimum sink airspeed include:", "Best glide (L/D) airspeed is defined as the airspeed that results ", "in the least amount of altitude loss over a given distance. This ", "allows the glider to glide the greatest distance in still air. This ", "performance is expressed as glide ratio. The manufacturer ", "publishes the best glide airspeed for specified weights and ", "the resulting glide ratio. For example, a glide ratio of 36:1 ", "Best Glide Airspeed", "Speed to Fly", "means that the glider loses 1 foot of altitude for every 36 ", "feet of forward movement in still air at this airspeed. The ", "glide ratio decreases at airspeeds above or below best glide ", "airspeed. The best glide speed can be found from the glider ", "polars in Chapter 5, Performance Limitations.", "Common errors regarding best glide airspeed include:", "Much", "is", "said", "about", "the", "importance", "of", "maintaining", "the ", "best gliding speed, but what is", "important is", "to maintain ", "an", "optimum", "glide", "speed,", "a", "penetration", "speed", "that", "takes ", "atmospheric", "conditions", "into", "account", "(e.g.,", "sinking", "air", "or ", "a headwind). The gliding community refers to this as the ", "speed", "to", "fly.", "The", "normal", "recommendation", "for", "countering ", "a headwind is to add one-third to one-half of the estimated ", "wind speed to V$_{BG}$", ", which increases the rate of sink but also ", "increases the ground speed. For a tailwind, deduct one-third ", "to", "one-half", "the", "estimated", "wind", "speed", "from", "V$_{BG}$,", "which ", "reduces both the rate of sink and the groundspeed. Bear in ", "mind that, for safety, it is better to err towards higher rather ", "than lower airspeeds.", "To illustrate this, the polar curve in ", "Figure 7-35", " indicates ", "the", "optimum", "glide", "speed", "when", "adjusted", "for", "headwind, ", "tailwind or sinking air. For a tailwind (A), the starting point ", "on the horizontal scale has been moved a distance to the left ", "corresponding", "to", "the", "tailwind", "velocity.", "Consequently,", "the ", "black tangential line contacts the curve at an optimal glide ", "speed that is lower than the best L/D no-wind glide (B), with a ", "slightly lower rate of sink. This is the opposite for a headwind ", "(C), shown by the purple line, and sinking air (D), shown ", "Figure 7-35. ", "Polar curve for optimum glide speed adjusted for ", "headwind, tailwind, and sinking air.", "Airspeed", "Headwind", "Tailwind", "Sinking air", "Glide", "Rate of sink", "Minimum sink", "A B C D", "7-37", "• ", "Improper determination of best airspeed to fly and not ", "factoring in lift and headwinds.", "• ", "Failure to maintain proper pitch attitude and airspeed ", "control." ]
[ [ 124, 56, 414, 31 ], [ 124, 56, 414, 31 ], [ 124, 56, 414, 31 ], [ 124, 106, 415, 48 ], [ 124, 106, 415, 48 ], [ 124, 106, 415, 48 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 162, 399, 164 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 333, 398, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 472, 400, 131 ], [ 139, 742, 366, 15 ], [ 139, 742, 366, 15 ], [ 139, 765, 397, 31 ], [ 139, 765, 397, 31 ], [ 139, 765, 397, 31 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 621, 415, 81 ], [ 124, 720, 405, 15 ], [ 124, 832, 414, 97 ], [ 124, 832, 414, 97 ], [ 124, 832, 414, 97 ], [ 124, 832, 414, 97 ], [ 124, 832, 414, 97 ], [ 124, 832, 414, 97 ], [ 124, 813, 163, 17 ], [ 553, 265, 102, 17 ], [ 553, 56, 413, 81 ], [ 553, 56, 413, 81 ], [ 553, 56, 413, 81 ], [ 553, 56, 413, 81 ], [ 553, 56, 413, 81 ], [ 553, 156, 371, 15 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 284, 413, 213 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 516, 415, 147 ], [ 553, 898, 415, 30 ], [ 553, 898, 415, 30 ], [ 553, 898, 415, 30 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 552, 673, 411, 216 ], [ 928, 964, 34, 16 ], [ 569, 178, 398, 31 ], [ 569, 178, 398, 31 ], [ 569, 178, 398, 31 ], [ 569, 217, 397, 31 ], [ 569, 217, 397, 31 ], [ 569, 217, 397, 31 ] ]
[ [ 124, 56, 219, 15 ], [ 343, 56, 194, 15 ], [ 124, 73, 316, 15 ], [ 124, 106, 415, 15 ], [ 124, 123, 415, 15 ], [ 124, 139, 160, 15 ], [ 139, 162, 10, 15 ], [ 170, 162, 10, 15 ], [ 194, 162, 6, 15 ], [ 214, 162, 16, 15 ], [ 244, 162, 40, 15 ], [ 298, 162, 25, 15 ], [ 337, 162, 26, 15 ], [ 377, 162, 40, 15 ], [ 431, 162, 13, 15 ], [ 458, 162, 12, 15 ], [ 484, 162, 13, 15 ], [ 511, 162, 22, 15 ], [ 170, 178, 366, 15 ], [ 170, 195, 9, 15 ], [ 187, 195, 349, 15 ], [ 170, 211, 366, 15 ], [ 170, 228, 366, 15 ], [ 170, 244, 368, 15 ], [ 170, 261, 365, 15 ], [ 170, 278, 366, 15 ], [ 170, 294, 10, 15 ], [ 189, 294, 348, 15 ], [ 170, 311, 38, 15 ], [ 139, 333, 10, 15 ], [ 170, 333, 366, 15 ], [ 170, 350, 366, 15 ], [ 170, 366, 366, 15 ], [ 170, 383, 366, 15 ], [ 170, 399, 367, 15 ], [ 170, 416, 366, 15 ], [ 170, 432, 366, 15 ], [ 170, 449, 326, 15 ], [ 139, 472, 10, 15 ], [ 170, 472, 10, 15 ], [ 194, 472, 6, 15 ], [ 214, 472, 15, 15 ], [ 243, 472, 40, 15 ], [ 297, 472, 25, 15 ], [ 336, 472, 26, 15 ], [ 377, 472, 40, 15 ], [ 431, 472, 13, 15 ], [ 458, 472, 12, 15 ], [ 484, 472, 13, 15 ], [ 511, 472, 22, 15 ], [ 170, 488, 368, 15 ], [ 170, 505, 368, 15 ], [ 170, 521, 15, 15 ], [ 193, 521, 345, 15 ], [ 170, 538, 368, 15 ], [ 170, 554, 369, 15 ], [ 170, 571, 367, 15 ], [ 170, 587, 347, 15 ], [ 139, 742, 10, 15 ], [ 170, 742, 335, 15 ], [ 139, 765, 10, 15 ], [ 170, 765, 366, 15 ], [ 170, 781, 53, 15 ], [ 124, 621, 42, 15 ], [ 181, 621, 29, 15 ], [ 225, 621, 58, 15 ], [ 297, 621, 14, 15 ], [ 326, 621, 43, 15 ], [ 384, 621, 36, 15 ], [ 435, 621, 29, 15 ], [ 479, 621, 55, 15 ], [ 124, 637, 415, 15 ], [ 124, 654, 413, 15 ], [ 124, 670, 415, 15 ], [ 124, 687, 392, 15 ], [ 124, 720, 405, 15 ], [ 124, 832, 414, 15 ], [ 124, 848, 414, 15 ], [ 124, 865, 414, 15 ], [ 124, 881, 413, 15 ], [ 124, 898, 413, 15 ], [ 124, 915, 413, 15 ], [ 124, 813, 163, 17 ], [ 553, 265, 102, 17 ], [ 553, 56, 413, 15 ], [ 553, 73, 413, 15 ], [ 553, 90, 413, 15 ], [ 553, 106, 413, 15 ], [ 553, 123, 316, 15 ], [ 553, 156, 371, 15 ], [ 553, 284, 20, 15 ], [ 587, 284, 13, 15 ], [ 615, 284, 27, 15 ], [ 656, 284, 30, 15 ], [ 701, 284, 20, 15 ], [ 735, 284, 69, 15 ], [ 818, 284, 13, 15 ], [ 846, 284, 76, 15 ], [ 936, 284, 27, 15 ], [ 553, 301, 211, 15 ], [ 780, 301, 85, 15 ], [ 879, 301, 85, 15 ], [ 553, 317, 13, 15 ], [ 580, 317, 42, 15 ], [ 636, 317, 33, 15 ], [ 683, 317, 35, 15 ], [ 732, 317, 6, 15 ], [ 752, 317, 73, 15 ], [ 838, 317, 33, 15 ], [ 885, 317, 26, 15 ], [ 925, 317, 39, 15 ], [ 553, 334, 72, 15 ], [ 639, 334, 65, 15 ], [ 718, 334, 26, 15 ], [ 758, 334, 42, 15 ], [ 813, 334, 27, 15 ], [ 854, 334, 46, 15 ], [ 913, 334, 19, 15 ], [ 946, 334, 19, 15 ], [ 553, 350, 413, 15 ], [ 553, 367, 34, 15 ], [ 601, 367, 13, 15 ], [ 629, 367, 24, 15 ], [ 667, 367, 15, 15 ], [ 697, 367, 41, 15 ], [ 751, 367, 95, 15 ], [ 861, 367, 20, 15 ], [ 895, 367, 71, 15 ], [ 553, 383, 413, 15 ], [ 553, 400, 128, 15 ], [ 682, 400, 285, 15 ], [ 553, 417, 413, 15 ], [ 553, 433, 13, 15 ], [ 581, 433, 52, 15 ], [ 647, 433, 20, 15 ], [ 681, 433, 61, 15 ], [ 756, 433, 27, 15 ], [ 797, 433, 34, 15 ], [ 845, 433, 27, 15 ], [ 886, 433, 24, 15 ], [ 924, 433, 42, 15 ], [ 553, 450, 413, 15 ], [ 553, 466, 413, 15 ], [ 553, 483, 146, 15 ], [ 553, 516, 256, 15 ], [ 811, 516, 84, 15 ], [ 895, 516, 72, 15 ], [ 553, 532, 21, 15 ], [ 589, 532, 45, 15 ], [ 650, 532, 35, 15 ], [ 700, 532, 35, 15 ], [ 750, 532, 28, 15 ], [ 793, 532, 53, 15 ], [ 860, 532, 21, 15 ], [ 896, 532, 67, 15 ], [ 553, 549, 413, 15 ], [ 553, 566, 413, 15 ], [ 553, 582, 86, 15 ], [ 654, 582, 13, 15 ], [ 680, 582, 20, 15 ], [ 714, 582, 53, 15 ], [ 781, 582, 57, 15 ], [ 851, 582, 75, 15 ], [ 940, 582, 26, 15 ], [ 553, 599, 413, 15 ], [ 553, 615, 415, 15 ], [ 553, 632, 414, 15 ], [ 553, 648, 413, 15 ], [ 553, 899, 85, 13 ], [ 639, 898, 329, 13 ], [ 553, 915, 224, 13 ], [ 854, 748, 59, 14 ], [ 661, 719, 65, 14 ], [ 572, 719, 54, 14 ], [ 572, 705, 70, 14 ], [ 867, 726, 34, 14 ], [ 665, 834, 78, 14 ], [ 712, 801, 92, 14 ], [ 777, 693, 56, 14 ], [ 928, 964, 34, 16 ], [ 569, 178, 10, 15 ], [ 600, 178, 366, 15 ], [ 600, 195, 216, 15 ], [ 569, 217, 10, 15 ], [ 600, 217, 366, 15 ], [ 600, 234, 53, 15 ] ]
[ 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 4, 3, 3, 3, 3, 3, 3 ]
e44d91fba453d86beb801d96edc21687955d44298c14bec62cc878e2b923e1d1
faa-h-8083-13a.pdf
130
268
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3321
[ "See Also API, Connector/J, J2EE, Java.", "See Also Java.", " A ", "query", " that retrieves data from more than one table, by referencing columns in the tables that hold identical", "values. Ideally, these columns are part of an ", "InnoDB", "foreign key", " relationship, which ensures ", "referential", "integrity", " and that the join columns are ", "indexed", ". Often used to save space and improve query performance by", "replacing repeated strings with numeric IDs, in a ", "normalized", " data design.", "See Also foreign key, index, normalized, query, referential integrity.", "For ", "MyISAM", " tables, ", "KEY_BLOCK_SIZE", " optionally specifies the size in bytes to use for index key blocks. The", "value is treated as a hint; a different size could be used if necessary. A ", "KEY_BLOCK_SIZE", " value specified for an", "individual index definition overrides a table-level ", "KEY_BLOCK_SIZE", " value.", "See Also compressed row format.", " An option to specify the size of data pages within an ", "InnoDB", " table that uses ", "compressed row format", ". The", "default is 8 kilobytes. Lower values risk hitting internal limits that depend on the combination of row size and", "compression percentage.", " A lightweight structure used by ", "InnoDB", " to implement a ", "lock", " for its own internal memory structures, typically", "held for a brief time measured in milliseconds or microseconds. A general term that includes both ", "mutexes", " (for", "exclusive access) and ", "rw-locks", " (for shared access). Certain latches are the focus of ", "InnoDB", " performance tuning.", "Statistics about latch use and contention are available through the ", "Performance Schema", " interface.", "See Also lock, locking, mutex, Performance Schema, rw-lock.", " Informal name for the ", "libmysqlclient", " library.", "See Also libmysqlclient.", " The library file, named ", "libmysqlclient.a", " or ", "libmysqlclient.so", ", that is typically linked into ", "client", "programs written in ", "C", ". Sometimes known informally as ", "libmysql", " or the ", "mysqlclient", " library.", "See Also client, libmysql, mysqlclient.", " This ", "embedded", " MySQL server library makes it possible to run a full-featured MySQL server inside a ", "client", "application. The main benefits are increased speed and more simple management for embedded applications.", "You link with the ", "libmysqld", " library rather than ", "libmysqlclient", ". The API is identical between all three of these", "libraries.", "See Also client, embedded, libmysql, libmysqlclient.", "6163", "L", "JNDI", "join", "K", "keystore", "KEY_BLOCK_SIZE", "latch", "libmysql", "libmysqlclient", "libmysqld", "See Also SSL." ]
[ [ 120, 94, 296, 11 ], [ 120, 156, 111, 11 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 201, 817, 74 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 475, 831, 58 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 413, 801, 43 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 609, 844, 74 ], [ 120, 717, 335, 27 ], [ 120, 717, 335, 27 ], [ 120, 717, 335, 27 ], [ 120, 717, 335, 27 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 779, 777, 43 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 855, 818, 58 ], [ 120, 918, 382, 11 ], [ 927, 964, 37, 11 ], [ 90, 553, 16, 21 ], [ 90, 125, 37, 11 ], [ 90, 186, 26, 11 ], [ 90, 295, 20, 21 ], [ 90, 336, 63, 11 ], [ 90, 398, 146, 11 ], [ 90, 594, 35, 11 ], [ 90, 702, 60, 11 ], [ 90, 763, 99, 11 ], [ 90, 840, 69, 11 ], [ 120, 368, 107, 11 ] ]
[ [ 120, 94, 296, 11 ], [ 120, 156, 111, 11 ], [ 120, 201, 20, 11 ], [ 141, 201, 45, 11 ], [ 186, 201, 742, 11 ], [ 120, 217, 332, 11 ], [ 452, 218, 60, 10 ], [ 517, 217, 89, 11 ], [ 607, 217, 211, 11 ], [ 818, 217, 80, 11 ], [ 120, 233, 66, 11 ], [ 186, 233, 224, 11 ], [ 411, 233, 63, 11 ], [ 474, 233, 463, 11 ], [ 120, 248, 362, 11 ], [ 482, 248, 88, 11 ], [ 571, 248, 95, 11 ], [ 120, 264, 497, 11 ], [ 120, 475, 29, 11 ], [ 150, 476, 60, 10 ], [ 210, 475, 58, 11 ], [ 269, 476, 140, 10 ], [ 410, 475, 510, 11 ], [ 120, 490, 527, 11 ], [ 648, 491, 140, 10 ], [ 789, 490, 162, 11 ], [ 120, 506, 359, 11 ], [ 479, 507, 140, 10 ], [ 620, 506, 49, 11 ], [ 120, 521, 251, 11 ], [ 120, 413, 394, 11 ], [ 515, 414, 60, 10 ], [ 575, 413, 118, 11 ], [ 693, 413, 189, 11 ], [ 883, 413, 38, 11 ], [ 120, 429, 797, 11 ], [ 120, 444, 188, 11 ], [ 120, 609, 237, 11 ], [ 357, 611, 60, 10 ], [ 418, 609, 119, 11 ], [ 537, 609, 33, 11 ], [ 570, 609, 352, 11 ], [ 120, 625, 723, 11 ], [ 843, 625, 67, 11 ], [ 911, 625, 29, 11 ], [ 120, 641, 168, 11 ], [ 289, 641, 67, 11 ], [ 357, 641, 393, 11 ], [ 750, 642, 60, 10 ], [ 811, 641, 153, 11 ], [ 120, 656, 493, 11 ], [ 614, 656, 171, 11 ], [ 785, 656, 73, 11 ], [ 120, 672, 456, 11 ], [ 120, 717, 168, 11 ], [ 289, 717, 111, 11 ], [ 400, 717, 54, 11 ], [ 120, 733, 175, 11 ], [ 120, 779, 174, 11 ], [ 295, 780, 160, 10 ], [ 456, 779, 24, 11 ], [ 480, 780, 170, 10 ], [ 651, 779, 202, 11 ], [ 854, 779, 43, 11 ], [ 120, 794, 147, 11 ], [ 267, 794, 12, 11 ], [ 279, 794, 249, 11 ], [ 529, 794, 67, 11 ], [ 597, 794, 52, 11 ], [ 649, 794, 92, 11 ], [ 741, 794, 54, 11 ], [ 120, 810, 277, 11 ], [ 120, 855, 40, 11 ], [ 161, 855, 83, 11 ], [ 245, 855, 628, 11 ], [ 873, 855, 43, 11 ], [ 120, 871, 815, 11 ], [ 120, 887, 126, 11 ], [ 247, 888, 90, 10 ], [ 337, 887, 140, 11 ], [ 478, 887, 111, 11 ], [ 589, 887, 349, 11 ], [ 120, 902, 63, 11 ], [ 120, 918, 382, 11 ], [ 927, 964, 37, 11 ], [ 90, 553, 16, 21 ], [ 90, 125, 37, 11 ], [ 90, 186, 26, 11 ], [ 90, 295, 20, 21 ], [ 90, 336, 63, 11 ], [ 90, 398, 146, 11 ], [ 90, 594, 35, 11 ], [ 90, 702, 60, 11 ], [ 90, 763, 99, 11 ], [ 90, 840, 69, 11 ], [ 120, 368, 107, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 9 ]
cc93fe03170dbba3eba6a0833345a0d1a48efbca73bcbdbb5479248ea1a8e865
refman-8.0-en.pdf
6,192
6,228
612
792
1,025
1,025
manuals
manuals
3322
[ "decreases the engine rpm, reducing fuel consumption and ", "engine wear, and keeps thrust at a maximum.", "For climb after takeoff, the power output of the engine is ", "reduced to climb power by decreasing the manifold pressure ", "and increasing the blade angle to lower the rpm. Thus, the ", "torque (horsepower absorbed by the propeller) is reduced to ", "match the reduced power of the engine. The AOA is again ", "kept small by the increase in blade angle. The greater mass ", "of air handled per second, in this case, is more than offset by ", "the lower slipstream velocity and the increase in airspeed.", "At cruising altitude, when the airplane is in level flight and ", "less power is required than is used in takeoff or climb, engine ", "power is again reduced by lowering the manifold pressure ", "and increasing the blade angle to decrease the rpm. Again, ", "this reduces torque to match the reduced engine power; for, ", "although the mass of air handled per revolution is greater, it ", "is more than offset by a decrease in slipstream velocity and ", "an increase in airspeed. The AOA is still small because the ", "blade angle has been increased with an increase in airspeed. ", "Pitch distribution is the twist in the blade from the shank to ", "the blade tip, due to the variation in speeds that each section ", "of the blade is traveling. The tip of the blade is traveling ", "much faster than the inner portion of the blade.", "Fixed pitch propellers have no controls and require no ", "adjustments in flight. The constant-speed propeller has a ", "propeller control in the center pedestal between the throttle ", "and the mixture control. ", "[Figure 7-10] ", "The two positions for ", "the control are increase rpm (full forward) and decrease rpm ", "(pulled aft). This control is directly connected to the propeller ", "governor and, by moving the control, adjusts the tension on ", "the governor speeder spring. This control can also be used to ", "feather the propeller in some aircraft by moving the control ", "to the full decrease rpm position. The two main instruments ", "used with the constant-speed propeller are the engine ", "tachometer and the manifold pressure gauge. Rotations per ", "minute (rpm) is controlled by the propeller control and the ", "manifold pressure is adjusted by the throttle.", "Tractor propellers are those mounted on the upstream end of ", "a drive shaft in front of the supporting structure. Most aircraft ", "are equipped with this type of propeller. The tractor type of ", "propeller comes in all types of propellers. A major advantage ", "of the tractor propeller is that lower stresses are induced in ", "the propeller as it rotates in relatively undisturbed air.", "Pusher propellers are those mounted on the downstream ", "end of a drive shaft behind the supporting structure. Pusher ", "propellers are constructed as fixed- or variable-pitch ", "propellers. Seaplanes and amphibious aircraft have used a ", "greater percentage of pusher propellers than other kinds of ", "aircraft. On land planes, where propeller-to-ground clearance ", "usually is less than propeller-to-water clearance of watercraft, ", "pusher propellers are subject to more damage than tractor ", "propellers. Rocks, gravel, and small objects dislodged by ", "the wheels are quite often thrown or drawn into a pusher ", "propeller. Similarly, planes with pusher propellers are apt to ", "encounter propeller damage from water spray thrown up by ", "the hull during landing or takeoff airspeed. Consequently, ", "the pusher propeller is mounted above and behind the wings ", "to prevent such damage. ", "There are various types or classes of propellers, the simplest ", "of which are the fixed-pitch and ground-adjustable propellers. ", "The complexity of propeller systems increases from these ", "simpler forms to controllable-pitch and complex constant-", "speed systems (automatic systems). Various characteristics ", "of several propeller types are discussed in the following ", "paragraphs, but no attempt is made to cover all types of ", "propellers.", "As the name implies, a fixed-pitch propeller has the blade ", "pitch, or blade angle, built into the propeller. ", "[Figure 7-11]", "The blade angle cannot be changed after the propeller is ", "built. Generally, this type of propeller is one piece and is ", "constructed of wood or aluminum alloy.", "Fixed-pitch propellers are designed for best efficiency at ", "one rotational and forward speed. They are designed to fit ", "a set of conditions of both airplane and engine speeds and ", "any change in these conditions reduces the efficiency of ", "both the propeller and the engine. The fixed-pitch propeller ", "Propeller Controls and Instruments", "Propeller Location", "Tractor Propeller", "Pusher Propellers", "Types of Propellers", "Fixed-Pitch Propeller", "Figure 7-10. ", "Turboprop propeller controls. ", "7-6" ]
[ [ 62, 56, 415, 31 ], [ 62, 56, 415, 31 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 106, 414, 131 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 255, 415, 213 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 62, 504, 416, 164 ], [ 491, 56, 415, 64 ], [ 491, 56, 415, 64 ], [ 491, 56, 415, 64 ], [ 491, 56, 415, 64 ], [ 491, 178, 413, 97 ], [ 491, 178, 413, 97 ], [ 491, 178, 413, 97 ], [ 491, 178, 413, 97 ], [ 491, 178, 413, 97 ], [ 491, 178, 413, 97 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 311, 416, 246 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 597, 415, 131 ], [ 491, 763, 415, 81 ], [ 491, 763, 415, 81 ], [ 491, 763, 415, 81 ], [ 491, 763, 415, 81 ], [ 491, 763, 415, 81 ], [ 491, 763, 415, 81 ], [ 491, 859, 415, 81 ], [ 491, 859, 415, 81 ], [ 491, 859, 415, 81 ], [ 491, 859, 415, 81 ], [ 491, 859, 415, 81 ], [ 62, 485, 289, 17 ], [ 491, 135, 180, 20 ], [ 491, 159, 139, 17 ], [ 491, 292, 147, 17 ], [ 491, 572, 191, 20 ], [ 491, 744, 172, 17 ], [ 61, 928, 272, 14 ], [ 61, 928, 272, 14 ], [ 62, 964, 24, 16 ] ]
[ [ 62, 56, 415, 15 ], [ 62, 73, 311, 15 ], [ 62, 106, 414, 15 ], [ 62, 123, 412, 15 ], [ 62, 139, 414, 15 ], [ 62, 156, 412, 15 ], [ 62, 172, 413, 15 ], [ 62, 189, 413, 15 ], [ 62, 205, 412, 15 ], [ 62, 222, 399, 15 ], [ 62, 255, 413, 15 ], [ 62, 272, 412, 15 ], [ 62, 288, 414, 15 ], [ 62, 305, 413, 15 ], [ 62, 321, 413, 15 ], [ 62, 338, 412, 15 ], [ 62, 354, 413, 15 ], [ 62, 371, 413, 15 ], [ 62, 387, 412, 15 ], [ 62, 404, 413, 15 ], [ 62, 421, 412, 15 ], [ 62, 437, 415, 15 ], [ 62, 454, 324, 15 ], [ 62, 504, 416, 15 ], [ 62, 521, 415, 15 ], [ 62, 537, 413, 15 ], [ 62, 554, 165, 15 ], [ 227, 554, 98, 15 ], [ 326, 554, 148, 15 ], [ 62, 570, 412, 15 ], [ 62, 587, 412, 15 ], [ 62, 603, 413, 15 ], [ 62, 620, 412, 15 ], [ 62, 636, 413, 15 ], [ 62, 653, 412, 15 ], [ 491, 56, 415, 15 ], [ 491, 73, 413, 15 ], [ 491, 90, 413, 15 ], [ 491, 106, 307, 15 ], [ 491, 178, 412, 15 ], [ 491, 194, 411, 15 ], [ 491, 211, 413, 15 ], [ 491, 227, 412, 15 ], [ 491, 244, 413, 15 ], [ 491, 260, 370, 15 ], [ 491, 311, 415, 15 ], [ 491, 327, 413, 15 ], [ 491, 344, 416, 15 ], [ 491, 360, 414, 15 ], [ 491, 377, 413, 15 ], [ 491, 393, 412, 15 ], [ 491, 410, 412, 15 ], [ 491, 427, 414, 15 ], [ 491, 443, 415, 15 ], [ 491, 460, 415, 15 ], [ 491, 476, 412, 15 ], [ 491, 493, 412, 15 ], [ 491, 509, 414, 15 ], [ 491, 526, 412, 15 ], [ 491, 542, 172, 15 ], [ 491, 597, 412, 15 ], [ 491, 613, 412, 15 ], [ 491, 630, 414, 15 ], [ 491, 646, 408, 15 ], [ 491, 663, 413, 15 ], [ 491, 680, 415, 15 ], [ 491, 696, 415, 15 ], [ 491, 713, 73, 15 ], [ 491, 763, 414, 15 ], [ 491, 780, 312, 15 ], [ 804, 780, 96, 15 ], [ 491, 796, 415, 15 ], [ 491, 813, 414, 15 ], [ 491, 829, 277, 15 ], [ 491, 859, 415, 15 ], [ 491, 876, 414, 15 ], [ 491, 892, 414, 15 ], [ 491, 909, 415, 15 ], [ 491, 925, 413, 15 ], [ 62, 485, 289, 17 ], [ 491, 135, 180, 20 ], [ 491, 159, 139, 17 ], [ 491, 292, 147, 17 ], [ 491, 572, 191, 20 ], [ 491, 744, 172, 17 ], [ 61, 928, 81, 13 ], [ 143, 928, 191, 13 ], [ 62, 964, 24, 16 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 7, 7, 0, 0, 4 ]
242a54feb8ef7eee98f3761c8bc4426d1a0e2cca6bc5fac7878a2c70a8ae5fc3
FAA-H-8083-32-AMT-Powerplant-Vol-2.pdf
63
272
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3323
[ "24", "Chapter 2: Motivation", "parton", "a", "in a proton with momentum fraction between", "x$_{a}$", "and", "x$_{a}$", "+", "dx", ", where", "x$_{a}$", "=", "p$_{a}$/P$_{p}$", "and something of an abuse of notation occurred by which", "p$_{a}$", "stands", "for the momentum of parton", "a", "and", "P$_{p}$", "stands for the momentum of the proton.", "The FF gives the probability of parton", "c", "hadronizing into", "h", "with fractional", "momentum between", "z$_{c}$", "and", "z$_{c}$", "+", "dz", ", where", "P$_{h}$", "=", "z$_{c}$p$_{c}$", ". All allowed combinations", "of", "a", ",", "b", ", and", "c", "are summed over where", "a", "+", "b", "→", "c", "+", "X", "such that", "c", "may hadronize", "into", "h", ". We note that we have slightly extended the factorization theorem to", "include the fragmentation process, which introduces the new scale", "µ", "′", "$_{F}$. Addi-", "tionally a renormalization scale", "µ$_{R}$", "associated with the running coupling", "α$_{s}$", "is", "included in the perturbative cross section.", "Parameterizations of PDFs may be found from, e.g., the$_{CTEQ}$ collabora-", "tion [161], GRV [162], MRST [163], or Alekhin [164]. Hadronic fragmentation", "functions have similarly been parameterized by, e.g., DSS [165], AKK [166],", "HKNS [167], and KKP [168]; [169] provides a photon FF. We note that the", "posted code for KKP has a bug in its leading order (LO) kaon output that", "has still not been corrected; ported", "Mathematica", "codes for the DSS and KKP", "fragmentation functions, as well as a corrected$_{Fortran}$ code for KKP can be", "found online [170]. Although PDFs and FFs at a specific scale must be found", "from experiment, their form is constrained by QCD and general sum rule con-", "siderations and their evolution is governed by pQCD and DGLAP dynamics", "[171–173].", "Derivations of perturbative cross sections vary depending on the specific", "reaction considered. For those involving gluons and light guarks NLO calcu-" ]
[ [ 824, 124, 19, 13 ], [ 180, 124, 193, 13 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 177, 663, 292 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 486, 663, 323 ], [ 180, 827, 663, 44 ], [ 180, 827, 663, 44 ] ]
[ [ 824, 124, 19, 13 ], [ 180, 124, 193, 13 ], [ 180, 177, 56, 13 ], [ 243, 177, 10, 13 ], [ 260, 177, 389, 13 ], [ 655, 177, 18, 13 ], [ 681, 177, 31, 13 ], [ 718, 177, 18, 13 ], [ 742, 177, 15, 13 ], [ 761, 177, 21, 13 ], [ 782, 177, 61, 13 ], [ 180, 208, 18, 13 ], [ 205, 208, 15, 13 ], [ 226, 208, 47, 13 ], [ 280, 208, 480, 13 ], [ 766, 208, 17, 13 ], [ 789, 208, 54, 13 ], [ 180, 239, 240, 13 ], [ 426, 239, 10, 13 ], [ 442, 239, 31, 13 ], [ 479, 239, 19, 13 ], [ 505, 239, 338, 13 ], [ 180, 270, 342, 13 ], [ 531, 270, 8, 13 ], [ 547, 270, 141, 13 ], [ 697, 270, 11, 13 ], [ 716, 270, 127, 13 ], [ 180, 301, 170, 13 ], [ 357, 301, 15, 13 ], [ 378, 301, 31, 13 ], [ 415, 301, 15, 13 ], [ 433, 301, 15, 13 ], [ 450, 301, 19, 13 ], [ 470, 301, 61, 13 ], [ 537, 301, 20, 13 ], [ 564, 301, 15, 13 ], [ 585, 301, 32, 13 ], [ 618, 301, 225, 13 ], [ 180, 332, 15, 13 ], [ 202, 332, 10, 13 ], [ 212, 332, 5, 13 ], [ 223, 332, 8, 13 ], [ 232, 332, 42, 13 ], [ 280, 332, 8, 13 ], [ 294, 332, 199, 13 ], [ 499, 332, 10, 13 ], [ 511, 332, 15, 13 ], [ 529, 332, 8, 13 ], [ 543, 331, 20, 14 ], [ 569, 332, 8, 13 ], [ 579, 332, 15, 13 ], [ 597, 332, 16, 13 ], [ 621, 332, 79, 13 ], [ 705, 332, 8, 13 ], [ 719, 332, 124, 13 ], [ 180, 363, 33, 13 ], [ 221, 363, 11, 13 ], [ 232, 363, 611, 13 ], [ 180, 394, 569, 13 ], [ 757, 394, 11, 13 ], [ 768, 391, 3, 9 ], [ 768, 394, 75, 13 ], [ 180, 424, 267, 13 ], [ 454, 424, 22, 13 ], [ 483, 424, 314, 13 ], [ 804, 424, 19, 13 ], [ 830, 424, 13, 13 ], [ 180, 455, 360, 13 ], [ 210, 486, 633, 13 ], [ 180, 517, 663, 13 ], [ 180, 548, 663, 13 ], [ 180, 579, 663, 13 ], [ 180, 610, 663, 13 ], [ 180, 641, 299, 13 ], [ 486, 641, 109, 13 ], [ 603, 641, 240, 13 ], [ 180, 672, 663, 13 ], [ 180, 703, 663, 13 ], [ 180, 734, 663, 13 ], [ 180, 765, 663, 13 ], [ 180, 796, 84, 13 ], [ 210, 827, 633, 13 ], [ 180, 858, 663, 13 ] ]
[ 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
6ae88f496896d5f91cc89569094904739490cd159687184bfd270708778a43a8
1011.4316.pdf
53
282
612
792
1,025
1,025
arxiv_doublespaced
scientific_articles
3324
[ "CHAPTER", "SEVEN", "INPUT AND OUTPUT", "7.1", "Fancier Output Formatting", "There are several ways to present the output of a program; data can be printed in a human-readable form, or written", "to a file for future use. This chapter will discuss some of the possibilities.", "So far we’ve encountered two ways of writing values:", "expression statements", "and the", "print()", "function. (A third way", "is using the$_{write()}$", "method of file objects; the standard output file can be referenced as$_{sys.stdout}$", ". See the", "Library Reference for more information on this.)", "Often you’ll want more control over the formatting of your output than simply printing space-separated values. There", "are several ways to format output.", "•", "To use", "formatted string literals", ", begin a string with$_{f}$or$_{F}$ before the opening quotation mark or triple quotation", "mark.", "Inside this string, you can write a Python expression between", "{", "and", "}", "characters that can refer to", "variables or literal values.", "•", "The$_{str.format()}$", "method of strings requires more manual effort. You’ll still use$_{{}$ and$_{}}$ to mark where", "a variable will be substituted and can provide detailed formatting directives, but you’ll also need to provide the", "information to be formatted.", ">>>", "year =2016", ">>>", "event='Referendum'", ">>>", "f'Results of the", "{", "year", "} {", "event", "}", "'", "'Results of the 2016 Referendum'", ">>>", "yes_votes=42_572_654", ">>>", "no_votes=43_132_495", ">>>", "percentage=yes_votes/(yes_votes+no_votes)", ">>>", "'", "{:-9}", "YES votes", "{:2.2%}", "'.format(yes_votes, percentage)", "' 42572654 YES votes", "49.67%'", "•", "Finally, you can do all the string handling yourself by using string slicing and concatenation operations to create", "any layout you can imagine. The string type has some methods that perform useful operations for padding", "strings to a given column width.", "When you don’t need fancy output but just want a quick display of some variables for debugging purposes, you can", "convert any value to a string with the$_{repr()}$", "or$_{str()}$", "functions.", "The$_{str()}$", "function is meant to return representations of values which are fairly human-readable, while$_{repr()}$", "is meant to generate representations which can be read by the interpreter (or will force a$_{SyntaxError}$if there is", "no equivalent syntax). For objects which don’t have a particular representation for human consumption,$_{str()}$", "will", "return the same value as$_{repr()}$", ". Many values, such as numbers or structures like lists and dictionaries, have the", "same representation using either function. Strings, in particular, have two distinct representations.", "Some examples:", "49" ]
[ [ 816, 111, 84, 42 ], [ 816, 111, 84, 42 ], [ 652, 203, 248, 17 ], [ 123, 336, 361, 17 ], [ 123, 336, 361, 17 ], [ 123, 278, 777, 26 ], [ 123, 278, 777, 26 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 376, 777, 41 ], [ 123, 427, 777, 26 ], [ 123, 427, 777, 26 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 464, 749, 41 ], [ 151, 587, 749, 41 ], [ 151, 587, 749, 41 ], [ 151, 587, 749, 41 ], [ 151, 587, 749, 41 ], [ 151, 587, 749, 41 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 519, 352, 49 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 166, 643, 603, 63 ], [ 151, 724, 749, 41 ], [ 151, 724, 749, 41 ], [ 151, 724, 749, 41 ], [ 151, 724, 749, 41 ], [ 123, 775, 777, 26 ], [ 123, 775, 777, 26 ], [ 123, 775, 777, 26 ], [ 123, 775, 777, 26 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 811, 794, 70 ], [ 123, 891, 109, 12 ], [ 881, 964, 19, 12 ] ]
[ [ 817, 111, 83, 12 ], [ 816, 136, 84, 17 ], [ 652, 203, 248, 17 ], [ 123, 336, 42, 17 ], [ 178, 336, 306, 17 ], [ 123, 278, 777, 12 ], [ 123, 292, 491, 12 ], [ 123, 376, 351, 12 ], [ 480, 376, 138, 12 ], [ 623, 376, 48, 12 ], [ 675, 378, 91, 10 ], [ 751, 376, 149, 12 ], [ 123, 391, 169, 12 ], [ 281, 391, 575, 12 ], [ 840, 391, 60, 12 ], [ 123, 405, 328, 12 ], [ 123, 427, 777, 12 ], [ 123, 442, 226, 12 ], [ 151, 464, 8, 12 ], [ 166, 464, 44, 12 ], [ 214, 464, 152, 12 ], [ 367, 464, 533, 12 ], [ 166, 478, 39, 12 ], [ 217, 478, 426, 12 ], [ 650, 480, 4, 10 ], [ 667, 478, 24, 12 ], [ 697, 480, 8, 10 ], [ 714, 478, 186, 12 ], [ 166, 493, 170, 12 ], [ 151, 587, 9, 12 ], [ 169, 587, 185, 12 ], [ 325, 587, 575, 12 ], [ 166, 602, 734, 12 ], [ 166, 616, 191, 12 ], [ 166, 519, 51, 9 ], [ 203, 519, 133, 9 ], [ 166, 533, 51, 9 ], [ 203, 533, 193, 9 ], [ 166, 546, 51, 9 ], [ 203, 546, 152, 9 ], [ 361, 546, 4, 9 ], [ 370, 546, 36, 9 ], [ 407, 546, 22, 9 ], [ 435, 546, 54, 9 ], [ 481, 546, 7, 9 ], [ 491, 546, 17, 9 ], [ 166, 559, 352, 9 ], [ 166, 643, 51, 9 ], [ 203, 643, 277, 9 ], [ 166, 656, 51, 9 ], [ 203, 656, 268, 9 ], [ 166, 669, 51, 9 ], [ 203, 669, 455, 9 ], [ 166, 683, 51, 9 ], [ 203, 683, 17, 9 ], [ 213, 683, 63, 9 ], [ 268, 683, 85, 9 ], [ 370, 683, 97, 9 ], [ 435, 683, 334, 9 ], [ 166, 696, 259, 9 ], [ 444, 696, 120, 9 ], [ 151, 724, 6, 12 ], [ 163, 724, 737, 12 ], [ 166, 738, 734, 12 ], [ 166, 753, 214, 12 ], [ 123, 775, 777, 12 ], [ 123, 789, 331, 12 ], [ 441, 789, 89, 12 ], [ 515, 789, 65, 12 ], [ 123, 811, 101, 12 ], [ 211, 811, 706, 12 ], [ 123, 826, 777, 12 ], [ 123, 840, 766, 12 ], [ 875, 840, 25, 12 ], [ 123, 855, 249, 12 ], [ 355, 855, 545, 12 ], [ 123, 869, 654, 12 ], [ 123, 891, 109, 12 ], [ 881, 964, 19, 12 ] ]
[ 5, 5, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
24727a78e98ec75d141f5a65a7a68ed28b1d6364f6cd9886f61d41f361a08361
python_tutorial.pdf
54
149
595
841
1,025
1,025
manuals
manuals
3325
[ "NOTES TO THE CONSOLIDATED FINANCIAL STATEMENTS", "165", "12/31/2003", "12/31/2002", "¤", "mn", "¤", "mn", "Underwriting commitments", "–", "7", "Irrevocable loan commitments", "Advances", "25,595", "31,321", "Stand-by facilities", "7,909", "11,567", "Guarantee credits", "2,817", "2,942", "Discount credits", "40", "75", "Mortgage loans/Public-sector loans", "229", "307", "Total other commitments", "36,590", "46,219", "12/31/2003", "12/31/2002", "¤", "mn", "¤", "mn", "Contingent liabilities on endorsed bills ", "of exchange settled with customers", "–", "1", "Including: rediscounted at central banks", "(–)", "(–)", "Contingencies on guarantees and ", "warranties", "Credit guarantees", "1,476", "1,878", "Other guarantees and warranties", "16,223", "16,234", "Letters of credit", "1,583", "2,092", "of which:", "letters of credit opened", "(919)", "(1,107)", "letters of credit confirmed", "(664)", "(985)", "Subtotal", "19,282", "20,205", "Liability on collateral pledged for third-", "party liabilities", "8", "–", "Other contingent liabilities", "63", "385", "Total contingent liabilities", "19,353", "20,590", "Other contingent liabilities and other commitments", "Other contingent liabilities and other commitments resulting prima-", "rily from our banking business include the Group’s potential future", "liabilities under loan commitments to customers not yet drawn upon,", "with the term of such commitments being limited. The Group en-", "gages in providing open credit facilities to allow customers quick ac-", "cess to funds required to meet their short-term obligations as well", "as their long-term financing needs. Such credit facilities can take the", "form of guarantees, whereby the Group might guarantee repayment", "of a loan taken out by a client with a third party, stand-by letters of", "credit which are credit enhancement facilities enabling customers to", "engage in trade finance at lower cost, documentary letters of credit", "which are payments related to foreign trade finance made on be-", "half of a customer and reimbursed to the Group later, note issuance", "facilities and revolving underwriting facilities which allow customers", "to issue money-market paper or medium-term notes when required", "without engaging in the normal underwriting process on each occa-", "sion. Revenue for guarantees is recognized under “Fee and commis-", "sion income” and is determined by application of agreed rates on the", "nominal amount of the guarantees.", "Other contingent liabilities and other liabilities comprise:", "The liability arising from Dresdner Bank’s interest in Bankhaus", "Reuschel & Co. is unlimited due to the legal form in which this en-", "terprise is organized. The financial status of the other partners in-", "volved is sound. ", "The shares in LIKO are owned 30 % by Deutsche Bundesbank,", "with the rest of the shares being held by other German banks and", "banking associations. The shareholders have provided capital of ", "¤", "200", "mn to fund LIKO; Dresdner Bank’s participation is ", "¤", "12.1", "mn (6.05 %).", "The Dresdner Bank Group is contingently liable to pay in further as-", "sessments to LIKO up to ", "¤", "60.5", "mn. In addition, under clause § 5 (4)", "of the Articles of Association of LIKO, Dresdner Bank is committed", "to a secondary liability which arises if other shareholders do not ful-", "fill their commitments to pay their further assessment. In all cases", "of secondary liability, the financial status of the other shareholders in-", "volved is sound.", "Liquiditäts-Konsortialbank GmbH (LIKO) is a bank founded in", "1974 in order to provide funding for German banks which experience", "liquidity problems. ", "On the balance sheet date commitments to pay up shares, bonds", "and other capital interests totaled ", "¤76 (2002: ", "85)", "mn; secondary li-", "ability under clause § 24 of the German Limited Liability Companies", "Act (GmbH-Gesetz) were ", "¤", "16", "(2002: 16) mn, and obligations arising", "from hire, rental and leasing agreements existed in an aggregate", "amount of ", "¤2,845 (2002: ", "2,920) mn.", "As of December 31, 2003 there were no underwriting commit-", "ments drawn.", "The figures disclosed in the accompanying tables represent the", "amounts at risk should customers draw fully on all facilities and then", "default, excluding the effect of any collateral. The majority of these", "commitments may expire without being drawn upon and are not rep-", "resentative of actual future credit exposure or liquidity requirements", "for such commitments. " ]
[ [ 591, 37, 352, 9 ], [ 591, 37, 352, 9 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 537, 96, 406, 188 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 490, 406, 313 ], [ 98, 96, 350, 12 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 114, 405, 325 ], [ 98, 463, 339, 11 ], [ 538, 804, 405, 63 ], [ 538, 804, 405, 63 ], [ 538, 804, 405, 63 ], [ 538, 804, 405, 63 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 612, 405, 185 ], [ 538, 559, 405, 46 ], [ 538, 559, 405, 46 ], [ 538, 559, 405, 46 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 455, 406, 98 ], [ 538, 420, 405, 28 ], [ 538, 420, 405, 28 ], [ 538, 315, 406, 98 ], [ 538, 315, 406, 98 ], [ 538, 315, 406, 98 ], [ 538, 315, 406, 98 ], [ 538, 315, 406, 98 ], [ 538, 315, 406, 98 ] ]
[ [ 591, 39, 322, 7 ], [ 924, 37, 20, 9 ], [ 798, 104, 57, 9 ], [ 877, 104, 57, 9 ], [ 827, 117, 8, 9 ], [ 840, 117, 16, 9 ], [ 905, 117, 8, 9 ], [ 918, 117, 16, 9 ], [ 548, 144, 149, 10 ], [ 849, 144, 6, 10 ], [ 927, 144, 7, 10 ], [ 548, 160, 166, 10 ], [ 563, 176, 51, 10 ], [ 817, 176, 38, 10 ], [ 898, 176, 35, 10 ], [ 563, 192, 95, 10 ], [ 824, 192, 32, 10 ], [ 898, 192, 36, 10 ], [ 563, 209, 96, 10 ], [ 827, 209, 29, 10 ], [ 902, 209, 31, 10 ], [ 563, 225, 87, 10 ], [ 841, 225, 14, 10 ], [ 920, 225, 14, 10 ], [ 563, 241, 191, 10 ], [ 835, 241, 21, 10 ], [ 913, 241, 21, 10 ], [ 548, 265, 143, 10 ], [ 817, 265, 39, 10 ], [ 897, 265, 36, 10 ], [ 359, 499, 57, 9 ], [ 437, 499, 57, 9 ], [ 387, 512, 8, 9 ], [ 400, 512, 16, 9 ], [ 465, 512, 8, 9 ], [ 478, 512, 16, 9 ], [ 108, 540, 216, 10 ], [ 120, 552, 194, 10 ], [ 409, 552, 6, 10 ], [ 487, 552, 7, 10 ], [ 123, 569, 218, 10 ], [ 399, 569, 16, 10 ], [ 478, 569, 16, 10 ], [ 108, 585, 186, 10 ], [ 123, 597, 55, 10 ], [ 123, 614, 96, 10 ], [ 386, 614, 29, 10 ], [ 464, 614, 30, 10 ], [ 123, 630, 178, 10 ], [ 379, 630, 37, 10 ], [ 457, 630, 37, 10 ], [ 123, 646, 85, 10 ], [ 385, 646, 30, 10 ], [ 463, 646, 31, 10 ], [ 123, 662, 50, 10 ], [ 137, 679, 127, 10 ], [ 387, 679, 29, 10 ], [ 456, 679, 37, 10 ], [ 137, 695, 141, 10 ], [ 384, 695, 31, 10 ], [ 463, 695, 31, 10 ], [ 108, 715, 47, 10 ], [ 379, 715, 37, 10 ], [ 456, 715, 38, 10 ], [ 108, 731, 213, 10 ], [ 123, 744, 79, 10 ], [ 409, 744, 7, 10 ], [ 488, 744, 6, 10 ], [ 108, 760, 144, 10 ], [ 402, 760, 14, 10 ], [ 473, 760, 21, 10 ], [ 108, 784, 147, 10 ], [ 379, 784, 37, 10 ], [ 455, 784, 39, 10 ], [ 98, 96, 350, 12 ], [ 98, 114, 405, 11 ], [ 98, 132, 405, 11 ], [ 98, 149, 405, 11 ], [ 98, 167, 405, 11 ], [ 98, 184, 405, 11 ], [ 98, 202, 405, 11 ], [ 98, 219, 405, 11 ], [ 98, 237, 405, 11 ], [ 98, 254, 405, 11 ], [ 98, 271, 405, 11 ], [ 98, 289, 405, 11 ], [ 98, 306, 405, 11 ], [ 98, 324, 405, 11 ], [ 98, 341, 405, 11 ], [ 98, 359, 405, 11 ], [ 98, 376, 405, 11 ], [ 98, 394, 405, 11 ], [ 98, 411, 405, 11 ], [ 98, 428, 211, 11 ], [ 98, 463, 339, 11 ], [ 562, 804, 381, 11 ], [ 538, 821, 405, 11 ], [ 538, 839, 405, 11 ], [ 538, 856, 101, 11 ], [ 562, 612, 381, 11 ], [ 538, 629, 405, 11 ], [ 538, 647, 372, 11 ], [ 911, 647, 10, 11 ], [ 922, 647, 21, 11 ], [ 538, 664, 291, 11 ], [ 829, 664, 10, 11 ], [ 840, 664, 24, 11 ], [ 868, 664, 75, 11 ], [ 538, 682, 405, 11 ], [ 538, 699, 147, 11 ], [ 686, 699, 10, 11 ], [ 697, 699, 25, 11 ], [ 726, 699, 217, 11 ], [ 538, 716, 405, 11 ], [ 538, 734, 405, 11 ], [ 538, 751, 405, 11 ], [ 538, 769, 405, 11 ], [ 538, 786, 96, 11 ], [ 562, 559, 381, 11 ], [ 538, 577, 405, 11 ], [ 538, 594, 115, 11 ], [ 562, 455, 381, 11 ], [ 538, 472, 204, 11 ], [ 742, 472, 73, 11 ], [ 815, 472, 20, 11 ], [ 840, 472, 103, 11 ], [ 538, 490, 405, 11 ], [ 538, 507, 152, 11 ], [ 691, 507, 10, 11 ], [ 702, 507, 14, 11 ], [ 720, 507, 223, 11 ], [ 538, 524, 406, 11 ], [ 538, 542, 66, 11 ], [ 604, 542, 92, 11 ], [ 696, 542, 65, 11 ], [ 562, 420, 381, 11 ], [ 538, 437, 81, 11 ], [ 538, 315, 406, 11 ], [ 538, 333, 405, 11 ], [ 538, 350, 405, 11 ], [ 538, 367, 405, 11 ], [ 538, 385, 405, 11 ], [ 538, 402, 141, 11 ] ]
[ 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
b2241e99f6700f5a47fde20ee97ca1e5ab65fd84b7ce10f69da7b741754c1bf9
NYSE_AZ_2003.pdf
168
198
595
793
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3326
[ "100", "Notes" ]
[ [ 95, 28, 47, 22 ], [ 453, 25, 92, 27 ] ]
[ [ 95, 28, 47, 22 ], [ 453, 25, 92, 27 ] ]
[ 5, 5 ]
88f67db3c46643445dffaae6bc995d1f19d96b8ab7674a626b2fcdcab6767ea1
driver-handbook.pdf
101
104
396
612
1,025
1,025
manuals
manuals
3327
[ "In thousands, except per share amounts", "Year ended December 31", "2002", "2001", "2000", "1999", "1998", "Book value", "$", "13.12", "$", "12.95", "$", "13.13", "$", "12.89", "$", "12.49", "Market price at year-end", "23.65", "25.75", "27.00", "30.31", "31.31", "Earnings per share", "1.25", "0.97", "1.31", "1.44", "1.31", "Dividends per share", "1.12", "1.115", "1.10", "1.085", "1.07", "Revenue", "263,151", "246,820", "244,806", "234,937", "214,926", "Net income", "19,073", "14,965", "19,963", "21,971", "19,860", "1", "Financial Highlights" ]
[ [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 137, 441, 788, 201 ], [ 981, 505, 6, 10 ], [ 138, 393, 274, 20 ] ]
[ [ 138, 443, 211, 8 ], [ 138, 470, 131, 8 ], [ 466, 466, 50, 15 ], [ 588, 470, 29, 8 ], [ 691, 470, 29, 8 ], [ 793, 470, 29, 8 ], [ 896, 470, 29, 8 ], [ 138, 505, 91, 11 ], [ 445, 505, 7, 11 ], [ 478, 505, 37, 11 ], [ 547, 505, 7, 11 ], [ 580, 505, 38, 11 ], [ 650, 505, 7, 11 ], [ 684, 505, 36, 11 ], [ 746, 505, 7, 11 ], [ 786, 505, 36, 11 ], [ 855, 505, 7, 11 ], [ 885, 505, 40, 11 ], [ 138, 530, 209, 11 ], [ 471, 530, 44, 11 ], [ 574, 530, 44, 11 ], [ 676, 530, 44, 11 ], [ 779, 530, 44, 11 ], [ 881, 530, 44, 11 ], [ 138, 555, 156, 11 ], [ 481, 555, 34, 11 ], [ 583, 555, 34, 11 ], [ 686, 555, 34, 11 ], [ 788, 555, 34, 11 ], [ 891, 555, 34, 11 ], [ 138, 580, 167, 11 ], [ 481, 580, 34, 11 ], [ 574, 580, 44, 11 ], [ 686, 580, 34, 11 ], [ 779, 580, 44, 11 ], [ 891, 580, 34, 11 ], [ 138, 605, 69, 11 ], [ 453, 605, 62, 11 ], [ 555, 605, 62, 11 ], [ 658, 605, 62, 11 ], [ 760, 605, 62, 11 ], [ 863, 605, 62, 11 ], [ 138, 630, 96, 11 ], [ 462, 630, 53, 11 ], [ 565, 630, 53, 11 ], [ 667, 630, 53, 11 ], [ 770, 630, 53, 11 ], [ 872, 630, 53, 11 ], [ 981, 505, 6, 10 ], [ 138, 393, 274, 20 ] ]
[ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 7 ]
3d15673764569ed8f19169fbec76fbda1519ce2a2f0f4db5652156f479763077
NYSE_CWT_2002.pdf
2
60
540
738
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3328
[ "‘‘(III) improve information sharing, coordina-", "tion, and communication among disparate bio-", "surveillance systems supported by the Department ", "of Health and Human Services, including the ", "identification of methods to improve accountability, ", "better utilize resources and workforce capabilities, ", "and incorporate innovative technologies within and ", "across agencies; and ", "‘‘(IV) test and evaluate capabilities of the inter-", "operable network of systems to improve situational ", "awareness and biosurveillance capabilities; ", "‘‘(iv) includes performance measures and the ", "metrics by which performance measures will be ", "assessed with respect to the measurable steps under ", "clause (iii); and ", "‘‘(v) establishes dates by which each measurable ", "step under clause (iii) will be implemented. ", "‘‘(B) ANNUAL BUDGET PLAN.—Not later than 2 years ", "after the date of enactment of the Pandemic and All-Haz-", "ards Preparedness and Advancing Innovation Act of 2019 ", "and on an annual basis thereafter, in accordance with ", "the strategy and implementation plan under this para-", "graph, the Secretary shall, taking into account rec-", "ommendations provided by the National Biodefense Science ", "Board, develop a budget plan based on the strategy and ", "implementation plan under this section. Such budget plan ", "shall include— ", "‘‘(i) a summary of resources previously expended ", "to establish, improve, and utilize the nationwide public ", "health situational awareness and biosurveillance net-", "work under paragraph (1); ", "‘‘(ii) estimates of costs and resources needed to ", "establish and improve the network under paragraph ", "(1)", "according to the strategy and implementation plan ", "under subparagraph (A); ", "‘‘(iii) the identification of gaps and inefficiencies ", "in nationwide public health situational awareness and ", "biosurveillance capabilities, resources, and authorities ", "needed to address such gaps; and ", "‘‘(iv) a strategy to minimize and address such gaps ", "and improve inefficiencies.’’; ", "(G)", "in paragraph (7), as so redesignated— ", "(i)", "in subparagraph (A), by inserting ‘‘(taking into ", "account zoonotic disease, including gaps in scientific ", "understanding of the interactions between human, ", "animal, and environmental health)’’ after ‘‘human ", "health’’; ", "(ii) in subparagraph (B)— ", "(I)", "by inserting ‘‘and gaps in surveillance pro-", "grams’’ after ‘‘surveillance programs’’; and ", "(II) by striking ‘‘; and’’ and inserting a semi-", "colon; ", "(iii) in subparagraph (C)— ", "(I)", "by inserting ‘‘, animal health organizations ", "related to zoonotic disease,’’ after ‘‘health care enti-", "ties’’; and ", "Evaluation. ", "Deadline. ", "Summary. ", "Cost estimates. ", "Strategy. ", "133 STAT. 922 ", "PUBLIC LAW 116–22—JUNE 24, 2019 " ]
[ [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 152, 411, 104 ], [ 440, 257, 403, 38 ], [ 440, 257, 403, 38 ], [ 440, 257, 403, 38 ], [ 406, 297, 447, 51 ], [ 406, 297, 447, 51 ], [ 406, 297, 447, 51 ], [ 406, 297, 447, 51 ], [ 406, 350, 441, 25 ], [ 406, 350, 441, 25 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 373, 376, 476, 130 ], [ 406, 508, 440, 51 ], [ 406, 508, 440, 51 ], [ 406, 508, 440, 51 ], [ 406, 508, 440, 51 ], [ 406, 561, 442, 51 ], [ 406, 561, 442, 51 ], [ 406, 561, 442, 51 ], [ 406, 561, 442, 51 ], [ 406, 561, 442, 51 ], [ 406, 614, 441, 51 ], [ 406, 614, 441, 51 ], [ 406, 614, 441, 51 ], [ 406, 614, 441, 51 ], [ 406, 667, 437, 25 ], [ 406, 667, 437, 25 ], [ 406, 693, 328, 12 ], [ 406, 693, 328, 12 ], [ 406, 706, 445, 64 ], [ 406, 706, 445, 64 ], [ 406, 706, 445, 64 ], [ 406, 706, 445, 64 ], [ 406, 706, 445, 64 ], [ 406, 706, 445, 64 ], [ 440, 772, 204, 12 ], [ 440, 785, 398, 25 ], [ 440, 785, 398, 25 ], [ 440, 785, 398, 25 ], [ 440, 811, 398, 25 ], [ 440, 811, 398, 25 ], [ 440, 837, 209, 12 ], [ 440, 850, 404, 38 ], [ 440, 850, 404, 38 ], [ 440, 850, 404, 38 ], [ 440, 850, 404, 38 ], [ 185, 259, 71, 9 ], [ 185, 378, 59, 9 ], [ 185, 510, 64, 9 ], [ 185, 563, 93, 9 ], [ 185, 668, 57, 9 ], [ 185, 121, 563, 13 ], [ 185, 121, 563, 13 ] ]
[ [ 473, 152, 365, 12 ], [ 440, 165, 398, 12 ], [ 440, 178, 404, 12 ], [ 440, 191, 411, 12 ], [ 440, 205, 403, 12 ], [ 440, 218, 404, 12 ], [ 440, 231, 403, 12 ], [ 440, 244, 161, 12 ], [ 473, 257, 365, 12 ], [ 440, 271, 403, 12 ], [ 440, 284, 339, 12 ], [ 440, 297, 413, 12 ], [ 406, 310, 447, 12 ], [ 406, 323, 440, 12 ], [ 406, 337, 122, 12 ], [ 440, 350, 407, 12 ], [ 406, 363, 338, 12 ], [ 406, 376, 441, 12 ], [ 373, 389, 465, 12 ], [ 373, 403, 473, 12 ], [ 373, 416, 476, 12 ], [ 373, 429, 465, 12 ], [ 373, 442, 465, 12 ], [ 373, 455, 470, 12 ], [ 373, 469, 474, 12 ], [ 373, 482, 472, 12 ], [ 373, 495, 120, 12 ], [ 440, 508, 407, 12 ], [ 406, 521, 437, 12 ], [ 406, 535, 432, 12 ], [ 406, 548, 209, 12 ], [ 440, 561, 408, 12 ], [ 406, 574, 441, 12 ], [ 406, 587, 21, 12 ], [ 433, 587, 412, 12 ], [ 406, 601, 196, 12 ], [ 440, 614, 408, 12 ], [ 406, 627, 438, 12 ], [ 406, 640, 439, 12 ], [ 406, 653, 262, 12 ], [ 440, 667, 404, 12 ], [ 406, 680, 222, 12 ], [ 406, 693, 24, 12 ], [ 435, 693, 299, 12 ], [ 440, 706, 16, 12 ], [ 461, 706, 384, 12 ], [ 406, 719, 441, 12 ], [ 406, 733, 444, 12 ], [ 406, 746, 445, 12 ], [ 406, 759, 66, 12 ], [ 440, 772, 204, 12 ], [ 473, 785, 17, 12 ], [ 495, 785, 343, 12 ], [ 440, 798, 330, 12 ], [ 473, 811, 365, 12 ], [ 440, 824, 49, 12 ], [ 440, 837, 209, 12 ], [ 473, 850, 17, 12 ], [ 495, 850, 349, 12 ], [ 440, 863, 398, 12 ], [ 440, 876, 77, 12 ], [ 185, 259, 71, 9 ], [ 185, 378, 59, 9 ], [ 185, 510, 64, 9 ], [ 185, 563, 93, 9 ], [ 185, 668, 57, 9 ], [ 185, 121, 134, 13 ], [ 401, 121, 347, 13 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 5 ]
1efe7ec8a0a2382d2410efc6aba6d1233f3a7643ecacae79408df03b6918577e
PLAW-116publ22.pdf
17
61
612
792
1,025
1,025
us_laws
laws_and_regulations
3329
[ "26", "Capital position", "AEGON’s core capital position improved considerably ", "during the year to EUR 18.7 billion, as a result of a ", "further increase in the value of the company’s ", "investments and the inclusion of 2010 net income. These ", "positive effects were partly offset by the repayment of ", "EUR 500 million to the Dutch State, as well as coupon, ", "premium and dividend payments on AEGON securities. ", "At the end of 2010, AEGON’s excess capital above AA ", "capital adequacy requirements totaled EUR 3.8 billion. ", "During the year, AEGON businesses generated ", "EUR 2.7 billion of cash flows, while the company invested ", "EUR 1.3 billion in new business and upstreamed EUR 1.3 ", "billion to the holding company. AEGON’s solvency ratio ", "under the EU Insurance Group Directive remained strong ", "and amounted to 198%$^{ 1}$ at year-end 2010.", "Net income", "In EUR million", "1,760", "204", "10", "09", "Underlying earnings before tax", "In EUR million", "1,972", "1,185", "10", "09", "New life sales", "In EUR million", "2,213", "2,100", "10", "09", "Gross deposits ", "(excluding run-off business)", "In EUR billion", "32.6", "27.6", "10", "09", "Operating expenses", "In EUR million", "3,397", "3,292", "10", "09", "Revenue-generating investments", "In EUR million", "413", "363", "10", "09", "Value of new business (VNB)", "In EUR million", "555", "767", "10", "09", "In EUR million", "2010 ", "2009", "Americas", "1,598", "817", "The Netherlands", "385", "398", "United Kingdom", "72", "52", "New Markets", "200", "170", "Holding and other activities", "(283)", "(252)", "UNDERLYING EARNINGS BEFORE TAX", "1,972", "1,185", "Underlying earnings geographically AEGON worldwide", "1", "Please refer to note 46 of the consolidated fi nancial statements." ]
[ [ 51, 36, 17, 11 ], [ 102, 153, 120, 10 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 502, 154, 369, 102 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 102, 169, 371, 118 ], [ 500, 461, 370, 57 ], [ 500, 461, 370, 57 ], [ 500, 461, 370, 57 ], [ 500, 461, 370, 57 ], [ 500, 461, 370, 57 ], [ 500, 461, 370, 57 ], [ 101, 461, 369, 57 ], [ 101, 461, 369, 57 ], [ 101, 461, 369, 57 ], [ 101, 461, 369, 57 ], [ 101, 461, 369, 57 ], [ 101, 461, 369, 57 ], [ 101, 538, 369, 57 ], [ 101, 538, 369, 57 ], [ 101, 538, 369, 57 ], [ 101, 538, 369, 57 ], [ 101, 538, 369, 57 ], [ 101, 538, 369, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 499, 538, 373, 57 ], [ 500, 616, 370, 58 ], [ 500, 616, 370, 58 ], [ 500, 616, 370, 58 ], [ 500, 616, 370, 58 ], [ 500, 616, 370, 58 ], [ 500, 616, 370, 58 ], [ 100, 616, 371, 57 ], [ 100, 616, 371, 57 ], [ 100, 616, 371, 57 ], [ 100, 616, 371, 57 ], [ 100, 616, 371, 57 ], [ 100, 616, 371, 57 ], [ 99, 693, 373, 57 ], [ 99, 693, 373, 57 ], [ 99, 693, 373, 57 ], [ 99, 693, 373, 57 ], [ 99, 693, 373, 57 ], [ 99, 693, 373, 57 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 100, 805, 771, 115 ], [ 102, 791, 369, 9 ], [ 102, 930, 374, 8 ], [ 102, 930, 374, 8 ] ]
[ [ 51, 36, 17, 11 ], [ 102, 153, 120, 10 ], [ 502, 154, 345, 9 ], [ 502, 169, 325, 9 ], [ 502, 185, 301, 9 ], [ 502, 200, 369, 9 ], [ 502, 216, 356, 9 ], [ 502, 231, 355, 9 ], [ 502, 247, 356, 9 ], [ 102, 169, 346, 9 ], [ 102, 185, 355, 9 ], [ 102, 200, 301, 9 ], [ 102, 216, 370, 9 ], [ 102, 231, 360, 9 ], [ 102, 247, 356, 9 ], [ 102, 262, 371, 9 ], [ 102, 278, 271, 9 ], [ 502, 462, 78, 9 ], [ 502, 475, 79, 8 ], [ 806, 494, 33, 8 ], [ 562, 509, 26, 8 ], [ 503, 491, 15, 9 ], [ 503, 508, 16, 8 ], [ 102, 462, 211, 9 ], [ 103, 475, 79, 8 ], [ 414, 494, 34, 8 ], [ 301, 509, 31, 8 ], [ 103, 491, 15, 9 ], [ 103, 508, 16, 8 ], [ 102, 539, 94, 9 ], [ 103, 552, 79, 8 ], [ 436, 571, 34, 8 ], [ 419, 587, 35, 8 ], [ 103, 569, 15, 9 ], [ 103, 585, 16, 8 ], [ 502, 539, 106, 9 ], [ 608, 539, 181, 9 ], [ 502, 552, 75, 8 ], [ 755, 571, 29, 8 ], [ 720, 587, 29, 8 ], [ 503, 569, 15, 9 ], [ 503, 585, 16, 8 ], [ 502, 617, 135, 9 ], [ 502, 630, 79, 8 ], [ 822, 649, 37, 8 ], [ 812, 664, 38, 8 ], [ 503, 646, 15, 9 ], [ 503, 663, 16, 8 ], [ 102, 617, 228, 9 ], [ 103, 630, 79, 8 ], [ 366, 649, 22, 8 ], [ 337, 664, 25, 8 ], [ 103, 646, 15, 9 ], [ 103, 663, 16, 8 ], [ 102, 694, 198, 9 ], [ 103, 707, 79, 8 ], [ 320, 726, 25, 8 ], [ 394, 742, 23, 8 ], [ 103, 724, 15, 9 ], [ 103, 740, 16, 8 ], [ 102, 806, 79, 8 ], [ 747, 805, 39, 9 ], [ 821, 805, 37, 9 ], [ 102, 825, 57, 9 ], [ 750, 826, 31, 8 ], [ 837, 826, 21, 8 ], [ 102, 842, 101, 9 ], [ 760, 842, 21, 8 ], [ 837, 842, 21, 8 ], [ 102, 859, 97, 9 ], [ 768, 859, 14, 8 ], [ 844, 859, 14, 8 ], [ 102, 875, 78, 9 ], [ 760, 876, 21, 8 ], [ 837, 876, 21, 8 ], [ 102, 892, 168, 9 ], [ 756, 893, 29, 8 ], [ 833, 893, 29, 8 ], [ 102, 909, 253, 9 ], [ 744, 909, 37, 9 ], [ 821, 909, 37, 9 ], [ 102, 791, 369, 9 ], [ 102, 930, 3, 8 ], [ 109, 930, 367, 8 ] ]
[ 5, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 9, 9 ]
a4e05de03285f7587a406e15d365f75e4a72476aeaa73d9ed3b0776540cbc10a
NYSE_AEG_2010.pdf
29
258
566
793
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3330
[ "ceptible nodes become infected [18]. The quantity characterizing the role of nodes in SIS", "spreading is the persistence,", "ρ$_{i}$", "(", "t", "), defined as the probability that node", "i", "is infected at time", "t", "[7]. In an endemic SIS state, which is reached asymptotically,", "ρ$_{i}$", "becomes independent of", "t", ". The persistence", "ρ", "has been shown to be higher in hubs which are reinfected frequently", "due to the large number of their neighbors [7, 24, 25]. To uncover the role of", "k", "-shell layers", "in SIS spreading we use the joint persistence function", "ρ", "(", "k$_{S}$, k", ")", "≡", "∑", "i", "∈", "Υ(", "k$_{S}$,k", ")", "ρ$_{i}$", "N", "(", "k$_{S}$, k", ")", ".", "(6)", "15", "Here we present results for the virus persistence in the Actor, Collaboration, Email and", "RL Internet Networks. Similar to Fig. 4, we depict", "ρ", "(", "k$_{S}$, k", ") in both supercritical (", "β > β$_{c}$", ")", "and subcritical (", "β < β$_{c}$", ") regimes, where", "β$_{c}$", "is the critical threshold.", "In the supercritical", "regime,", "ρ", "(", "k, k$_{S}$", ") increases with both", "k", "and", "k$_{S}$", ", with maximum values corresponding to hubs", "in the innermost layers (see Fig. 15). As depicted in Fig. 15, in the subcritical regime, viruses", "persist only in the highest", "k$_{S}$", "layers, while the probability of finding an infected node in low", "k", "-shells is negligible.", "In order to determine in the above networks the actual epidemic threshold", "β$_{c}$", "we study", "the behavior of SIS spreading over a wide range of", "β", "values.", "In order to highlight the", "role of", "k", "-shells in spreading, we organize several groups of nodes based on the", "k$_{S}$", "layers of", "each network. Every such group comprises approximately 100 randomly chosen nodes with", "the corresponding", "k", "-shell indices. In order to achieve similar average degree in each of the", "groups, we pick nodes with uniform probability based on their degree. As shown in Fig. 16,", "virus persistence is consistently higher in the inner", "k", "-shells for all values of", "β", ". Moreover,", "we find substantially lower epidemic thresholds than in the random cases", "β$_{c}$ < β", "rand", "c", "in all", "considered networks except for the Email Contact network.", "The results of Figs. 15 and 16 suggest that the observed persistence of a virus is due to", "the dense sub-network formed by nodes in the innermost", "k", "-shell, which helps the virus to", "consistently survive locally in this area. Indeed, the innermost layers can be regarded as", "a small subgraph exclusively consisting of hubs. By definition, all nodes in this innermost", "k", "-shell will have degrees", "k", "≥", "k$_{S}$$_{max}$", ". Therefore, as a simple approximation, one can regard", "the innermost core of a network as a regular graph consisting of nodes with the same degree", "k", "=", "k$_{S}$$_{max}$", ".", "The mean-field solution of the SIS spreading in a regular graph can be found, for instance" ]
[ [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 120, 94, 780, 150 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 389, 255, 511, 46 ], [ 491, 978, 19, 15 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 316, 780, 177 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 506, 780, 231 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 120, 750, 780, 177 ], [ 145, 939, 755, 15 ] ]
[ [ 120, 94, 780, 15 ], [ 120, 121, 239, 15 ], [ 367, 121, 14, 15 ], [ 383, 121, 7, 15 ], [ 391, 121, 7, 15 ], [ 398, 121, 328, 15 ], [ 732, 121, 6, 15 ], [ 746, 121, 155, 15 ], [ 120, 148, 7, 15 ], [ 134, 148, 531, 15 ], [ 673, 148, 14, 15 ], [ 695, 148, 205, 15 ], [ 120, 175, 7, 15 ], [ 127, 175, 151, 15 ], [ 287, 175, 10, 15 ], [ 304, 175, 596, 15 ], [ 120, 202, 663, 15 ], [ 790, 202, 10, 15 ], [ 801, 202, 99, 15 ], [ 120, 229, 458, 15 ], [ 389, 269, 10, 15 ], [ 399, 269, 7, 15 ], [ 407, 269, 39, 15 ], [ 447, 269, 7, 15 ], [ 460, 269, 15, 15 ], [ 499, 255, 28, 32 ], [ 481, 292, 4, 9 ], [ 486, 292, 9, 9 ], [ 496, 292, 16, 10 ], [ 512, 292, 27, 9 ], [ 541, 292, 5, 10 ], [ 580, 258, 14, 15 ], [ 551, 280, 15, 15 ], [ 569, 280, 7, 15 ], [ 577, 280, 39, 15 ], [ 617, 280, 7, 15 ], [ 626, 269, 5, 15 ], [ 876, 269, 25, 15 ], [ 491, 978, 19, 15 ], [ 145, 316, 755, 15 ], [ 120, 343, 443, 15 ], [ 571, 343, 10, 15 ], [ 581, 343, 7, 15 ], [ 589, 343, 39, 15 ], [ 629, 343, 205, 15 ], [ 834, 343, 58, 15 ], [ 893, 343, 7, 15 ], [ 120, 371, 145, 15 ], [ 265, 371, 62, 15 ], [ 329, 371, 144, 15 ], [ 482, 371, 17, 15 ], [ 509, 371, 209, 15 ], [ 733, 371, 167, 15 ], [ 120, 398, 61, 15 ], [ 188, 398, 10, 15 ], [ 198, 398, 7, 15 ], [ 206, 398, 38, 15 ], [ 246, 398, 179, 15 ], [ 432, 398, 10, 15 ], [ 449, 398, 31, 15 ], [ 486, 398, 18, 15 ], [ 507, 398, 393, 15 ], [ 120, 425, 780, 15 ], [ 120, 452, 221, 15 ], [ 347, 452, 18, 15 ], [ 374, 452, 527, 15 ], [ 120, 479, 10, 15 ], [ 131, 479, 164, 15 ], [ 145, 506, 646, 15 ], [ 799, 506, 17, 15 ], [ 824, 506, 76, 15 ], [ 120, 533, 456, 15 ], [ 586, 533, 11, 15 ], [ 607, 533, 57, 15 ], [ 681, 533, 219, 15 ], [ 120, 560, 54, 15 ], [ 182, 560, 10, 15 ], [ 192, 560, 602, 15 ], [ 802, 560, 18, 15 ], [ 830, 560, 71, 15 ], [ 120, 587, 780, 15 ], [ 120, 614, 153, 15 ], [ 281, 614, 10, 15 ], [ 292, 614, 609, 15 ], [ 120, 641, 780, 15 ], [ 120, 668, 443, 15 ], [ 572, 668, 10, 15 ], [ 583, 668, 195, 15 ], [ 786, 668, 11, 15 ], [ 798, 668, 102, 15 ], [ 120, 695, 633, 15 ], [ 761, 695, 57, 15 ], [ 821, 694, 28, 10 ], [ 819, 704, 6, 9 ], [ 857, 695, 44, 15 ], [ 120, 722, 508, 15 ], [ 145, 750, 755, 15 ], [ 120, 777, 494, 15 ], [ 623, 777, 10, 15 ], [ 633, 777, 267, 15 ], [ 120, 804, 780, 15 ], [ 120, 831, 780, 15 ], [ 120, 858, 10, 15 ], [ 131, 858, 197, 15 ], [ 336, 858, 10, 15 ], [ 354, 858, 15, 15 ], [ 376, 858, 43, 15 ], [ 421, 858, 479, 15 ], [ 120, 885, 780, 15 ], [ 120, 912, 10, 15 ], [ 137, 912, 15, 15 ], [ 157, 912, 43, 15 ], [ 202, 912, 5, 15 ], [ 145, 939, 755, 15 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
203ccc663f9811504cedbf60b6724cc76027ea116abe46b76e73ebb43b2134b9
1001.5285.pdf
32
36
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3331
[ "function of the laboratory frame (", "ψ$_{0}$", ") evaluated at the co-", "ordinates", "ξ", "of the co-moving frame:", "wave function", "˜", "ψ", "is not at all close to the instantaneous", "ground-state of", "ˆ", "H", "(", "t", "). Rather, it is the ground-state of the", "“deformed hamiltonian”", "ˆ", "H$_{0}$", "[", "u", "] which is obtained from", "the initial-time Hamiltonian", "ˆ", "H$_{0}$", "by a coordinate trans-", "formation – indeed an elastic deformation.", "As anticipated in the foregoing discussion the elastic", "approximation paves the way for a relatively simple cal-", "culation of the complicated expression that appears in", "the second line of Eq. (39). Namely, thanks to the fact", "that", "˜", "ψ", "=", "ψ$_{0}$", "is independent of the displacement field we", "can take the functional derivative of Eq. (38)", "after", "taking", "the average and we arrive at", "6", "The physical idea behind this approximation is that", "the time evolution of the wave function in the laboratory", "frame can be approximated as a continuously evolving", "elastic deformation of the ground-state wave function.", "Such a deformation affects all the particles simultane-", "ously and instantaneously. The burden of describing the", "time-evolution of the system is entirely placed on the", "time-dependent geometry (i.e.", "the time-dependent re-", "lation between", "ξ", "and", "r", "), while the wave function itself", "remains independent of time.", "What is", "lost", "in this approximation is the fact that in", "the actual time evolution the system will undergo internal", "relaxation in order to optimize the correlations between", "the particles. In other words, the probability of finding", "the particles in a certain configuration", "r$_{1}$", ", ...", "r$_{N}$", "at time", "t", "is", "not", "strictly determined by the probability that those", "particles were initially in the configuration", "ξ$_{1}$", ", ...,", "ξ$_{N}$", "from", "which", "r$_{1}$", ", ...", "r$_{N}$", "evolve according to Eqs. (22) and (23).", "However, our approximation should always be valid at", "sufficiently high frequency, i.e., when the evolution of the", "geometry is very fast on the scale of the characteristic", "response times of the system.", "The equation of motion resulting from the elastic ap-", "proximation is also strictly valid (and therefore, not an", "approximation at all) for any one-particle system, be-", "cause in this case the wave function", "is", "completely deter-", "mined by the displacement field and there is no room", "for internal relaxation. Finally, our equation of motion", "is also strictly valid for non-interacting Bose systems in", "the ground-state (since these systems behave like a single", "particle), and for non-interacting Fermi systems consist-", "ing of at most two particles of opposite spins in the same", "orbital (since these behave like non-interacting Bosons).", "In all other cases – including the apparently simple case", "of a non-interacting many-fermion system – the appro-", "priateness of the elastic approximation must be assessed", "a posteriori", "and may depend on the objective of the cal-", "culation.", "In general, we can only say that the elastic", "approximation is expected to work better for collective", "(many-particle) excitations than for single particle ex-", "citations, and better for strongly correlated many-body", "systems (which exhibit bosonic behavior) than for weakly", "correlated systems.", "It is important to appreciate the profound difference", "that exists between the present approximation and an-", "other common approximation which also entails an in-", "stantaneous response to a time-dependent field: the", "adia-", "batic approximation", ". In the adiabatic approximation one", "assumes that the system remains in the instantaneous", "ground-state of the hamiltonian", "ˆ", "H", "(", "t", ") – an assumption", "that is justified only if the time evolution is", "slow", "on the", "scale of the characteristic response time of the system.", "This is exactly the opposite of the regime of validity of", "the present approximation. The geometrically distorted", "where", "ξ$_{i}$", "=", "r$_{i}$", "−", "u", "(", "r$_{i}$", ") and the last factor on the right hand", "side is for normalization. This proves that", "E", "[", "u", "]", "−", "E", "[", "0", "] is", "a positive definite quantity since", "E", "[", "0", "] is the ground-state", "energy of", "ˆ", "H$_{0}$", "while", "E", "[", "u", "] is the expectation value of", "ˆ", "H$_{0}$", "in a state that is not the ground-state.", "of the distorted ground state. Equivalently,", "E", "[", "u", "] can be", "obtained as the expectation value of the original hamil-", "tonian", "ˆ", "H$_{0}$", "in the distorted ground state", "where", "E$_{2}$", "[", "u", "] is the second-order term in the expansion of", "the", "total energy", "Putting all together we arrive at the elegant result:", "is the external potential energy of the distorted ground-", "state.", "where", "We further observe that", "where", "˜", "ψ", "(", "ξ$_{1}$", ", ...,", "ξ$_{N}$", ", t", ")", "≃", "ψ$_{0}$", "(", "ξ$_{1}$", ", ...,", "ξ$_{N}$", ")", ".", "(41)", "F", "µ,", "$_{1}$(", "r", ", t", ") =", "−", "δE$_{u}$", "[", "u", "]", "δu$_{µ}$", "(", "r", ")", "∣", "1", ",", "(42)", "E$_{u}$", "[", "u", "]", "≡ 〈", "ψ$_{0}$", "|", "ˆ", "H$_{u}$", "[", "u", "]", "|", "ψ$_{0}$", "〉", ".", "(43)", "u", "·", "∇", "∂$_{µ}$V$_{0}$", "(", "r", ") =", "1", "n$_{0}$", "(", "r", ")", "δV$_{0}$", "[", "u", "]", "δu$_{µ}$", "(", "r", ")", "∣", "1", ",", "(44)", "V$_{0}$", "[", "u", "]", "≡", "∫", "d", "r", "V$_{0}$", "(", "r", "+", "u", "(", "r", "))", "n$_{0}$", "(", "r", ")", ".", "(45)", "m∂", "2", "t", "u$_{µ}$", "(", "r", ", t", ") =", "−", "1", "n$_{0}$", "(", "r", ")", "δE$_{2}$", "[", "u", "]", "δu$_{µ}$", "(", "r", ")", "−", "∂$_{µ}$V$_{1}$", "(", "r", ", t", ")", ".", "(46)", "E", "[", "u", "]", "≡", "E$_{u}$", "[", "u", "] +", "V$_{0}$", "[", "u", "]", "(47)", "ψ$_{0}$", "[", "u", "](", "r$_{1}$", ", ...,", "r$_{N}$", ") =", "ψ$_{0}$", "(", "ξ$_{1}$", ", ...,", "ξ$_{N}$", ")", "N", "∏", "i", "=1", "g", "−", "1", "/", "$^{4}$(", "ξ$_{i}$", ")", ",", "(48)" ]
[ [ 90, 70, 410, 27 ], [ 90, 70, 410, 27 ], [ 90, 70, 410, 27 ], [ 90, 70, 410, 27 ], [ 90, 70, 410, 27 ], [ 90, 70, 410, 27 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 67, 410, 79 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 530, 150, 410, 103 ], [ 933, 37, 8, 12 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 138, 410, 146 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 286, 410, 175 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 464, 410, 309 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 862, 410, 74 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 746, 410, 42 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 530, 669, 410, 27 ], [ 547, 573, 374, 12 ], [ 530, 541, 410, 27 ], [ 530, 541, 410, 27 ], [ 530, 469, 42, 12 ], [ 530, 394, 174, 12 ], [ 530, 332, 42, 12 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 180, 108, 320, 25 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 635, 283, 306, 38 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 650, 360, 291, 25 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 421, 321, 41 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 620, 495, 321, 38 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 570, 602, 371, 49 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 659, 715, 282, 22 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ], [ 562, 806, 379, 48 ] ]
[ [ 90, 70, 240, 12 ], [ 331, 70, 17, 12 ], [ 349, 70, 151, 12 ], [ 90, 85, 67, 12 ], [ 162, 85, 8, 11 ], [ 177, 85, 173, 12 ], [ 530, 70, 101, 12 ], [ 642, 67, 8, 12 ], [ 638, 70, 10, 12 ], [ 656, 70, 284, 12 ], [ 530, 85, 109, 12 ], [ 648, 82, 8, 12 ], [ 643, 85, 13, 12 ], [ 659, 85, 6, 12 ], [ 665, 85, 6, 12 ], [ 671, 85, 269, 12 ], [ 530, 102, 179, 12 ], [ 722, 98, 8, 12 ], [ 717, 102, 20, 12 ], [ 739, 102, 4, 12 ], [ 744, 102, 10, 11 ], [ 754, 102, 186, 12 ], [ 530, 118, 208, 12 ], [ 750, 115, 8, 12 ], [ 746, 118, 20, 12 ], [ 774, 118, 166, 12 ], [ 530, 133, 309, 12 ], [ 547, 150, 393, 12 ], [ 530, 165, 410, 12 ], [ 530, 179, 410, 12 ], [ 530, 194, 410, 12 ], [ 530, 211, 30, 12 ], [ 570, 207, 8, 12 ], [ 567, 211, 10, 12 ], [ 583, 211, 12, 12 ], [ 601, 211, 17, 12 ], [ 626, 211, 315, 12 ], [ 530, 225, 321, 12 ], [ 857, 226, 33, 11 ], [ 895, 225, 45, 12 ], [ 530, 240, 207, 12 ], [ 933, 37, 8, 12 ], [ 107, 138, 393, 12 ], [ 90, 153, 410, 12 ], [ 90, 167, 410, 12 ], [ 90, 182, 410, 12 ], [ 90, 197, 410, 12 ], [ 90, 212, 410, 12 ], [ 90, 227, 410, 12 ], [ 90, 242, 224, 12 ], [ 329, 242, 171, 12 ], [ 90, 256, 107, 12 ], [ 205, 257, 8, 11 ], [ 221, 256, 26, 12 ], [ 255, 257, 7, 11 ], [ 262, 256, 238, 12 ], [ 90, 271, 212, 12 ], [ 107, 286, 58, 12 ], [ 172, 287, 25, 11 ], [ 203, 286, 297, 12 ], [ 90, 301, 410, 12 ], [ 90, 316, 410, 12 ], [ 90, 331, 410, 12 ], [ 90, 345, 279, 12 ], [ 374, 346, 14, 11 ], [ 389, 345, 21, 12 ], [ 411, 346, 18, 11 ], [ 437, 345, 52, 12 ], [ 494, 345, 6, 12 ], [ 90, 360, 11, 12 ], [ 108, 361, 23, 11 ], [ 138, 360, 362, 12 ], [ 90, 375, 303, 12 ], [ 397, 376, 15, 11 ], [ 413, 375, 25, 12 ], [ 441, 376, 19, 11 ], [ 467, 375, 33, 12 ], [ 90, 390, 42, 12 ], [ 140, 391, 14, 11 ], [ 155, 390, 21, 12 ], [ 176, 391, 18, 11 ], [ 204, 390, 296, 12 ], [ 90, 405, 410, 12 ], [ 90, 420, 410, 12 ], [ 90, 434, 410, 12 ], [ 90, 449, 214, 12 ], [ 107, 464, 393, 12 ], [ 90, 479, 410, 12 ], [ 90, 494, 410, 12 ], [ 90, 509, 260, 12 ], [ 356, 509, 11, 11 ], [ 374, 509, 126, 12 ], [ 90, 523, 410, 12 ], [ 90, 538, 410, 12 ], [ 90, 553, 410, 12 ], [ 90, 568, 410, 12 ], [ 90, 583, 410, 12 ], [ 90, 598, 410, 12 ], [ 90, 612, 410, 12 ], [ 90, 627, 410, 12 ], [ 90, 642, 410, 12 ], [ 90, 657, 410, 12 ], [ 90, 672, 83, 11 ], [ 179, 672, 321, 12 ], [ 90, 686, 63, 12 ], [ 167, 686, 333, 12 ], [ 90, 701, 410, 12 ], [ 90, 716, 410, 12 ], [ 90, 731, 410, 12 ], [ 90, 746, 410, 12 ], [ 90, 761, 139, 12 ], [ 107, 775, 393, 12 ], [ 90, 790, 410, 12 ], [ 90, 805, 410, 12 ], [ 90, 820, 369, 12 ], [ 464, 821, 36, 11 ], [ 90, 835, 142, 11 ], [ 232, 835, 268, 12 ], [ 90, 850, 410, 12 ], [ 90, 864, 237, 12 ], [ 340, 861, 8, 12 ], [ 335, 864, 13, 12 ], [ 350, 864, 6, 12 ], [ 357, 864, 6, 12 ], [ 363, 864, 137, 12 ], [ 90, 879, 321, 12 ], [ 417, 880, 30, 11 ], [ 454, 879, 46, 12 ], [ 90, 894, 410, 12 ], [ 90, 909, 410, 12 ], [ 90, 924, 410, 12 ], [ 530, 862, 42, 12 ], [ 577, 863, 13, 11 ], [ 596, 862, 12, 12 ], [ 613, 863, 12, 11 ], [ 628, 862, 12, 22 ], [ 641, 863, 10, 11 ], [ 652, 862, 6, 12 ], [ 658, 863, 12, 11 ], [ 672, 862, 268, 12 ], [ 530, 877, 305, 12 ], [ 841, 877, 12, 12 ], [ 854, 877, 4, 12 ], [ 859, 878, 10, 11 ], [ 870, 877, 4, 12 ], [ 877, 877, 12, 22 ], [ 892, 877, 12, 12 ], [ 906, 877, 4, 12 ], [ 910, 878, 9, 11 ], [ 920, 877, 20, 12 ], [ 530, 892, 233, 12 ], [ 768, 892, 12, 12 ], [ 782, 892, 4, 12 ], [ 786, 893, 9, 11 ], [ 796, 892, 145, 12 ], [ 530, 909, 67, 12 ], [ 609, 906, 8, 12 ], [ 605, 909, 20, 12 ], [ 633, 909, 37, 12 ], [ 677, 909, 12, 12 ], [ 690, 909, 4, 12 ], [ 695, 910, 10, 11 ], [ 706, 909, 207, 12 ], [ 924, 906, 8, 12 ], [ 920, 909, 20, 12 ], [ 530, 924, 282, 12 ], [ 530, 746, 317, 12 ], [ 854, 746, 12, 12 ], [ 867, 746, 4, 12 ], [ 872, 747, 10, 11 ], [ 883, 746, 58, 12 ], [ 530, 761, 410, 12 ], [ 530, 776, 46, 12 ], [ 587, 772, 8, 12 ], [ 582, 776, 20, 12 ], [ 609, 776, 210, 12 ], [ 530, 669, 42, 12 ], [ 578, 669, 18, 12 ], [ 598, 669, 4, 12 ], [ 603, 670, 10, 11 ], [ 613, 669, 327, 12 ], [ 530, 684, 23, 12 ], [ 559, 684, 85, 11 ], [ 547, 573, 374, 12 ], [ 530, 541, 410, 12 ], [ 530, 556, 39, 12 ], [ 530, 469, 42, 12 ], [ 530, 394, 174, 12 ], [ 530, 332, 42, 12 ], [ 183, 108, 8, 12 ], [ 180, 111, 10, 12 ], [ 191, 111, 6, 12 ], [ 198, 112, 15, 11 ], [ 214, 111, 25, 12 ], [ 242, 112, 19, 11 ], [ 264, 111, 13, 12 ], [ 277, 111, 6, 12 ], [ 288, 111, 12, 22 ], [ 306, 111, 17, 12 ], [ 324, 111, 6, 12 ], [ 331, 112, 15, 11 ], [ 347, 111, 25, 12 ], [ 375, 112, 19, 11 ], [ 397, 111, 6, 12 ], [ 406, 111, 4, 12 ], [ 471, 111, 29, 12 ], [ 635, 293, 11, 22 ], [ 647, 298, 11, 9 ], [ 659, 293, 13, 12 ], [ 673, 293, 7, 11 ], [ 680, 293, 13, 12 ], [ 694, 293, 24, 12 ], [ 723, 293, 12, 22 ], [ 743, 284, 28, 12 ], [ 772, 284, 4, 12 ], [ 776, 285, 10, 11 ], [ 787, 284, 4, 12 ], [ 743, 302, 25, 12 ], [ 770, 302, 6, 12 ], [ 776, 302, 7, 11 ], [ 784, 302, 6, 12 ], [ 794, 283, 5, 38 ], [ 799, 309, 6, 9 ], [ 812, 293, 4, 12 ], [ 911, 293, 29, 12 ], [ 650, 363, 20, 12 ], [ 671, 363, 4, 12 ], [ 675, 364, 10, 11 ], [ 686, 363, 4, 12 ], [ 695, 363, 23, 22 ], [ 719, 363, 17, 12 ], [ 738, 363, 4, 22 ], [ 747, 360, 8, 12 ], [ 742, 363, 21, 12 ], [ 765, 363, 4, 12 ], [ 769, 364, 10, 11 ], [ 780, 363, 4, 12 ], [ 785, 363, 4, 22 ], [ 789, 363, 17, 12 ], [ 808, 363, 6, 22 ], [ 817, 363, 4, 12 ], [ 911, 363, 29, 12 ], [ 620, 431, 10, 11 ], [ 634, 430, 4, 22 ], [ 643, 431, 15, 9 ], [ 659, 430, 34, 12 ], [ 694, 430, 6, 12 ], [ 700, 431, 7, 11 ], [ 708, 430, 24, 12 ], [ 754, 421, 8, 12 ], [ 739, 439, 16, 12 ], [ 756, 439, 6, 12 ], [ 763, 439, 7, 11 ], [ 771, 439, 6, 12 ], [ 783, 421, 24, 12 ], [ 808, 421, 4, 12 ], [ 812, 422, 10, 11 ], [ 823, 421, 4, 12 ], [ 781, 439, 25, 12 ], [ 808, 439, 6, 12 ], [ 814, 439, 7, 11 ], [ 822, 439, 6, 12 ], [ 831, 424, 5, 38 ], [ 836, 442, 6, 9 ], [ 847, 430, 4, 12 ], [ 911, 430, 29, 12 ], [ 620, 504, 16, 12 ], [ 637, 504, 4, 12 ], [ 642, 505, 10, 11 ], [ 652, 504, 4, 12 ], [ 662, 504, 12, 22 ], [ 679, 495, 9, 38 ], [ 699, 504, 8, 12 ], [ 708, 505, 7, 11 ], [ 715, 504, 16, 12 ], [ 733, 504, 6, 12 ], [ 739, 505, 7, 11 ], [ 751, 504, 12, 12 ], [ 767, 505, 10, 11 ], [ 778, 504, 6, 12 ], [ 785, 505, 7, 11 ], [ 792, 504, 12, 12 ], [ 805, 504, 16, 12 ], [ 823, 504, 6, 12 ], [ 830, 505, 7, 11 ], [ 837, 504, 6, 12 ], [ 847, 504, 4, 12 ], [ 911, 504, 29, 12 ], [ 570, 611, 23, 12 ], [ 595, 608, 6, 9 ], [ 594, 617, 5, 9 ], [ 602, 611, 17, 12 ], [ 621, 611, 6, 12 ], [ 627, 611, 7, 11 ], [ 635, 611, 13, 12 ], [ 648, 611, 24, 12 ], [ 677, 611, 12, 22 ], [ 707, 602, 8, 12 ], [ 692, 620, 16, 12 ], [ 710, 620, 6, 12 ], [ 716, 620, 7, 11 ], [ 724, 620, 6, 12 ], [ 734, 602, 26, 12 ], [ 762, 602, 4, 12 ], [ 767, 603, 10, 11 ], [ 777, 602, 4, 12 ], [ 734, 620, 25, 12 ], [ 761, 620, 6, 12 ], [ 767, 620, 7, 11 ], [ 775, 620, 6, 12 ], [ 788, 611, 12, 22 ], [ 805, 611, 33, 12 ], [ 840, 611, 6, 12 ], [ 846, 611, 7, 11 ], [ 854, 611, 13, 12 ], [ 867, 611, 6, 12 ], [ 877, 611, 4, 12 ], [ 911, 638, 29, 12 ], [ 659, 715, 12, 12 ], [ 672, 715, 4, 12 ], [ 677, 715, 10, 11 ], [ 687, 715, 4, 12 ], [ 697, 715, 12, 22 ], [ 714, 715, 20, 12 ], [ 735, 715, 4, 12 ], [ 740, 715, 10, 11 ], [ 751, 715, 21, 12 ], [ 775, 715, 16, 12 ], [ 793, 715, 4, 12 ], [ 797, 715, 10, 11 ], [ 808, 715, 4, 12 ], [ 911, 715, 29, 12 ], [ 562, 819, 17, 12 ], [ 580, 819, 4, 12 ], [ 585, 820, 10, 11 ], [ 595, 819, 11, 12 ], [ 606, 820, 14, 11 ], [ 622, 819, 25, 12 ], [ 651, 820, 18, 11 ], [ 671, 819, 29, 12 ], [ 711, 819, 17, 12 ], [ 729, 819, 6, 12 ], [ 735, 819, 15, 11 ], [ 752, 819, 25, 12 ], [ 780, 819, 19, 11 ], [ 801, 819, 6, 12 ], [ 816, 806, 10, 9 ], [ 811, 816, 21, 38 ], [ 811, 837, 4, 9 ], [ 815, 837, 16, 9 ], [ 835, 819, 7, 12 ], [ 844, 817, 10, 15 ], [ 854, 816, 6, 9 ], [ 861, 816, 6, 9 ], [ 868, 819, 13, 12 ], [ 882, 819, 13, 11 ], [ 896, 819, 6, 12 ], [ 905, 819, 4, 12 ], [ 911, 819, 29, 12 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ]
c7340088f1a6b7e72f0e604d6a866f868f2c58d80460591015bd5f0a93d83a75
1001.0616.pdf
5
24
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3332
[ "Pascal", "Report ", "173 ", "Note: ", "The", "syntactic", "ambiguity", "arising", "from", "the", "construct ", "if", "e1 ", "then", "if", "e2", "then", "sl", "else", "s2 ", "is", "resolved", "by", "interpreting", "the", "construct", "as", "equivalent", "to ", "if", "e1 ", "then ", "begin", "if", "e2 ", "then", "sl", "else", "s2 ", "end ", "Examples", "of ", "if ", "statements: ", "if", "x ", "< ", "1.5", "then", "W", ":=", "X ", "+ ", "Y", "else", "W", ":=", "1.5 ", "if", "P1 ", "<> ", "nil", "then", "PI ", ":=", "P1t.Father ", "9.2.2.2. ", "Case", "statements.", "The", "case", "statement", "consists", "of", "an", "ordinal ", "expression", "(the", "case", "index)", "and", "a", "list", "of statements,", "each", "being", "prefixed ", "by", "one", "or more", "constants", "of the", "type", "of the", "case", "index.", "It", "specifies", "that ", "the", "one", "statement", "be", "executed", "that", "is", "prefixed", "by", "the", "value", "of the", "case ", "index;", "it", "is", "an", "error", "if", "no", "constant", "denoting", "that", "value", "prefixes", "any ", "statement.", "Each", "value", "must", "be", "specified", "by", "at", "most", "one", "case", "constant. ", "9.2.3. ", "Repetitive", "statements.", "Repetitive ", "statements ", "specify", "that ", "certain", "statements", "are", "to", "be", "executed", "repeatedly.", "If", "the", "number", "of ", "repetitions", "is", "known", "beforehand,", "i.e.,", "before", "the", "repetitions", "are", "started, ", "the", "for", "statement", "is", "often", "the", "appropriate", "construct;", "otherwise", "the", "while ", "or", "repeat", "statement", "should", "be", "used. ", "Examples", "of case", "statements: ", "CaseStatement ", "= ", "\"case\" ", "Caselndex ", "\"of\" ", "Case ", "I", "\";\" ", "Case ", "I", "[", "\";\"", "1", "\"end\"", ". ", "Caselndex ", "= ", "OrdinalExpression", ". ", "Case ", "= ", "Constant ", "I ", "\",\" ", "Constant ", "I ", "\":\" ", "Statement. ", "case", "Operator", "of ", "Plus: ", "W.-", "X", "+ ", "Y; ", "Minus: ", "W:=", "X", "-", "Y; ", "Times: ", "W:=", "X ", "* ", "Y ", "end ", "case ", "I ", "of ", "1", ": ", "Y ", ".- sin", "(X)", "; ", "2", ": ", "Y ", "cos", "(X)", "; ", "3", ": ", "Y ", "exp", "(X)", "; ", "4", ": ", "Y ", ".-", "In(X) ", "end ", "case ", "P1t.Status ", "of ", "Married, ", "Coupled: ", "P2.- P1t.SignificantOther; ", "Single: ", "P2:=", "nil; ", "end " ]
[ [ 689, 47, 186, 17 ], [ 689, 47, 186, 17 ], [ 689, 47, 186, 17 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 141, 85, 607, 19 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 210, 114, 425, 15 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 141, 136, 596, 19 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 210, 164, 440, 33 ], [ 141, 198, 281, 24 ], [ 141, 198, 281, 24 ], [ 141, 198, 281, 24 ], [ 141, 198, 281, 24 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 210, 228, 533, 36 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 270, 741, 131 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 141, 816, 746, 108 ], [ 140, 514, 314, 19 ], [ 140, 514, 314, 19 ], [ 140, 514, 314, 19 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 181, 409, 465, 92 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ], [ 208, 542, 639, 266 ] ]
[ [ 689, 47, 40, 17 ], [ 762, 47, 59, 17 ], [ 844, 47, 31, 17 ], [ 141, 85, 58, 19 ], [ 207, 85, 26, 19 ], [ 268, 85, 60, 19 ], [ 363, 85, 69, 19 ], [ 466, 85, 46, 19 ], [ 546, 85, 33, 19 ], [ 614, 85, 20, 19 ], [ 669, 85, 79, 19 ], [ 210, 114, 8, 15 ], [ 247, 114, 27, 15 ], [ 289, 114, 28, 15 ], [ 350, 114, 9, 15 ], [ 393, 114, 15, 15 ], [ 441, 114, 28, 15 ], [ 502, 114, 10, 15 ], [ 546, 114, 25, 15 ], [ 604, 114, 30, 15 ], [ 141, 136, 10, 19 ], [ 184, 136, 54, 19 ], [ 270, 136, 15, 19 ], [ 318, 136, 74, 19 ], [ 424, 136, 19, 19 ], [ 476, 136, 58, 19 ], [ 566, 136, 13, 19 ], [ 611, 136, 66, 19 ], [ 710, 136, 28, 19 ], [ 210, 164, 8, 15 ], [ 247, 164, 27, 15 ], [ 289, 164, 53, 15 ], [ 235, 182, 37, 15 ], [ 306, 182, 10, 15 ], [ 349, 182, 32, 15 ], [ 396, 182, 28, 15 ], [ 459, 182, 11, 15 ], [ 503, 182, 26, 15 ], [ 563, 182, 31, 15 ], [ 609, 182, 41, 15 ], [ 141, 202, 70, 19 ], [ 247, 202, 32, 19 ], [ 280, 198, 19, 24 ], [ 301, 202, 121, 19 ], [ 210, 230, 7, 15 ], [ 243, 230, 19, 15 ], [ 276, 228, 13, 17 ], [ 303, 230, 17, 15 ], [ 348, 230, 23, 15 ], [ 400, 230, 13, 15 ], [ 440, 230, 11, 15 ], [ 480, 230, 23, 15 ], [ 516, 228, 13, 17 ], [ 543, 230, 10, 15 ], [ 581, 230, 21, 15 ], [ 631, 230, 13, 15 ], [ 672, 230, 11, 15 ], [ 711, 230, 31, 15 ], [ 210, 249, 8, 15 ], [ 246, 249, 28, 15 ], [ 289, 249, 25, 15 ], [ 329, 249, 17, 15 ], [ 380, 249, 28, 15 ], [ 443, 249, 31, 15 ], [ 492, 249, 18, 15 ], [ 553, 249, 109, 15 ], [ 141, 270, 79, 19 ], [ 237, 270, 32, 19 ], [ 303, 270, 75, 19 ], [ 412, 270, 26, 19 ], [ 472, 270, 28, 19 ], [ 535, 270, 64, 19 ], [ 633, 270, 53, 19 ], [ 720, 270, 14, 19 ], [ 768, 270, 15, 19 ], [ 817, 270, 64, 19 ], [ 141, 293, 66, 19 ], [ 238, 293, 24, 19 ], [ 293, 293, 26, 19 ], [ 351, 293, 39, 19 ], [ 421, 293, 22, 19 ], [ 475, 293, 6, 19 ], [ 513, 293, 18, 19 ], [ 562, 293, 97, 19 ], [ 691, 293, 28, 19 ], [ 750, 293, 34, 19 ], [ 816, 293, 67, 19 ], [ 142, 315, 14, 19 ], [ 185, 315, 21, 19 ], [ 236, 315, 56, 19 ], [ 322, 315, 54, 19 ], [ 405, 315, 44, 19 ], [ 479, 315, 25, 19 ], [ 533, 315, 44, 19 ], [ 607, 315, 25, 19 ], [ 662, 315, 36, 19 ], [ 727, 315, 8, 19 ], [ 765, 315, 51, 19 ], [ 845, 315, 36, 19 ], [ 142, 338, 17, 19 ], [ 189, 338, 21, 19 ], [ 239, 338, 56, 19 ], [ 324, 338, 13, 19 ], [ 367, 338, 51, 19 ], [ 449, 338, 21, 19 ], [ 500, 338, 9, 19 ], [ 539, 338, 48, 19 ], [ 617, 338, 14, 19 ], [ 661, 338, 17, 19 ], [ 708, 338, 31, 19 ], [ 769, 338, 44, 19 ], [ 843, 338, 39, 19 ], [ 141, 361, 38, 19 ], [ 210, 361, 8, 19 ], [ 249, 361, 10, 19 ], [ 290, 361, 14, 19 ], [ 335, 361, 29, 19 ], [ 395, 361, 9, 19 ], [ 435, 361, 15, 19 ], [ 481, 361, 50, 19 ], [ 563, 361, 53, 19 ], [ 647, 361, 22, 19 ], [ 700, 361, 33, 19 ], [ 764, 361, 49, 19 ], [ 844, 361, 37, 19 ], [ 142, 383, 62, 19 ], [ 234, 383, 30, 19 ], [ 295, 383, 32, 19 ], [ 359, 383, 29, 19 ], [ 419, 383, 14, 19 ], [ 464, 383, 54, 19 ], [ 549, 383, 15, 19 ], [ 595, 383, 10, 19 ], [ 636, 383, 29, 19 ], [ 696, 383, 21, 19 ], [ 749, 383, 26, 19 ], [ 806, 383, 69, 19 ], [ 141, 816, 59, 19 ], [ 229, 816, 88, 19 ], [ 361, 816, 96, 19 ], [ 501, 816, 110, 19 ], [ 626, 816, 111, 19 ], [ 752, 816, 51, 19 ], [ 839, 816, 44, 19 ], [ 141, 838, 45, 19 ], [ 220, 838, 70, 19 ], [ 324, 838, 20, 19 ], [ 378, 838, 13, 19 ], [ 424, 838, 15, 19 ], [ 474, 838, 59, 19 ], [ 567, 838, 73, 19 ], [ 674, 838, 11, 19 ], [ 718, 838, 20, 19 ], [ 772, 838, 51, 19 ], [ 857, 838, 30, 19 ], [ 141, 861, 69, 19 ], [ 244, 861, 10, 19 ], [ 287, 861, 44, 19 ], [ 365, 861, 78, 19 ], [ 476, 861, 24, 19 ], [ 534, 861, 42, 19 ], [ 609, 861, 20, 19 ], [ 662, 861, 69, 19 ], [ 764, 861, 20, 19 ], [ 817, 861, 64, 19 ], [ 141, 883, 19, 19 ], [ 192, 883, 18, 19 ], [ 242, 883, 60, 19 ], [ 334, 883, 10, 19 ], [ 376, 883, 32, 19 ], [ 440, 883, 19, 19 ], [ 491, 883, 71, 19 ], [ 594, 883, 62, 19 ], [ 688, 883, 61, 19 ], [ 781, 883, 19, 19 ], [ 832, 883, 50, 19 ], [ 141, 905, 13, 19 ], [ 185, 905, 38, 19 ], [ 255, 905, 60, 19 ], [ 347, 905, 41, 19 ], [ 420, 905, 14, 19 ], [ 466, 905, 48, 19 ], [ 140, 514, 71, 19 ], [ 249, 514, 65, 19 ], [ 352, 514, 102, 19 ], [ 181, 409, 132, 16 ], [ 319, 410, 11, 15 ], [ 342, 410, 74, 15 ], [ 422, 409, 93, 16 ], [ 524, 410, 48, 15 ], [ 341, 434, 43, 16 ], [ 393, 432, 2, 19 ], [ 414, 432, 18, 19 ], [ 442, 434, 43, 16 ], [ 496, 432, 3, 19 ], [ 509, 432, 3, 19 ], [ 533, 432, 11, 19 ], [ 565, 432, 5, 19 ], [ 591, 432, 23, 19 ], [ 634, 432, 12, 19 ], [ 181, 460, 94, 16 ], [ 281, 454, 18, 24 ], [ 300, 460, 125, 16 ], [ 458, 460, 20, 16 ], [ 181, 485, 44, 16 ], [ 232, 486, 11, 15 ], [ 251, 485, 80, 16 ], [ 339, 482, 7, 19 ], [ 356, 482, 23, 19 ], [ 388, 485, 80, 16 ], [ 477, 482, 7, 19 ], [ 493, 482, 24, 19 ], [ 526, 485, 97, 16 ], [ 209, 542, 33, 15 ], [ 281, 542, 68, 15 ], [ 388, 542, 35, 15 ], [ 235, 560, 64, 15 ], [ 341, 560, 53, 15 ], [ 409, 560, 6, 15 ], [ 434, 560, 14, 15 ], [ 462, 560, 21, 15 ], [ 234, 578, 77, 15 ], [ 342, 578, 25, 15 ], [ 395, 578, 10, 15 ], [ 433, 578, 4, 15 ], [ 463, 578, 19, 15 ], [ 235, 596, 76, 15 ], [ 342, 596, 26, 15 ], [ 398, 596, 25, 15 ], [ 437, 593, 9, 18 ], [ 463, 596, 14, 15 ], [ 208, 613, 41, 15 ], [ 209, 631, 53, 15 ], [ 276, 632, 4, 13 ], [ 302, 631, 27, 15 ], [ 236, 648, 2, 15 ], [ 245, 648, 7, 15 ], [ 289, 650, 11, 13 ], [ 318, 646, 36, 18 ], [ 381, 646, 18, 18 ], [ 426, 646, 16, 18 ], [ 236, 666, 3, 15 ], [ 245, 666, 7, 15 ], [ 289, 667, 11, 13 ], [ 356, 666, 14, 15 ], [ 392, 666, 15, 15 ], [ 429, 666, 13, 15 ], [ 236, 683, 2, 15 ], [ 245, 683, 7, 15 ], [ 289, 685, 11, 13 ], [ 355, 683, 15, 15 ], [ 393, 683, 15, 15 ], [ 429, 683, 13, 15 ], [ 236, 701, 2, 15 ], [ 245, 701, 7, 15 ], [ 289, 702, 11, 13 ], [ 318, 696, 23, 22 ], [ 356, 701, 61, 15 ], [ 208, 719, 41, 15 ], [ 209, 738, 53, 15 ], [ 275, 738, 133, 15 ], [ 422, 738, 26, 15 ], [ 234, 758, 103, 15 ], [ 355, 758, 103, 15 ], [ 489, 758, 358, 15 ], [ 236, 776, 90, 15 ], [ 355, 776, 39, 15 ], [ 437, 776, 49, 15 ], [ 208, 794, 41, 15 ] ]
[ 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
a9e55ac8c7572739c67115f5c7d71a378f573a55ba299688f4e3245fc6028397
Pascal - Manual & Report.pdf
189
283
439
666
1,025
1,025
manuals
manuals
3333
[ "31", "3.3.", "Special method names", "The Python Language Reference, Release 3.9.5", "New in version 3.7:$_{__getattr__}$", "and$_{__dir__}$", "module attributes.", "Changed in version 3.5:$_{__class__}$", "module attribute is now writable.", "See also:", "PEP 562 - Module __getattr__ and __dir__", "Describes the$_{__getattr__}$", "and$_{__dir__}$", "functions on modules.", "The following methods only apply when an instance of the class containing the method (a so-called", "descriptor", "class)", "appears in an", "owner", "class (the descriptor must be in either the owner’s class dictionary or in the class dictionary for", "one of its parents). In the examples below, “the attribute” refers to the attribute whose name is the key of the property", "in the owner class’$_{__dict__}$", ".", "Implementing Descriptors", "object.", "__get__", "(", "self", ",", "instance", ",", "owner=None", ")", "Called to get the attribute of the owner class (class attribute access) or of an instance of that class (instance", "attribute access).", "The optional", "owner", "argument is the owner class, while", "instance", "is the instance that the", "attribute was accessed through, or", "None", "when the attribute is accessed through the", "owner", ".", "This method should return the computed attribute value or raise an$_{AttributeError}$ exception.", "PEP 252", "specifies that", "__get__()", "is callable with one or two arguments. Python’s own built-in descriptors", "support this specification; however, it is likely that some third-party tools have descriptors that require both", "arguments. Python’s own$_{__getattribute__()}$", "implementation always passes in both arguments whether", "they are required or not.", "object.", "__set__", "(", "self", ",", "instance", ",", "value$_{)}$", "Called to set the attribute on an instance", "instance", "of the owner class to a new value,", "value", ".", "Note, adding$_{__set__()}$", "or$_{__delete__()}$", "changes the kind of descriptor to a “data descriptor”. See", "Invoking Descriptors", "for more details.", "object.", "__delete__", "(", "self", ",", "instance$_{)}$", "Called to delete the attribute on an instance", "instance", "of the owner class.", "object.", "__set_name__", "(", "self", ",", "owner", ",", "name$_{)}$", "Called at the time the owning class", "owner", "is created. The descriptor has been assigned to", "name", ".", "Note:", "__set_name__()", "is only called implicitly as part of the$_{type}$constructor, so it will need to be", "called explicitly with the appropriate parameters when a descriptor is added to a class after initial creation:", "classA", ":", "pass", "descr =custom_descriptor()", "A.attr =descr", "descr.__set_name__(A,", "'attr')", "See", "Creating the class object", "for more details.", "New in version 3.6.", "The attribute$_{__objclass__}$", "is interpreted by the$_{inspect}$module as specifying the class where this object was", "defined (setting this appropriately can assist in runtime introspection of dynamic class attributes). For callables, it", "may indicate that an instance of the given type (or a subclass) is expected or required as the first positional argument", "(for example, CPython sets this attribute for unbound methods that are implemented in C)." ]
[ [ 881, 964, 19, 12 ], [ 123, 964, 227, 12 ], [ 123, 964, 227, 12 ], [ 512, 43, 388, 12 ], [ 123, 111, 480, 12 ], [ 123, 111, 480, 12 ], [ 123, 111, 480, 12 ], [ 123, 90, 483, 12 ], [ 123, 90, 483, 12 ], [ 123, 133, 63, 12 ], [ 123, 155, 777, 12 ], [ 123, 155, 777, 12 ], [ 123, 155, 777, 12 ], [ 123, 155, 777, 12 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 225, 777, 55 ], [ 123, 195, 214, 12 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 123, 290, 777, 56 ], [ 166, 356, 670, 12 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 166, 378, 734, 55 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 123, 443, 645, 26 ], [ 166, 479, 734, 26 ], [ 166, 479, 734, 26 ], [ 166, 479, 734, 26 ], [ 166, 479, 734, 26 ], [ 166, 479, 734, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 516, 522, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 123, 552, 685, 26 ], [ 166, 603, 734, 26 ], [ 166, 603, 734, 26 ], [ 166, 603, 734, 26 ], [ 166, 603, 734, 26 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 644, 278, 63 ], [ 166, 725, 302, 12 ], [ 166, 725, 302, 12 ], [ 166, 725, 302, 12 ], [ 166, 762, 131, 12 ], [ 123, 784, 777, 55 ], [ 123, 784, 777, 55 ], [ 123, 784, 777, 55 ], [ 123, 784, 777, 55 ], [ 123, 784, 777, 55 ] ]
[ [ 881, 964, 19, 12 ], [ 123, 964, 44, 12 ], [ 176, 964, 174, 12 ], [ 512, 43, 388, 12 ], [ 123, 111, 280, 12 ], [ 378, 111, 118, 12 ], [ 483, 111, 121, 12 ], [ 123, 90, 288, 12 ], [ 386, 90, 221, 12 ], [ 123, 133, 63, 12 ], [ 123, 155, 312, 12 ], [ 445, 155, 236, 12 ], [ 654, 155, 117, 12 ], [ 756, 155, 144, 12 ], [ 123, 225, 665, 12 ], [ 793, 225, 65, 12 ], [ 863, 225, 37, 12 ], [ 123, 239, 89, 12 ], [ 217, 239, 41, 12 ], [ 263, 239, 637, 12 ], [ 123, 254, 777, 12 ], [ 123, 268, 232, 12 ], [ 333, 268, 4, 12 ], [ 123, 195, 214, 12 ], [ 123, 292, 86, 10 ], [ 196, 292, 97, 10 ], [ 268, 292, 19, 10 ], [ 278, 290, 23, 12 ], [ 301, 290, 4, 12 ], [ 310, 290, 53, 12 ], [ 364, 290, 4, 12 ], [ 372, 290, 87, 12 ], [ 459, 292, 19, 10 ], [ 166, 305, 734, 12 ], [ 166, 319, 115, 12 ], [ 294, 319, 87, 12 ], [ 387, 319, 41, 12 ], [ 435, 319, 241, 12 ], [ 683, 319, 53, 12 ], [ 743, 319, 158, 12 ], [ 166, 334, 227, 12 ], [ 398, 335, 36, 10 ], [ 444, 334, 281, 12 ], [ 729, 334, 41, 12 ], [ 770, 334, 4, 12 ], [ 166, 356, 670, 12 ], [ 166, 378, 63, 12 ], [ 234, 378, 86, 12 ], [ 324, 379, 135, 10 ], [ 421, 378, 479, 12 ], [ 166, 392, 734, 12 ], [ 166, 407, 404, 12 ], [ 525, 407, 375, 12 ], [ 166, 421, 162, 12 ], [ 123, 444, 86, 10 ], [ 196, 444, 95, 10 ], [ 268, 444, 19, 10 ], [ 278, 443, 23, 12 ], [ 301, 443, 4, 12 ], [ 310, 443, 53, 12 ], [ 364, 443, 4, 12 ], [ 372, 443, 55, 12 ], [ 166, 458, 270, 12 ], [ 441, 458, 53, 12 ], [ 499, 458, 225, 12 ], [ 729, 458, 35, 12 ], [ 765, 458, 4, 12 ], [ 166, 479, 227, 12 ], [ 358, 479, 187, 12 ], [ 506, 479, 394, 12 ], [ 166, 494, 135, 12 ], [ 307, 494, 110, 12 ], [ 123, 517, 86, 10 ], [ 196, 517, 129, 10 ], [ 298, 517, 19, 10 ], [ 309, 516, 23, 12 ], [ 332, 516, 4, 12 ], [ 341, 516, 72, 12 ], [ 166, 530, 291, 12 ], [ 462, 530, 53, 12 ], [ 520, 530, 125, 12 ], [ 123, 554, 86, 10 ], [ 196, 554, 157, 10 ], [ 319, 554, 19, 10 ], [ 329, 552, 23, 12 ], [ 353, 552, 4, 12 ], [ 362, 552, 41, 12 ], [ 403, 552, 4, 12 ], [ 411, 552, 55, 12 ], [ 166, 567, 234, 12 ], [ 405, 567, 41, 12 ], [ 451, 567, 313, 12 ], [ 769, 567, 36, 12 ], [ 805, 567, 4, 12 ], [ 166, 603, 40, 12 ], [ 222, 605, 195, 10 ], [ 371, 603, 529, 12 ], [ 166, 618, 713, 12 ], [ 166, 644, 61, 9 ], [ 232, 644, 17, 9 ], [ 194, 658, 40, 9 ], [ 166, 671, 278, 9 ], [ 166, 684, 130, 9 ], [ 166, 698, 237, 9 ], [ 370, 698, 72, 9 ], [ 166, 725, 24, 12 ], [ 195, 725, 158, 12 ], [ 358, 725, 110, 12 ], [ 166, 762, 131, 12 ], [ 123, 784, 247, 12 ], [ 341, 784, 559, 12 ], [ 123, 798, 777, 12 ], [ 123, 813, 777, 12 ], [ 123, 827, 610, 12 ] ]
[ 4, 4, 4, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
6921383ecb510aa3963130438221ad0b30db0da4f1e6e0d21c393a3d1eb278c8
python_reference.pdf
36
170
595
841
1,025
1,025
manuals
manuals
3334
[ "128", "Consolidated ", "Notes to the ", "Financial ", "Statements", "Note 52 – Financial instruments (continued)", "(j)", "Liquidity risk management", "As there are a limited number of energy organisations to enable management of energy price risk, there is limited scope for managing credit ", "risk through diversification of counterparties. Any request for credit exposure limits or contract maturity limits above those assigned for a ", "counterparty must be referred to the Board for approval. The credit worthiness of counterparties is closely monitored over the life of the ", "transaction. Credit exposure and maturity exposure by individual counterparty are continuously monitored and reported on regularly.", "The consolidated entity also utilises International Swaps and Derivative Association (ISDA) agreements with derivative counterparties in ", "order to limit exposure to credit risk through the netting of amounts receivable from and amounts payable to individual counterparties.", "At the end of the reporting period, there was a significant concentration of credit risk with certain counterparties in relation to electricity ", "derivatives undertaken in accordance with the consolidated entity’s hedging and risk management activities.", "The carrying amount of the financial assets recognised in the financial statements, which is net of impairment losses, represents the ", "maximum exposure to credit risk.", "The consolidated entity does not hold any collateral or other credit enhancements to cover this credit risk.", "Liquidity risk is the risk that the consolidated entity will not be able to meet its financial obligations as they fall due. Ultimate responsibility ", "for liquidity risk management rests with the Board of Directors, who have established an appropriate liquidity risk management framework ", "for the management of the consolidated entity’s short-, medium- and long-term funding and liquidity management requirements.", "The consolidated entity manages liquidity risk by maintaining adequate cash reserves, banking facilities and reserve borrowing facilities, by ", "continuously monitoring forecast and actual cash flows and matching the maturity profiles of financial assets and liabilities. Note 50(f) sets ", "out details of undrawn financing facilities that the consolidated entity has access to at the end of the reporting period.", "Subsequent to the year end, the consolidated entity entered into a $1.0 billion syndicated loan facility, comprising of a $600.0 million 3 year ", "term loan tranche and a $400.0 million 5 year revolving tranche. The funds will be partially used to refinance $886.7 million of existing ", "debt, due for repayment in October 2011, and provide additional funding for the consolidated entity’s capital expenditure program. Refer ", "Note 53 for further details.", "Subsequent to the year end, the consolidated entity also entered into a $200.0 million loan agreement with EKF, the Danish export credit ", "agency. The funds will be used to partially fund the consolidated entity’s 50% interest in the construction of the Macarthur Wind Farm. ", "Refer Note 53 for further details.", "The following table details the consolidated entity’s remaining contractual maturity for its non-derivative financial liabilities with agreed ", "repayment periods. The table has been drawn up based on the undiscounted cash flows of financial liabilities based on the earliest date on ", "which the consolidated entity can be required to pay. The table includes both interest and principal cash flows. To the extent that interest ", "flows are at floating rate, the undiscounted amount is derived from interest rate curves at the end of the reporting period. The contractual ", "maturity is based on the earliest date on which the consolidated entity may be required to pay.", "Less than ", "6–12 ", "1–2 ", "2–5 ", "More than", "6", "months", "months", "years", "years", "5", "years", "Total", "$m", "$m", "$m", "$m", "$m", "$m", "2011", "Non-derivative fi nancial liabilities", "Trade and other payables ", "853.1", "–", "–", "–", "–", "853.1", "USD senior notes ", "7.2", "7.2", "14.5", "43.4", "447.5", "519.8", "Bank loans ", "910.7", "–", "–", "–", "–", "910.7", "Finance lease liabilities ", "–", "–", "0.1", "0.2", "178.4", "178.7", "1,771.0", "7.2", "14.6", "43.6", "625.9", "2,462.3", "2010", "Non-derivative fi nancial liabilities", "Trade and other payables", "859.6", "–", "–", "–", "–", "859.6", "Bank loans", "23.2", "24.1", "910.6", "–", "–", "957.9", "Finance lease liabilities", "–", "–", "–", "–", "178.4", "178.4", "Other loans", "–", "3.6", "–", "–", "–", "3.6", "882.8 ", "27.7 ", "910.6 ", "– ", "178.4 ", "1,999.5" ]
[ [ 906, 20, 20, 8 ], [ 63, 21, 115, 76 ], [ 63, 21, 115, 76 ], [ 63, 21, 115, 76 ], [ 63, 21, 115, 76 ], [ 48, 128, 310, 10 ], [ 48, 322, 191, 10 ], [ 48, 322, 191, 10 ], [ 48, 141, 870, 50 ], [ 48, 141, 870, 50 ], [ 48, 141, 870, 50 ], [ 48, 141, 870, 50 ], [ 48, 201, 853, 23 ], [ 48, 201, 853, 23 ], [ 48, 235, 861, 23 ], [ 48, 235, 861, 23 ], [ 48, 268, 828, 23 ], [ 48, 268, 828, 23 ], [ 48, 302, 664, 10 ], [ 48, 335, 872, 37 ], [ 48, 335, 872, 37 ], [ 48, 335, 872, 37 ], [ 48, 382, 871, 37 ], [ 48, 382, 871, 37 ], [ 48, 382, 871, 37 ], [ 48, 429, 880, 50 ], [ 48, 429, 880, 50 ], [ 48, 429, 880, 50 ], [ 48, 429, 880, 50 ], [ 48, 489, 862, 37 ], [ 48, 489, 862, 37 ], [ 48, 489, 862, 37 ], [ 48, 536, 870, 64 ], [ 48, 536, 870, 64 ], [ 48, 536, 870, 64 ], [ 48, 536, 870, 64 ], [ 48, 536, 870, 64 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ], [ 45, 619, 885, 263 ] ]
[ [ 906, 20, 20, 8 ], [ 63, 21, 115, 16 ], [ 63, 41, 108, 16 ], [ 63, 61, 80, 16 ], [ 63, 81, 101, 16 ], [ 48, 128, 310, 10 ], [ 48, 322, 15, 10 ], [ 67, 322, 172, 10 ], [ 48, 141, 870, 10 ], [ 48, 154, 858, 10 ], [ 48, 168, 854, 10 ], [ 48, 181, 824, 10 ], [ 48, 201, 853, 10 ], [ 48, 214, 845, 10 ], [ 48, 235, 861, 10 ], [ 48, 248, 678, 10 ], [ 48, 268, 828, 10 ], [ 48, 281, 209, 10 ], [ 48, 302, 664, 10 ], [ 48, 335, 863, 10 ], [ 48, 348, 872, 10 ], [ 48, 362, 815, 10 ], [ 48, 382, 870, 10 ], [ 48, 395, 871, 10 ], [ 48, 409, 739, 10 ], [ 48, 429, 880, 10 ], [ 48, 442, 847, 10 ], [ 48, 456, 863, 10 ], [ 48, 469, 170, 10 ], [ 48, 489, 862, 10 ], [ 48, 502, 848, 10 ], [ 48, 516, 208, 10 ], [ 48, 536, 851, 10 ], [ 48, 549, 863, 10 ], [ 48, 563, 861, 10 ], [ 48, 576, 870, 10 ], [ 48, 589, 591, 10 ], [ 383, 621, 49, 8 ], [ 500, 621, 30, 8 ], [ 604, 621, 23, 8 ], [ 701, 621, 23, 8 ], [ 768, 621, 51, 8 ], [ 382, 631, 7, 8 ], [ 392, 631, 37, 8 ], [ 489, 631, 37, 8 ], [ 598, 631, 26, 8 ], [ 696, 631, 26, 8 ], [ 783, 631, 7, 8 ], [ 793, 631, 26, 8 ], [ 893, 631, 24, 8 ], [ 413, 641, 16, 8 ], [ 510, 641, 16, 8 ], [ 608, 641, 16, 8 ], [ 706, 641, 16, 8 ], [ 803, 641, 16, 8 ], [ 901, 641, 16, 8 ], [ 48, 658, 31, 9 ], [ 48, 673, 193, 9 ], [ 48, 688, 144, 9 ], [ 392, 689, 36, 9 ], [ 518, 689, 9, 9 ], [ 615, 689, 9, 9 ], [ 713, 689, 9, 9 ], [ 811, 689, 9, 9 ], [ 880, 689, 36, 9 ], [ 48, 703, 99, 9 ], [ 409, 703, 20, 9 ], [ 507, 703, 20, 9 ], [ 595, 703, 29, 9 ], [ 692, 703, 29, 9 ], [ 782, 703, 37, 9 ], [ 880, 703, 36, 9 ], [ 48, 718, 63, 9 ], [ 392, 718, 37, 9 ], [ 518, 718, 9, 9 ], [ 615, 718, 9, 9 ], [ 713, 718, 9, 9 ], [ 811, 718, 9, 9 ], [ 880, 718, 37, 9 ], [ 48, 733, 128, 9 ], [ 420, 733, 9, 9 ], [ 518, 733, 9, 9 ], [ 604, 733, 20, 9 ], [ 701, 733, 21, 9 ], [ 782, 733, 37, 9 ], [ 880, 733, 37, 9 ], [ 380, 752, 49, 9 ], [ 507, 752, 20, 9 ], [ 595, 752, 29, 9 ], [ 692, 752, 29, 9 ], [ 782, 752, 38, 9 ], [ 865, 752, 52, 9 ], [ 48, 773, 32, 9 ], [ 48, 788, 193, 9 ], [ 48, 803, 141, 9 ], [ 395, 803, 34, 9 ], [ 518, 803, 8, 9 ], [ 616, 803, 8, 9 ], [ 713, 803, 8, 9 ], [ 811, 803, 8, 9 ], [ 883, 803, 34, 9 ], [ 48, 818, 59, 9 ], [ 402, 818, 26, 9 ], [ 502, 818, 25, 9 ], [ 590, 818, 34, 9 ], [ 713, 818, 8, 9 ], [ 811, 818, 8, 9 ], [ 884, 818, 33, 9 ], [ 48, 833, 125, 9 ], [ 420, 833, 8, 9 ], [ 518, 833, 8, 9 ], [ 616, 833, 8, 9 ], [ 713, 833, 8, 9 ], [ 786, 833, 33, 9 ], [ 884, 833, 33, 9 ], [ 48, 847, 65, 9 ], [ 420, 847, 8, 9 ], [ 508, 847, 18, 9 ], [ 616, 847, 8, 9 ], [ 713, 847, 8, 9 ], [ 811, 847, 8, 9 ], [ 899, 847, 18, 9 ], [ 394, 866, 49, 9 ], [ 502, 866, 39, 9 ], [ 590, 866, 48, 9 ], [ 713, 866, 23, 9 ], [ 786, 866, 48, 9 ], [ 872, 866, 45, 9 ] ]
[ 5, 5, 5, 5, 5, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
1b871e490014326344615ee5435375e23401913c4d04618d53104fb29427d734
ASX_AGK.AX_2011.pdf
131
146
595
842
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3335
[ "exploration overview", "Weststar and Blue River", "Akoase", "Burkina Faso", "21", "RESOLUTE MINING LIMITED", "2004 ANNUAL REPORT", "Under the agreement Resolute will", "receive cash of US$1.5 million and", "Goldbelt shares and warrants to a value", "of CAD$5.0 million. Following completion", "of the transaction Resolute will become", "a major shareholder of Goldbelt and", "will assist it in identifying other gold", "exploitation opportunities in West", "Africa where it does not conflict with", "Resolute’s activities.", "These concessions lie immediately", "along strike from the Adamus Resources", "Salman project area.", "This project is located approximately", "140km north-west of Accra and to the", "north-east of the Newmont, Akim,", "multi million ounce deposit in a similar", "structural and geological setting.", "Wide spaced drilling has confirmed", "results obtained from trenching of the", "main anomaly. These indicate multiple", "1", "to 10m wide zones stacked within", "a shear system that is up to 100m", "wide and has anomalous soil and", "trench results over several kilometres.", "The variable grades and widths of", "mineralisation are demonstrated by", "intersections of 1m @ 20.5g/t Au ", "from 16m, 11m @ 2.35g/t Au from", "18m and 14m @ 5.38g/t Au from 6m.", "The forty-two shallow reverse circulation", "holes drilled to date have been drilled", "on eleven sections at 200m spacing", "between 9,800N and 10,400N and from", "11,000N to 12,200N. All intersections", "are above 60m down hole. Further infill", "and extension drilling is planned.", "During the year the Company reached", "agreement with Goldbelt Resources", "Limited, a TSX Venture Exchange listed", "company, to sell Resolute (West Africa)", "Limited, the owner of the Belahouro", "project and other exploration properties", "in Burkina Faso, for cash and Goldbelt", "shares and warrants. The transaction", "is subject to a number of conditions,", "including due diligence and approval", "by the TSX Venture Exchange and", "Goldbelt shareholders. ", "Goldbelt intends to undertake a major", "capital raising to advance the Belahouro", "project and has committed to immediate", "exploration expenditure of at least", "US$250,000 on the tenements.", "Exploration has continued on the", "contiguous Weststar and Blue River", "concessions located approximately", "60km north-west of Takoradi. Work has", "included soil geochemistry, ground", "magnetics and trenching. Several", "targets are to be drill tested this year." ]
[ [ 790, 86, 136, 10 ], [ 412, 172, 163, 10 ], [ 145, 172, 47, 10 ], [ 412, 364, 128, 14 ], [ 972, 742, 26, 15 ], [ 706, 994, 221, 6 ], [ 706, 994, 221, 6 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 679, 172, 246, 138 ], [ 412, 193, 247, 38 ], [ 412, 193, 247, 38 ], [ 412, 193, 247, 38 ], [ 145, 193, 240, 69 ], [ 145, 193, 240, 69 ], [ 145, 193, 240, 69 ], [ 145, 193, 240, 69 ], [ 145, 193, 240, 69 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 145, 273, 246, 286 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 412, 388, 244, 171 ], [ 679, 321, 246, 66 ], [ 679, 321, 246, 66 ], [ 679, 321, 246, 66 ], [ 679, 321, 246, 66 ], [ 679, 321, 246, 66 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ], [ 412, 242, 244, 97 ] ]
[ [ 790, 86, 136, 10 ], [ 412, 172, 163, 10 ], [ 145, 172, 47, 10 ], [ 412, 364, 128, 14 ], [ 972, 742, 26, 15 ], [ 706, 994, 120, 6 ], [ 830, 994, 97, 6 ], [ 679, 172, 215, 9 ], [ 679, 187, 218, 9 ], [ 679, 201, 246, 9 ], [ 679, 215, 246, 9 ], [ 679, 230, 244, 9 ], [ 679, 244, 224, 9 ], [ 679, 258, 220, 9 ], [ 679, 273, 205, 9 ], [ 679, 287, 226, 9 ], [ 679, 301, 124, 9 ], [ 412, 193, 215, 9 ], [ 412, 207, 247, 9 ], [ 412, 222, 128, 9 ], [ 145, 193, 226, 9 ], [ 145, 208, 237, 9 ], [ 145, 223, 210, 9 ], [ 145, 238, 240, 9 ], [ 145, 253, 201, 9 ], [ 145, 273, 219, 9 ], [ 145, 288, 234, 9 ], [ 145, 303, 239, 9 ], [ 145, 318, 8, 9 ], [ 157, 318, 211, 9 ], [ 145, 333, 213, 9 ], [ 145, 348, 207, 9 ], [ 145, 363, 234, 9 ], [ 145, 378, 210, 9 ], [ 145, 393, 219, 9 ], [ 145, 408, 209, 9 ], [ 145, 423, 217, 9 ], [ 145, 438, 237, 9 ], [ 145, 458, 245, 9 ], [ 145, 474, 234, 9 ], [ 145, 489, 224, 9 ], [ 145, 504, 246, 9 ], [ 145, 519, 237, 9 ], [ 145, 535, 245, 9 ], [ 145, 550, 205, 9 ], [ 412, 388, 237, 9 ], [ 412, 403, 220, 9 ], [ 412, 417, 244, 9 ], [ 412, 432, 243, 9 ], [ 412, 447, 223, 9 ], [ 412, 461, 244, 9 ], [ 412, 476, 240, 9 ], [ 412, 491, 231, 9 ], [ 412, 506, 227, 9 ], [ 412, 520, 230, 9 ], [ 412, 535, 212, 9 ], [ 412, 550, 143, 9 ], [ 679, 321, 235, 9 ], [ 679, 335, 246, 9 ], [ 679, 349, 246, 9 ], [ 679, 364, 209, 9 ], [ 679, 378, 197, 9 ], [ 412, 242, 205, 9 ], [ 412, 257, 221, 9 ], [ 412, 271, 215, 9 ], [ 412, 286, 244, 9 ], [ 412, 301, 216, 9 ], [ 412, 315, 207, 9 ], [ 412, 330, 230, 9 ] ]
[ 5, 7, 7, 7, 5, 4, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
22f9c4bb1d4e13142a356d291a504d05eaa83a2342495b99d04f7d9abbad3c6b
ASX_RSG_2004.pdf
22
80
595
841
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3336
[ "UCI CYCLING REGULATIONS ", "2.4.021", "The specific regulations for the event shall indicate if feeding is permitted and which ", "conditions apply. ", "2.4.023", "The following vehicle shall follow at least 10 metres behind the rider, shall never overtake ", "him nor draw up level with him. In the case of a breakdown, technical support may be ", "rendered only with the rider and vehicle stationary and the following vehicle shall not ", "hinder anyone else. ", "2.4.022", "[abrogated on 1.01.03]. ", "2.4.024", "The following vehicle of a rider who is about to be caught shall, as soon as the distance ", "between the two riders drops below 100 metres, drop back behind the vehicle of the ", "other rider. ", "2.4.025", "The vehicle of a rider who catches another may not take up position between the riders ", "until they are at least 50 metres apart. Should this gap subsequently be reduced, the ", "vehicle shall drop back behind the second rider. ", "2.4.026", "The following vehicle may carry equipment necessary for changing wheels or cycles. ", "2.4.027", "No equipment for the riders may be prepared or held ready outside the following vehicle. ", "Persons riding in vehicles shall not reach or lean out. ", "2.4.028", "If technical support via motor-cycle is permitted, the motorcycle may carry only spare ", "wheels. ", "2.4.029", "Megaphones or loud-hailers may be used. ", "2.4.030", "For an individual time trial open to teams, the organiser must invite and contract the ", "teams rather than their individual riders. ", "2.4.031", "[article abrogated on 1.01.21].", "(text modified on 1.01.02; 1.01.05). ", "Participation ", "Following vehicles ", "E170421 ", "ROAD RACES ", "52 " ]
[ [ 362, 43, 231, 14 ], [ 83, 86, 824, 30 ], [ 83, 86, 824, 30 ], [ 83, 86, 824, 30 ], [ 83, 179, 825, 61 ], [ 83, 179, 825, 61 ], [ 83, 179, 825, 61 ], [ 83, 179, 825, 61 ], [ 83, 179, 825, 61 ], [ 83, 148, 289, 14 ], [ 83, 148, 289, 14 ], [ 83, 256, 824, 45 ], [ 83, 256, 824, 45 ], [ 83, 256, 824, 45 ], [ 83, 256, 824, 45 ], [ 83, 317, 824, 45 ], [ 83, 317, 824, 45 ], [ 83, 317, 824, 45 ], [ 83, 317, 824, 45 ], [ 83, 379, 801, 14 ], [ 83, 379, 801, 14 ], [ 83, 410, 824, 30 ], [ 83, 410, 824, 30 ], [ 83, 410, 824, 30 ], [ 83, 456, 825, 30 ], [ 83, 456, 825, 30 ], [ 83, 456, 825, 30 ], [ 83, 502, 446, 14 ], [ 83, 502, 446, 14 ], [ 83, 548, 825, 30 ], [ 83, 548, 825, 30 ], [ 83, 548, 825, 30 ], [ 83, 625, 339, 14 ], [ 83, 625, 339, 14 ], [ 170, 594, 299, 14 ], [ 170, 533, 119, 14 ], [ 170, 132, 173, 14 ], [ 85, 949, 81, 14 ], [ 458, 949, 112, 14 ], [ 857, 949, 26, 14 ] ]
[ [ 362, 43, 231, 14 ], [ 83, 86, 63, 14 ], [ 170, 86, 736, 14 ], [ 170, 102, 146, 14 ], [ 83, 179, 63, 14 ], [ 170, 179, 737, 14 ], [ 170, 194, 736, 14 ], [ 170, 209, 737, 14 ], [ 170, 225, 170, 14 ], [ 83, 148, 63, 14 ], [ 170, 148, 201, 14 ], [ 83, 256, 63, 14 ], [ 170, 256, 737, 14 ], [ 170, 271, 736, 14 ], [ 170, 286, 96, 14 ], [ 83, 317, 63, 14 ], [ 170, 317, 737, 14 ], [ 170, 333, 737, 14 ], [ 170, 348, 405, 14 ], [ 83, 379, 63, 14 ], [ 170, 379, 714, 14 ], [ 83, 410, 63, 14 ], [ 170, 410, 737, 14 ], [ 170, 425, 448, 14 ], [ 83, 456, 63, 14 ], [ 170, 456, 737, 14 ], [ 170, 471, 69, 14 ], [ 83, 502, 63, 14 ], [ 170, 502, 359, 14 ], [ 83, 548, 63, 14 ], [ 170, 548, 737, 14 ], [ 170, 564, 337, 14 ], [ 83, 625, 63, 14 ], [ 170, 625, 251, 14 ], [ 170, 594, 299, 14 ], [ 170, 533, 119, 14 ], [ 170, 132, 173, 14 ], [ 85, 949, 81, 14 ], [ 458, 949, 112, 14 ], [ 857, 949, 26, 14 ] ]
[ 5, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 7, 7, 4, 4, 4 ]
538e37d5a743d4231fefc5a964094f264192732766d0beeba6b0870ddab702f8
2-roa-regulations-e.pdf
51
309
595
841
1,025
1,025
manuals
manuals
3337
[ "St Barbara Mines Limited Annual Report 2004", "Notes to the Financial Statements ", "for the year ended 30 June 2004", "Movements in each class of provision during the ", "fi", " nancial year, other than employee bene", "fi", " ts, are set out below:", "Movements in Provisions", "Consolidated", "Company", "30", "June 2004", "$’000", "30", "June 2003", "$’000", "30", "June 2004", "$’000", "30", "June 2003", "$’000", "17.", "PROVISIONS", "Current", "Employee bene", "fi", " ts", "751", "771", "751", "771", "Directors’ retirement bene", "fi", " ts", "-", "98", "-", "98", "Surplus leased space", "-", "29", "-", "29", "751", "898", "751", "898", "Non-Current", "Employee bene", "fi", " ts", "78", "180", "78", "180", "Rehabilitation", "4,191", "3,696", "4,191", "3,696", "4,269", "3,876", "4,269", "3,876", "Directors’ ", "retirement ", "bene", "fi", " ts ", "$’000", "Surplus", "leased ", "space", "$’000", "Total", "$’000", "Consolidated and Company", "Current", "Carrying amount at start of the year", "98", "29", "127", "Payments made", "-", "(29)", "(127)", "Written off", "(98)", "-", "-", "Carrying amount at end of the year", "-", "-", "Rehabilitation", "$’000", "Total", "$’000", "Non-Current", "Carrying amount at start of the year", "3,696", "3,696", "Additional provision made", "495", "495", "Carrying amount at end of the year", "4,191", "4,191" ]
[ [ 73, 48, 342, 16 ], [ 122, 119, 573, 29 ], [ 122, 147, 341, 19 ], [ 122, 476, 688, 12 ], [ 122, 476, 688, 12 ], [ 122, 476, 688, 12 ], [ 122, 476, 688, 12 ], [ 122, 476, 688, 12 ], [ 122, 457, 181, 12 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 119, 196, 785, 253 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ], [ 120, 496, 786, 278 ] ]
[ [ 73, 48, 342, 16 ], [ 122, 119, 573, 29 ], [ 122, 147, 341, 19 ], [ 122, 476, 303, 12 ], [ 426, 476, 7, 12 ], [ 429, 476, 246, 12 ], [ 676, 476, 7, 12 ], [ 680, 476, 129, 12 ], [ 122, 457, 181, 12 ], [ 534, 197, 95, 12 ], [ 756, 197, 69, 12 ], [ 492, 215, 15, 12 ], [ 512, 215, 66, 12 ], [ 518, 227, 35, 12 ], [ 589, 215, 15, 12 ], [ 608, 215, 66, 12 ], [ 614, 227, 35, 12 ], [ 683, 215, 15, 12 ], [ 702, 215, 66, 12 ], [ 708, 227, 35, 12 ], [ 795, 215, 15, 12 ], [ 814, 215, 66, 12 ], [ 820, 227, 35, 12 ], [ 122, 254, 26, 16 ], [ 153, 254, 134, 16 ], [ 122, 274, 57, 12 ], [ 122, 292, 95, 12 ], [ 217, 292, 7, 12 ], [ 221, 292, 13, 12 ], [ 541, 292, 23, 12 ], [ 646, 292, 23, 12 ], [ 750, 292, 23, 12 ], [ 855, 292, 23, 12 ], [ 122, 310, 164, 12 ], [ 286, 310, 7, 12 ], [ 290, 310, 13, 12 ], [ 560, 310, 4, 12 ], [ 653, 310, 15, 12 ], [ 769, 310, 4, 12 ], [ 863, 310, 15, 12 ], [ 122, 328, 127, 12 ], [ 560, 328, 4, 12 ], [ 654, 328, 15, 12 ], [ 769, 328, 4, 12 ], [ 863, 328, 15, 12 ], [ 541, 345, 23, 12 ], [ 646, 345, 23, 12 ], [ 750, 345, 23, 12 ], [ 855, 345, 23, 12 ], [ 122, 381, 92, 12 ], [ 122, 398, 95, 12 ], [ 217, 398, 7, 12 ], [ 221, 398, 13, 12 ], [ 549, 398, 15, 12 ], [ 646, 398, 23, 12 ], [ 758, 398, 15, 12 ], [ 855, 398, 23, 12 ], [ 122, 416, 88, 12 ], [ 530, 416, 34, 12 ], [ 634, 416, 34, 12 ], [ 739, 416, 34, 12 ], [ 843, 416, 34, 12 ], [ 529, 434, 34, 12 ], [ 634, 434, 34, 12 ], [ 739, 434, 34, 12 ], [ 843, 434, 34, 12 ], [ 597, 496, 76, 12 ], [ 592, 509, 81, 12 ], [ 612, 521, 34, 12 ], [ 647, 521, 10, 12 ], [ 652, 521, 23, 12 ], [ 635, 533, 35, 12 ], [ 721, 496, 56, 12 ], [ 731, 509, 49, 12 ], [ 736, 521, 40, 12 ], [ 742, 533, 35, 12 ], [ 842, 521, 37, 12 ], [ 844, 533, 35, 12 ], [ 122, 551, 175, 12 ], [ 122, 568, 50, 12 ], [ 122, 586, 226, 12 ], [ 654, 586, 15, 12 ], [ 762, 586, 15, 12 ], [ 856, 586, 23, 12 ], [ 122, 604, 98, 12 ], [ 665, 604, 4, 12 ], [ 754, 604, 22, 12 ], [ 848, 604, 30, 12 ], [ 122, 622, 67, 12 ], [ 647, 622, 22, 12 ], [ 772, 622, 4, 12 ], [ 874, 622, 4, 12 ], [ 122, 639, 222, 12 ], [ 665, 639, 4, 12 ], [ 772, 639, 4, 12 ], [ 689, 675, 87, 12 ], [ 742, 687, 35, 12 ], [ 842, 675, 37, 12 ], [ 844, 687, 35, 12 ], [ 122, 705, 82, 12 ], [ 122, 722, 226, 12 ], [ 742, 722, 34, 12 ], [ 844, 722, 34, 12 ], [ 122, 740, 164, 12 ], [ 754, 740, 23, 12 ], [ 856, 740, 23, 12 ], [ 122, 758, 222, 12 ], [ 742, 758, 34, 12 ], [ 844, 758, 34, 12 ] ]
[ 5, 7, 9, 9, 9, 9, 9, 9, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
2b0fce96c9e0b76f29d992bc66bd6c4aaa8273ae8b3710fde517bdad6beaaf57
ASX_SBM_2004.pdf
47
76
595
841
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3338
[ "3", "and that", "r$_{j/l}$r$_{l/j}$", "is given by a similar expression, we find", "that actually [15]", "single-interface transmission coefficients", "t$_{jk}$", "and", "t$_{km}$", ". As-", "suming in Eq. (2) the same symmetry properties of the", "generalized coefficients", "t$_{j/k}$", "and", "t$_{k/m}$", ", we immediately", "find that Eq. (18) is obeyed. Accordingly, using the in-", "duction argument, we may conclude that this equation is", "for local systems generally valid. Now we argue that Eq.", "(18)", "is also valid for piecewise nonlocal systems as it actu-", "ally ensures the equality of the stack’s transmittances for", "waves incident on it from either side. Indeed, the Poynt-", "ing vector of the upward/downward-propagating wave in", "a layer", "l", "is according to Eqs. (3) and (15) given by", "Accordingly, the right-hand side of Eq.", "(10)", "is, upon", "using Eq. (9), indeed identified as", "r$_{j/l/m}$", ". To prove the", "equality of the transmission coefficients in Eq.", "(8)", "we", "first apply Eq. (2) to the coefficient", "t$_{k/m}$", "=", "t$_{k/l/m}$", "and", "then use the identity (", "r$_{k/m}$", "=", "r$_{k/l/m}$", ") [11]", "which follows from Eq. (9). In this way, we obtain", "which is according to Eq. (2) equal to", "t$_{j/l/m}$", ".", "In most textbook approaches to the wave propagation", "in layered media the basic ingredients in the calculation", "of the generalized Fresnel coefficients are coefficients", "r$_{jk}$", "and", "t$_{jk}$", "for the interface between two neighbouring local", "media", "j", "and", "k", ". With unit polarization vectors in Eq. (3)", "[9]", "with", "η", "p", "l", "=", "η", "s", "l", "∗", "=", "ε", "∗", "l", "/µ", "∗", "$_{l}$. Accordingly, assuming the out-", "most layers", "j", "and", "m", "transparent, transmittances of the", "j/m", "stack for waves incident upward and downward on", "it [given by the ratios of the respective transmitted- to", "incident-energy fluxes", "T", "j/m", "=", "P", "+", "$_{mz}$(", "k", ", ω,", "0)", "/P", "+", "$_{jz}$(", "k", ", ω,", "0)", "and", "T", "m/j", "=", "P", "−", "$_{jz}$(", "k", ", ω,", "0)", "/P", "−", "$_{mz}$(", "k", ", ω,", "0)]", "can only be equal if Eq.", "(18)", "is fulfilled.", "Thus, being", "a consequence of the reciprocity property of the electro-", "magnetic field, this equation is valid for a quite general", "class of (nongyrotropic) media [16].", "and applying the usual boundary conditions for the field,", "it is straightforward to show that the above definition of", "Fresnel coefficients leads to the standard single-interface", "coefficients", "As follows from the above results, recurrence relations", "for Fresnels coefficients of a multilayered system can be", "written in a number of ways depending on number of in-", "termediate local layers. We illustrate this by calculating", "Fresnel coefficients of few simple systems. We first con-", "sider a 12", "/", "3", "system (that is, we allow for an unspecified", "stack of layers between layers 2 and 3 of a three-layer", "local system 123). Since from Eq. (17)", "a$_{12}$", "= 1, Eq. (9)", "leads to standard forms of the recurrence relations for", "Fresnel coefficients [2]", "where", "γ", "p", "jk", "=", "ε$_{j}$/ε$_{k}$", "and", "γ", "s", "jk", "=", "µ$_{j}$/µ$_{k}$", ".", "As can be easily", "verified, these coefficients obey the Stokes relation", "We note that the symmetry property of the single-", "interface transmission coefficient, as expressed by Eq.", "(16b), implies for local systems the same symmetry prop-", "erty of the generalized transmission coefficient", "t$_{j/m}$", ", that", "is [2, 9]", "Indeed, through Eq. (2), it certainly holds for a three-", "layer system", "jkm", "owing to the symmetry property of the", "which, for a three-layer system 123, reduce to the well-", "known results usually quoted in textbooks [1, 2]. Next,", "we consider Fresnel coefficients of a 123", "/", "4", "system. Ac-", "cording to Eq.", "(9), they can be calculated from two", "equivalent sets of recurrence relations differing in the", "choice of the intermediate layer. The first set is the stan-", "dard one [2] and is given by Eq. (21), with the replace-", "ment of indices 2", "/", "3", "→", "23", "/", "4.", "The second set of recurrence", "t$_{j/m}$", "=", "µ$_{m}$β$_{j}$", "µ$_{j}$β$_{m}$", "t$_{m/j}$.", "(18)", "a$_{jk}$", "≡", "t$_{jk}$t$_{kj}$", "−", "r$_{jk}$r$_{kj}$", "= 1", ".", "(17)", "t$_{jk}$", "=", "√", "γ$_{jk}$", "γ", "s", "jk", "(1 +", "r$_{jk}$", ") =", "µ$_{k}$β$_{j}$", "µ$_{j}$β$_{k}$", "t$_{kj}$,", "(16b)", "r$_{jk}$", "=", "β$_{j}$", "−", "γ$_{jk}$β$_{k}$", "β$_{j}$", "+", "γ$_{jk}$β$_{k}$", "=", "−", "r$_{kj}$,", "(16a)", "ˆ", "e", "±", "pl", "=", "∓", "β$_{l}$", "ˆ", "k", "+", "k", "ˆ", "z", "k$_{l}$", ",", "ˆ", "e", "±", "sl", "=", "ˆ", "k", "×", "ˆ", "z", ",", "(15)", "t$_{j/k/m}$", "=", "t$_{j/k}$t$_{k/l}$t$_{l/m}$e", "i", "(", "β$_{k}$d$_{k}$", "+", "β$_{l}$$^{d$_{l}$}$)", "(1", "−", "r$_{k/j}$r$_{k/l}$e", "2", "iβ$_{k}$$^{d$_{k}$}$)(1", "−", "r$_{l/j}$r$_{l/m}$e", "2", "iβ$_{l}$$^{d$_{l}$}$)", ",", "(14)", "(1", "−", "r$_{l/k}$r$_{l/m}$e", "2", "iβ$_{l}$$^{d$_{l}$}$)(1", "−", "r$_{k/j}$ r$_{k/m}$e", "2", "iβ$_{k}$$^{d$_{k}$}$) =", "(1", "−", "r$_{k/j}$r$_{k/l}$e", "2", "iβ$_{k}$$^{d$_{k}$}$)(1", "−", "r$_{l/j}$r$_{l/m}$e", "2", "iβ$_{l}$$^{d$_{l}$}$)", ",", "(13)", "a$_{j/l}$", "=", "t$_{j/l}$t$_{l/j}$", "−", "r$_{j/l}$r$_{l/j}$", "= ˜", "a$_{j/l}$.", "(12)", "P", "±", "l", "(", "k", ", ω, z", ") =", "c", "8", "π", "Re", "√", "η$_{l}$", "k", "±", "β$_{l}$", "ˆ", "z", "k$_{l}$", "|", "E", "±", "l", "e", "±", "iβ$_{l}$$^{z}$|", "$^{2}$,", "(19)", "T", "j/m", "=", "µ$_{j}$β$_{m}$", "µ$_{m}$β$_{j}$", "|", "t$_{j/m}$", "|", "$^{2}$,", "T", "m/j", "=", "µ$_{m}$β$_{j}$", "µ$_{j}$β$_{m}$", "|", "t$_{m/j}$", "|", "$^{2}$,", "(20)", "r$_{12}$$_{/}$$_{3}$", "=", "r$_{12}$", "+", "r$_{2}$$_{/}$$_{3}$e", "2", "iβ$_{2}$d$_{2}$", "1", "−", "r$_{21}$r$_{2}$$_{/}$$_{3}$e", "2", "iβ$_{2}$d$_{2}$", ",", "t$_{12}$$_{/}$$_{3}$", "=", "t$_{12}$t$_{2}$$_{/}$$_{3}$e", "iβ$_{2}$d$_{2}$", "1", "−", "r$_{21}$r$_{2}$$_{/}$$_{3}$e", "2", "iβ$_{2}$d$_{2}$", ",", "(21)" ]
[ [ 933, 37, 8, 12 ], [ 90, 70, 410, 28 ], [ 90, 70, 410, 28 ], [ 90, 70, 410, 28 ], [ 90, 70, 410, 28 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 530, 70, 410, 167 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 142, 410, 74 ], [ 90, 282, 369, 12 ], [ 90, 360, 331, 12 ], [ 90, 360, 331, 12 ], [ 90, 360, 331, 12 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 90, 375, 411, 90 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 324, 410, 105 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 530, 512, 410, 59 ], [ 90, 524, 410, 59 ], [ 90, 524, 410, 59 ], [ 90, 524, 410, 59 ], [ 90, 524, 410, 59 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 530, 582, 410, 152 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 701, 410, 31 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 776, 410, 74 ], [ 90, 908, 410, 28 ], [ 90, 908, 410, 28 ], [ 90, 908, 410, 28 ], [ 90, 908, 410, 28 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 530, 815, 410, 130 ], [ 228, 863, 272, 30 ], [ 228, 863, 272, 30 ], [ 228, 863, 272, 30 ], [ 228, 863, 272, 30 ], [ 228, 863, 272, 30 ], [ 228, 863, 272, 30 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 202, 748, 298, 22 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 177, 651, 323, 38 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 201, 593, 299, 30 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 180, 478, 320, 34 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 112, 308, 388, 48 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 135, 231, 365, 44 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 184, 114, 316, 22 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 561, 267, 380, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 557, 451, 384, 30 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ], [ 538, 764, 403, 48 ] ]
[ [ 933, 37, 8, 12 ], [ 90, 70, 62, 12 ], [ 158, 70, 49, 12 ], [ 214, 70, 286, 12 ], [ 90, 86, 125, 12 ], [ 530, 70, 287, 12 ], [ 822, 70, 19, 12 ], [ 847, 70, 26, 12 ], [ 879, 70, 25, 12 ], [ 905, 70, 36, 12 ], [ 530, 86, 410, 12 ], [ 530, 101, 167, 12 ], [ 707, 101, 25, 12 ], [ 742, 101, 26, 12 ], [ 777, 101, 31, 12 ], [ 810, 101, 130, 12 ], [ 530, 117, 410, 12 ], [ 530, 132, 410, 12 ], [ 530, 147, 410, 12 ], [ 530, 163, 22, 12 ], [ 566, 163, 375, 12 ], [ 530, 178, 410, 12 ], [ 530, 194, 410, 12 ], [ 530, 209, 410, 12 ], [ 530, 225, 48, 12 ], [ 585, 225, 4, 12 ], [ 596, 225, 306, 12 ], [ 90, 142, 297, 12 ], [ 402, 142, 25, 12 ], [ 441, 142, 58, 12 ], [ 90, 157, 252, 12 ], [ 348, 157, 43, 12 ], [ 393, 157, 107, 12 ], [ 90, 173, 349, 12 ], [ 453, 173, 17, 12 ], [ 484, 173, 16, 12 ], [ 90, 188, 268, 12 ], [ 365, 188, 31, 12 ], [ 404, 188, 12, 12 ], [ 423, 188, 42, 12 ], [ 474, 188, 26, 12 ], [ 90, 204, 163, 12 ], [ 254, 204, 33, 12 ], [ 293, 204, 12, 12 ], [ 310, 204, 44, 12 ], [ 356, 204, 37, 12 ], [ 90, 282, 369, 12 ], [ 90, 360, 277, 12 ], [ 374, 360, 41, 12 ], [ 416, 360, 4, 12 ], [ 107, 375, 394, 12 ], [ 90, 391, 410, 12 ], [ 90, 406, 382, 12 ], [ 478, 406, 20, 12 ], [ 90, 421, 26, 12 ], [ 122, 421, 19, 12 ], [ 148, 421, 352, 12 ], [ 90, 437, 43, 12 ], [ 138, 437, 6, 12 ], [ 151, 437, 26, 12 ], [ 183, 437, 8, 12 ], [ 192, 437, 308, 12 ], [ 90, 452, 17, 12 ], [ 530, 327, 32, 12 ], [ 569, 327, 8, 12 ], [ 578, 324, 6, 9 ], [ 577, 334, 4, 9 ], [ 591, 327, 12, 12 ], [ 609, 327, 8, 12 ], [ 618, 325, 6, 9 ], [ 618, 334, 4, 9 ], [ 626, 325, 6, 9 ], [ 639, 327, 12, 12 ], [ 657, 327, 7, 12 ], [ 665, 325, 6, 9 ], [ 665, 334, 4, 9 ], [ 673, 327, 18, 12 ], [ 691, 325, 6, 9 ], [ 691, 327, 249, 12 ], [ 530, 343, 83, 12 ], [ 620, 343, 6, 12 ], [ 634, 343, 26, 12 ], [ 667, 343, 14, 12 ], [ 688, 343, 252, 12 ], [ 530, 358, 30, 12 ], [ 568, 358, 373, 12 ], [ 530, 374, 410, 12 ], [ 530, 389, 160, 12 ], [ 699, 389, 9, 22 ], [ 708, 394, 24, 9 ], [ 742, 389, 12, 12 ], [ 763, 389, 10, 12 ], [ 776, 387, 10, 9 ], [ 774, 389, 25, 12 ], [ 800, 390, 10, 9 ], [ 810, 389, 23, 12 ], [ 836, 389, 14, 12 ], [ 851, 389, 19, 12 ], [ 872, 386, 10, 9 ], [ 870, 389, 20, 12 ], [ 890, 390, 10, 9 ], [ 900, 389, 23, 12 ], [ 926, 389, 14, 12 ], [ 530, 407, 26, 12 ], [ 563, 407, 9, 22 ], [ 572, 412, 24, 9 ], [ 602, 407, 12, 12 ], [ 620, 407, 10, 12 ], [ 633, 404, 10, 9 ], [ 631, 407, 20, 12 ], [ 651, 408, 10, 9 ], [ 661, 407, 23, 12 ], [ 687, 407, 14, 12 ], [ 702, 407, 19, 12 ], [ 723, 405, 10, 9 ], [ 721, 407, 25, 12 ], [ 747, 408, 10, 9 ], [ 757, 407, 23, 12 ], [ 783, 407, 19, 12 ], [ 530, 512, 182, 12 ], [ 726, 512, 25, 12 ], [ 765, 512, 74, 12 ], [ 852, 512, 88, 12 ], [ 530, 528, 410, 12 ], [ 530, 543, 410, 12 ], [ 530, 559, 257, 12 ], [ 90, 524, 410, 12 ], [ 90, 540, 410, 12 ], [ 90, 555, 410, 12 ], [ 90, 571, 78, 12 ], [ 547, 582, 393, 12 ], [ 530, 598, 410, 12 ], [ 530, 613, 410, 12 ], [ 530, 629, 410, 12 ], [ 530, 644, 410, 12 ], [ 530, 660, 71, 12 ], [ 602, 660, 8, 12 ], [ 610, 660, 6, 12 ], [ 630, 660, 311, 12 ], [ 530, 675, 410, 12 ], [ 530, 691, 285, 12 ], [ 822, 691, 22, 12 ], [ 850, 691, 91, 12 ], [ 530, 706, 410, 12 ], [ 530, 721, 158, 12 ], [ 90, 704, 42, 12 ], [ 140, 704, 8, 12 ], [ 149, 701, 6, 9 ], [ 148, 711, 13, 9 ], [ 169, 704, 12, 12 ], [ 189, 704, 38, 12 ], [ 235, 704, 26, 12 ], [ 269, 704, 8, 12 ], [ 278, 702, 6, 9 ], [ 277, 711, 13, 9 ], [ 299, 704, 12, 12 ], [ 318, 704, 42, 12 ], [ 362, 704, 4, 12 ], [ 378, 704, 122, 12 ], [ 90, 719, 366, 12 ], [ 107, 776, 393, 12 ], [ 90, 791, 410, 12 ], [ 90, 806, 410, 12 ], [ 90, 822, 333, 12 ], [ 428, 822, 30, 12 ], [ 460, 822, 40, 12 ], [ 90, 837, 52, 12 ], [ 90, 908, 410, 12 ], [ 90, 924, 89, 12 ], [ 184, 924, 31, 12 ], [ 220, 924, 279, 12 ], [ 530, 815, 410, 12 ], [ 530, 831, 410, 12 ], [ 530, 846, 296, 12 ], [ 827, 846, 8, 12 ], [ 835, 846, 7, 12 ], [ 857, 846, 83, 12 ], [ 530, 862, 110, 12 ], [ 657, 862, 284, 12 ], [ 530, 877, 410, 12 ], [ 530, 893, 410, 12 ], [ 530, 908, 410, 12 ], [ 530, 924, 120, 12 ], [ 651, 924, 8, 12 ], [ 659, 924, 8, 12 ], [ 672, 924, 16, 22 ], [ 693, 924, 16, 12 ], [ 710, 924, 8, 12 ], [ 718, 924, 10, 12 ], [ 742, 924, 199, 12 ], [ 228, 872, 30, 12 ], [ 265, 872, 12, 12 ], [ 284, 863, 37, 12 ], [ 284, 881, 38, 12 ], [ 325, 872, 36, 12 ], [ 471, 872, 29, 12 ], [ 202, 748, 21, 12 ], [ 230, 748, 12, 22 ], [ 248, 748, 39, 12 ], [ 292, 748, 12, 22 ], [ 309, 748, 42, 12 ], [ 357, 748, 26, 12 ], [ 384, 748, 4, 12 ], [ 471, 748, 29, 12 ], [ 177, 662, 19, 12 ], [ 202, 662, 12, 12 ], [ 220, 651, 16, 38 ], [ 238, 653, 21, 12 ], [ 238, 671, 8, 12 ], [ 248, 669, 6, 9 ], [ 247, 677, 13, 9 ], [ 264, 662, 31, 12 ], [ 299, 662, 20, 12 ], [ 321, 662, 24, 12 ], [ 351, 653, 33, 12 ], [ 351, 671, 33, 12 ], [ 388, 662, 25, 12 ], [ 462, 662, 39, 12 ], [ 201, 602, 20, 12 ], [ 228, 602, 12, 12 ], [ 248, 593, 14, 12 ], [ 268, 593, 12, 22 ], [ 284, 593, 39, 12 ], [ 248, 611, 14, 12 ], [ 268, 611, 12, 12 ], [ 284, 611, 39, 12 ], [ 332, 602, 12, 12 ], [ 349, 602, 12, 22 ], [ 362, 602, 26, 12 ], [ 462, 602, 38, 12 ], [ 180, 490, 8, 12 ], [ 180, 491, 8, 9 ], [ 189, 488, 10, 9 ], [ 189, 497, 11, 9 ], [ 206, 491, 12, 12 ], [ 225, 482, 12, 22 ], [ 238, 482, 13, 12 ], [ 254, 478, 8, 12 ], [ 253, 483, 10, 9 ], [ 266, 482, 12, 12 ], [ 283, 482, 8, 12 ], [ 292, 482, 8, 12 ], [ 292, 483, 8, 9 ], [ 256, 499, 12, 12 ], [ 303, 491, 4, 12 ], [ 324, 490, 8, 12 ], [ 324, 491, 8, 9 ], [ 333, 488, 10, 9 ], [ 333, 497, 10, 9 ], [ 349, 491, 12, 12 ], [ 367, 487, 8, 12 ], [ 367, 491, 10, 9 ], [ 381, 491, 12, 22 ], [ 397, 490, 8, 12 ], [ 397, 491, 8, 9 ], [ 406, 491, 4, 12 ], [ 471, 491, 29, 12 ], [ 112, 320, 44, 12 ], [ 163, 320, 12, 12 ], [ 241, 310, 90, 12 ], [ 332, 308, 4, 9 ], [ 336, 308, 5, 9 ], [ 342, 308, 28, 9 ], [ 371, 308, 10, 9 ], [ 381, 308, 31, 9 ], [ 182, 329, 14, 12 ], [ 201, 329, 12, 22 ], [ 218, 329, 63, 12 ], [ 281, 328, 6, 9 ], [ 288, 328, 55, 9 ], [ 347, 329, 12, 22 ], [ 364, 329, 64, 12 ], [ 429, 328, 6, 9 ], [ 435, 328, 36, 9 ], [ 474, 320, 4, 12 ], [ 471, 344, 29, 12 ], [ 135, 233, 14, 12 ], [ 154, 233, 12, 22 ], [ 170, 233, 65, 12 ], [ 236, 231, 6, 9 ], [ 243, 231, 50, 9 ], [ 298, 233, 12, 22 ], [ 314, 233, 71, 12 ], [ 385, 231, 6, 9 ], [ 392, 231, 58, 9 ], [ 148, 254, 14, 12 ], [ 167, 254, 12, 22 ], [ 183, 254, 63, 12 ], [ 247, 252, 6, 9 ], [ 254, 252, 55, 9 ], [ 313, 254, 12, 22 ], [ 330, 254, 64, 12 ], [ 395, 252, 6, 9 ], [ 401, 252, 36, 9 ], [ 437, 254, 4, 12 ], [ 471, 254, 29, 12 ], [ 184, 114, 25, 12 ], [ 215, 114, 12, 12 ], [ 233, 114, 46, 12 ], [ 285, 114, 12, 22 ], [ 302, 114, 49, 12 ], [ 358, 114, 26, 12 ], [ 375, 114, 31, 12 ], [ 471, 114, 29, 12 ], [ 561, 277, 13, 9 ], [ 574, 274, 10, 9 ], [ 574, 283, 4, 9 ], [ 585, 276, 6, 12 ], [ 592, 277, 10, 9 ], [ 602, 276, 33, 12 ], [ 636, 276, 24, 12 ], [ 672, 267, 7, 12 ], [ 667, 285, 8, 12 ], [ 675, 285, 9, 12 ], [ 687, 276, 19, 12 ], [ 707, 268, 13, 22 ], [ 721, 276, 12, 12 ], [ 736, 268, 10, 9 ], [ 750, 267, 12, 22 ], [ 767, 267, 13, 12 ], [ 782, 267, 8, 12 ], [ 781, 268, 8, 9 ], [ 756, 285, 12, 12 ], [ 792, 276, 4, 22 ], [ 797, 276, 12, 12 ], [ 810, 274, 10, 9 ], [ 809, 283, 4, 9 ], [ 821, 276, 7, 12 ], [ 829, 274, 10, 9 ], [ 839, 274, 29, 9 ], [ 869, 276, 12, 12 ], [ 911, 276, 29, 12 ], [ 557, 460, 9, 22 ], [ 566, 465, 24, 9 ], [ 596, 460, 12, 12 ], [ 616, 451, 38, 12 ], [ 616, 469, 37, 12 ], [ 657, 460, 4, 22 ], [ 662, 460, 30, 12 ], [ 693, 460, 4, 22 ], [ 698, 460, 12, 12 ], [ 732, 460, 9, 22 ], [ 741, 465, 24, 9 ], [ 771, 460, 12, 12 ], [ 791, 451, 37, 12 ], [ 791, 469, 38, 12 ], [ 832, 460, 4, 22 ], [ 837, 460, 30, 12 ], [ 868, 460, 4, 22 ], [ 873, 460, 12, 12 ], [ 911, 460, 29, 12 ], [ 538, 776, 34, 12 ], [ 578, 776, 12, 12 ], [ 601, 766, 20, 12 ], [ 627, 766, 12, 12 ], [ 644, 766, 36, 12 ], [ 680, 764, 6, 9 ], [ 687, 764, 31, 9 ], [ 597, 784, 8, 12 ], [ 609, 784, 12, 22 ], [ 626, 784, 57, 12 ], [ 684, 784, 6, 9 ], [ 691, 784, 31, 9 ], [ 726, 776, 4, 12 ], [ 743, 776, 32, 12 ], [ 781, 776, 12, 12 ], [ 820, 766, 54, 12 ], [ 875, 764, 31, 9 ], [ 800, 784, 8, 12 ], [ 812, 784, 12, 22 ], [ 829, 784, 57, 12 ], [ 887, 784, 6, 9 ], [ 894, 784, 31, 9 ], [ 929, 776, 4, 12 ], [ 911, 800, 29, 12 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ]
f775a4719fd299c5644dbfc67c7d8292becd6cdd538a2f4978301cb597b63333
1001.1250.pdf
2
5
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3339
[ "CLOSE FILE", "X", "2014 ", "$’000", "2013 ", "$’000", "20", "RESERVES AND RETAINED EARNINGS ", "(continued)", "General reserve:", "The general reserve is used for amounts that do not relate to other specified reserves.", "Balance at beginning of year", "344", "344", "Balance at end of year", "344", "344", "Total reserves", "96,750", "95,953", "Retained earnings:", "Balance at the beginning of year", "230,862", "215,986", "Net profit attributable to members of VRL", "45,769", "50,931", "Total available for appropriation", "276,631", "266,917", "Dividends and distributions provided or paid", "(86,127)", "(36,055)", "Balance at end of year", "190,504", "230,862", "21", "NON-CONTROLLING INTEREST", "Non-controlling interest in subsidiaries:", "Contributed equity", "14,022", "10,765", "Retained earnings", "843", "153", "14,865", "10,918", "22", "CONTINGENCIES", "(a)", "Contingent liabilities", "Best estimate of amounts relating to:", "(i)", "Bank guarantees for commitments of subsidiaries", "312", "5,712", "(ii)", "Joint and several obligations for operating lease commitments of partners in joint operations", "1", "39,708", "64,237", "(iii)", "Corporate guarantees for commitments of subsidiaries", "–", "317", "40,020", "70,266", "$^{1}$ ", "Refer Note 22(b)(i) for corresponding amount reflecting the related contingent assets.", "As disclosed in Note 22(a)(vi) in the 30 June 2013 financial report, the VRL group anticipates that tax audits may occur from time to time in Australia, and ", "the VRL group is subject to routine tax audits in certain overseas jurisdictions.", "As disclosed in Note 22(a)(vii) in the 30 June 2013 financial report, Village Theatres 3 Limited (“VT3”), a wholly-owned subsidiary in the VRL group, is ", "continuing to take action against its landlord seeking damages. The landlord is also seeking payment of unpaid rent, which has been fully accrued in VT3’s ", "accounts as at 30 June 2014.", "As disclosed in Note 22(a)(viii) in the 30 June 2013 financial report, a former subsidiary of VRL, within the Sydney Attractions Group (“SAG”), had taken legal ", "proceedings to claim amounts owed by the vendor of a business sold to SAG. The vendor had lodged a counter-claim in those proceedings. Settlement was ", "reached in December 2013, resulting in a payment by VRL of approximately $4.6 million. This settlement amount, together with related legal expenses ", "incurred, has been expensed in the accounts to 30 June 2014 (refer Material Items of Income and Expense in the Reconciliation of Results, which forms ", "part of the Directors’ Report).", "In the year ended 30 June 2014, VRL has procured a bank guarantee to support the financing of an associated entity, VR iPic Finance LLC (“VRIF”), in which ", "the VRL group has a 42.86% (3/7th) interest. VRIF has obtained debt financing to contribute funds to iPic-Gold Class Entertainment LLC (“IGCE”), which is ", "also an associated entity of VRL. Another shareholder of IGCE is also providing guarantee support to VRIF. VRL’s guarantee exposure is expected to ", "increase to approximately USD 11.7 million by around June 2015.", "In the year ended 30 June 2014, VC Eye Pty. Ltd., a dormant wholly-owned subsidiary, was placed into creditors’ voluntary liquidation. As VC Eye Pty. Ltd. ", "has only nominal assets, no material impact on the VRL group is expected from this liquidation.", "In the year ended 30 June 2014, following the termination of a contract for construction of a new ride at Sea World by SX Projects Pty. Ltd. (“SX Projects”), ", "a writ has been filed by SX Projects seeking approximately $3 million from the VRL group. A Defence and Counter-Claim has been filed to the effect that ", "the VRL group’s termination was lawful. The matter is making its way through the court process. The VRL group has not provided any amount in relation ", "to this claim.", "In the year ended 30 June 2014, following the cancellation of a New Year’s Eve event at Wet’n’Wild Sydney, which was being organised and promoted by an ", "external party, One Cube Entertainment Pty. Ltd. (“OC”), legal proceedings have been commenced by OC, claiming approximately $1 million. The VRL group ", "has filed a defence and the matter is currently progressing through the court process. No trial date has been set and the VRL group has not provided any ", "amount in relation to this claim.", "59", "ANNUAL REPORT 2014", "(iv) Other contingent liabilities – Income Tax:", "(v)", "Belfast Rent Dispute:", "(vi) Other contingent liabilities – Legal action relating to former subsidiary in Sydney Attractions Group:", "(vii) Guarantee issued in relation to Associate:", "(viii) Dormant subsidiary placed into liquidation:", "(ix) Legal action relating to ride constructed at Sea World, Gold Coast:", "(x)", "Legal action relating to cancelled New Year’s Eve event at Wet’n’Wild Sydney:" ]
[ [ 23, 865, 16, 81 ], [ 23, 865, 16, 81 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 129, 85, 767, 433 ], [ 133, 527, 409, 10 ], [ 133, 527, 409, 10 ], [ 133, 562, 744, 22 ], [ 133, 562, 744, 22 ], [ 133, 609, 756, 32 ], [ 133, 609, 756, 32 ], [ 133, 609, 756, 32 ], [ 133, 666, 759, 54 ], [ 133, 666, 759, 54 ], [ 133, 666, 759, 54 ], [ 133, 666, 759, 54 ], [ 133, 666, 759, 54 ], [ 133, 746, 757, 43 ], [ 133, 746, 757, 43 ], [ 133, 746, 757, 43 ], [ 133, 746, 757, 43 ], [ 133, 815, 747, 22 ], [ 133, 815, 747, 22 ], [ 133, 861, 750, 43 ], [ 133, 861, 750, 43 ], [ 133, 861, 750, 43 ], [ 133, 861, 750, 43 ], [ 133, 930, 762, 43 ], [ 133, 930, 762, 43 ], [ 133, 930, 762, 43 ], [ 133, 930, 762, 43 ], [ 788, 988, 105, 10 ], [ 788, 988, 105, 10 ], [ 133, 548, 252, 12 ], [ 133, 594, 139, 12 ], [ 133, 594, 139, 12 ], [ 133, 652, 582, 12 ], [ 133, 732, 261, 12 ], [ 133, 801, 272, 12 ], [ 133, 847, 395, 12 ], [ 133, 916, 453, 12 ], [ 133, 916, 453, 12 ] ]
[ [ 23, 889, 16, 57 ], [ 27, 865, 9, 14 ], [ 763, 87, 26, 11 ], [ 759, 97, 27, 11 ], [ 862, 87, 25, 11 ], [ 857, 97, 27, 11 ], [ 133, 122, 18, 17 ], [ 156, 122, 308, 17 ], [ 465, 128, 51, 10 ], [ 133, 144, 81, 11 ], [ 133, 157, 422, 11 ], [ 133, 170, 138, 11 ], [ 769, 170, 17, 11 ], [ 868, 170, 16, 11 ], [ 133, 184, 108, 11 ], [ 769, 184, 17, 11 ], [ 868, 184, 16, 11 ], [ 133, 209, 70, 11 ], [ 755, 209, 31, 11 ], [ 854, 209, 30, 11 ], [ 133, 235, 90, 11 ], [ 133, 248, 157, 11 ], [ 749, 248, 36, 11 ], [ 848, 248, 36, 11 ], [ 133, 261, 204, 11 ], [ 755, 261, 31, 11 ], [ 854, 261, 30, 11 ], [ 133, 275, 156, 11 ], [ 749, 275, 36, 11 ], [ 848, 275, 36, 11 ], [ 133, 288, 215, 11 ], [ 752, 287, 37, 11 ], [ 851, 288, 36, 11 ], [ 133, 302, 108, 11 ], [ 749, 302, 36, 11 ], [ 848, 302, 36, 11 ], [ 133, 327, 18, 17 ], [ 156, 327, 249, 17 ], [ 133, 349, 191, 11 ], [ 133, 362, 91, 11 ], [ 755, 362, 31, 11 ], [ 854, 362, 30, 11 ], [ 133, 375, 89, 11 ], [ 769, 375, 17, 11 ], [ 868, 375, 16, 11 ], [ 755, 389, 31, 11 ], [ 854, 389, 30, 11 ], [ 133, 414, 18, 17 ], [ 156, 414, 137, 17 ], [ 133, 434, 14, 12 ], [ 151, 434, 119, 12 ], [ 133, 451, 175, 11 ], [ 133, 463, 9, 11 ], [ 154, 464, 246, 11 ], [ 769, 464, 17, 11 ], [ 859, 464, 25, 11 ], [ 133, 476, 12, 11 ], [ 151, 477, 458, 11 ], [ 609, 476, 3, 6 ], [ 755, 476, 31, 11 ], [ 854, 476, 30, 11 ], [ 133, 489, 15, 11 ], [ 154, 489, 271, 11 ], [ 781, 489, 5, 11 ], [ 868, 489, 16, 11 ], [ 755, 503, 31, 11 ], [ 854, 504, 30, 11 ], [ 133, 527, 5, 10 ], [ 150, 527, 392, 10 ], [ 133, 562, 744, 11 ], [ 133, 573, 381, 11 ], [ 133, 609, 725, 11 ], [ 133, 620, 756, 11 ], [ 133, 630, 139, 11 ], [ 133, 666, 759, 11 ], [ 133, 677, 759, 11 ], [ 133, 688, 736, 11 ], [ 133, 699, 740, 11 ], [ 133, 710, 144, 11 ], [ 133, 746, 757, 11 ], [ 133, 757, 751, 11 ], [ 133, 768, 721, 11 ], [ 133, 779, 314, 11 ], [ 133, 815, 747, 11 ], [ 133, 826, 465, 11 ], [ 133, 861, 750, 11 ], [ 133, 872, 744, 11 ], [ 133, 883, 747, 11 ], [ 133, 894, 63, 11 ], [ 133, 930, 751, 11 ], [ 133, 941, 762, 11 ], [ 133, 952, 748, 11 ], [ 133, 963, 155, 11 ], [ 882, 988, 12, 10 ], [ 788, 991, 84, 7 ], [ 133, 548, 252, 12 ], [ 133, 594, 14, 12 ], [ 150, 594, 122, 12 ], [ 133, 652, 582, 12 ], [ 133, 732, 261, 12 ], [ 133, 801, 272, 12 ], [ 133, 847, 395, 12 ], [ 133, 916, 13, 12 ], [ 149, 916, 437, 12 ] ]
[ 5, 5, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 7, 7, 7, 7, 7, 7, 7, 7, 7 ]
518935d11bf0f38df48288856cf001796c77bcfd3bd736c7861c597d76bbe537
ASX_VRL_2014.pdf
60
80
680
841
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3340
[ "(23)", "PRO FORMA FINANCIAL RESULTS", "The pro forma statement of earnings may not necessarily reflect the", "consolidated results of operations that would have existed had the", "spin-off been effected on the dates specified nor are they necessarily", "indicative of future results.", "The pro forma consolidated statements of earnings for the years", "ended September 30, 1999 and 2000 present the consolidated", "results of Energizer’s operations assuming the spin-off had occurred", "as of October 1, 1998. Such statement of earnings has been pre-", "pared by adjusting the historical statement of earnings to indicate", "the effect of estimated costs and expenses and the recapitalization ", "associated with the spin-off.", "PRO FORMA CONSOLIDATED STATEMENT OF EARNINGS", "(Dollars in millions except per share data – unaudited)", "YEAR ENDED SEPTEMBER 30, 2000", "Adjustments", "Related to", "Historic", "Distribution", "Pro Forma", "Net Sales", "$1,914.3", "$ 1,914.3", "Costs and Expenses", "Cost of products sold", "974.7 ", "974.7", "Selling, general and administrative", "374.4 ", "4.0", "(a) ", "378.4", "0.8", "(b)", "(0.8) (c)", "Advertising and promotion", "187.4 ", "187.4", "Research and development", "49.9 ", "49.9", "Costs related to spin-off", "5.5 ", "5.5", "Loss on disposition of Spanish affiliate", "15.7 ", "15.7", "Interest", "27.5", "17.1", "(d)", "44.6", "1,635.1", "21.1", "1,656.2", "Earnings from Continuing Operations before Income Taxes", "279.2 ", "(21.1)", "258.1", "Income Taxes", "(99.0)", "(23.4)", "(e) ", "(114.0)", "8.4", "(f)", "Earnings from Continuing Operations", "$", "180.2 ", "$", "(36.1)", "$", "144.1", "Earnings Per Share from Continuing Operations (g)", "Basic", "$1.88", "$1.50", "Diluted", "$1.87", "$1.49", "Weighted-average Shares of Common Stock (g)", "Basic", "96.1", "96.1", "Diluted", "96.3", "96.3", "47", "(a)", "To reflect the incremental costs associated with becoming a stand-alone company ", "including Board of Director costs, stock exchange registration fees, shareholder ", "record keeping services, external financial reporting, treasury services, tax planning ", "and compliance, certain legal expenses and compensation planning and administration.", "(b)", "To adjust pension income on plan assets transferred to Energizer plans upon the spin-off.", "(c)", "To eliminate expense of certain postretirement benefits to be retained by Ralston.", "(d)", "To reflect the increase in interest expense associated with debt levels assigned to ", "Energizer upon the spin-off. The adjustment reflects an average interest rate of 6.7% ", "for $67.0 of incremental notes payable and 7.2% for $411.0 of incremental long-term ", "debt. Approximately $303.0 of the incremental debt has a variable interest rate. A 1/8%", "variation in the interest rate would change interest expense by $.4.", "(e)", "To reflect taxes as if Energizer was a single, stand-alone U.S. taxpayer.", "(f)", "To reflect tax effect of the above pro forma adjustments.", "(g)", "The number of shares used to compute earnings per share is based on the weighted-", "average number of shares of Ralston stock outstanding during the six months ended ", "March 31, 2000 (adjusted for the distribution of one share of Energizer stock for each ", "three shares of Ralston stock) and the weighted-average number of shares of Energizer", "stock outstanding from April 1, 2000 to September 30, 2000." ]
[ [ 91, 82, 295, 13 ], [ 91, 82, 295, 13 ], [ 535, 82, 395, 73 ], [ 535, 82, 395, 73 ], [ 535, 82, 395, 73 ], [ 535, 82, 395, 73 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 107, 393, 136 ], [ 91, 280, 402, 9 ], [ 91, 295, 241, 8 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 87, 332, 847, 482 ], [ 984, 385, 17, 9 ], [ 91, 845, 378, 40 ], [ 91, 845, 378, 40 ], [ 91, 845, 378, 40 ], [ 91, 845, 378, 40 ], [ 91, 845, 378, 40 ], [ 91, 896, 386, 8 ], [ 91, 896, 386, 8 ], [ 91, 915, 348, 8 ], [ 91, 915, 348, 8 ], [ 91, 935, 376, 50 ], [ 91, 935, 376, 50 ], [ 91, 935, 376, 50 ], [ 91, 935, 376, 50 ], [ 91, 935, 376, 50 ], [ 91, 935, 376, 50 ], [ 535, 845, 305, 8 ], [ 535, 845, 305, 8 ], [ 535, 864, 242, 8 ], [ 535, 864, 242, 8 ], [ 535, 884, 374, 50 ], [ 535, 884, 374, 50 ], [ 535, 884, 374, 50 ], [ 535, 884, 374, 50 ], [ 535, 884, 374, 50 ], [ 535, 884, 374, 50 ] ]
[ [ 91, 82, 31, 13 ], [ 127, 82, 259, 13 ], [ 535, 82, 388, 11 ], [ 535, 103, 381, 11 ], [ 535, 124, 395, 11 ], [ 535, 145, 153, 11 ], [ 91, 107, 368, 11 ], [ 91, 128, 359, 11 ], [ 91, 149, 393, 11 ], [ 91, 170, 373, 11 ], [ 91, 191, 377, 11 ], [ 91, 212, 383, 11 ], [ 91, 233, 162, 11 ], [ 91, 280, 402, 9 ], [ 91, 295, 241, 8 ], [ 670, 338, 154, 7 ], [ 719, 356, 63, 9 ], [ 725, 369, 50, 9 ], [ 588, 383, 38, 9 ], [ 721, 383, 58, 9 ], [ 868, 383, 53, 9 ], [ 91, 398, 54, 11 ], [ 572, 398, 59, 11 ], [ 862, 398, 60, 11 ], [ 91, 417, 121, 11 ], [ 114, 436, 130, 11 ], [ 596, 436, 38, 11 ], [ 888, 436, 34, 11 ], [ 114, 455, 208, 11 ], [ 596, 455, 38, 11 ], [ 750, 455, 19, 11 ], [ 790, 455, 21, 11 ], [ 888, 455, 34, 11 ], [ 750, 474, 19, 11 ], [ 790, 474, 17, 11 ], [ 745, 493, 62, 11 ], [ 108, 512, 161, 11 ], [ 596, 512, 38, 11 ], [ 888, 512, 34, 11 ], [ 108, 531, 163, 11 ], [ 604, 531, 30, 11 ], [ 895, 531, 26, 11 ], [ 108, 550, 145, 11 ], [ 612, 550, 23, 11 ], [ 903, 550, 19, 11 ], [ 108, 569, 235, 11 ], [ 604, 569, 30, 11 ], [ 895, 569, 26, 11 ], [ 108, 588, 45, 11 ], [ 604, 588, 26, 11 ], [ 742, 588, 26, 11 ], [ 790, 588, 17, 11 ], [ 895, 588, 26, 11 ], [ 586, 607, 45, 11 ], [ 742, 607, 26, 11 ], [ 876, 607, 45, 11 ], [ 91, 626, 354, 11 ], [ 596, 626, 38, 11 ], [ 737, 626, 36, 11 ], [ 888, 626, 34, 11 ], [ 91, 645, 82, 11 ], [ 599, 645, 36, 11 ], [ 737, 645, 36, 11 ], [ 790, 645, 22, 11 ], [ 883, 645, 44, 11 ], [ 750, 664, 19, 11 ], [ 790, 664, 16, 11 ], [ 91, 683, 225, 11 ], [ 572, 683, 7, 11 ], [ 596, 683, 38, 11 ], [ 718, 683, 7, 11 ], [ 737, 683, 36, 11 ], [ 862, 683, 7, 11 ], [ 888, 683, 34, 11 ], [ 91, 704, 310, 11 ], [ 108, 723, 32, 11 ], [ 604, 723, 34, 11 ], [ 895, 723, 34, 11 ], [ 108, 742, 42, 11 ], [ 604, 742, 34, 11 ], [ 895, 742, 34, 11 ], [ 91, 761, 290, 11 ], [ 108, 780, 32, 11 ], [ 604, 780, 26, 11 ], [ 895, 780, 26, 11 ], [ 108, 799, 42, 11 ], [ 604, 799, 26, 11 ], [ 895, 799, 26, 11 ], [ 984, 385, 17, 9 ], [ 91, 845, 11, 8 ], [ 105, 845, 342, 8 ], [ 105, 855, 333, 8 ], [ 105, 866, 350, 8 ], [ 105, 876, 364, 8 ], [ 91, 896, 11, 8 ], [ 106, 896, 371, 8 ], [ 91, 915, 11, 8 ], [ 105, 915, 335, 8 ], [ 91, 935, 11, 8 ], [ 106, 935, 338, 8 ], [ 106, 946, 352, 8 ], [ 106, 956, 358, 8 ], [ 106, 967, 362, 8 ], [ 106, 977, 275, 8 ], [ 535, 845, 11, 8 ], [ 549, 845, 291, 8 ], [ 535, 864, 9, 8 ], [ 547, 864, 230, 8 ], [ 535, 884, 12, 8 ], [ 550, 884, 353, 8 ], [ 550, 895, 353, 8 ], [ 550, 905, 357, 8 ], [ 550, 915, 359, 8 ], [ 550, 926, 254, 8 ] ]
[ 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 ]
9f6ef51bb740fbb9772edbb4a833c01dfee4b28a9394ea6a17255b16f902e192
NYSE_ENR_2000.pdf
48
52
603
783
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3341
[ "24", "/ PART ONE: THE BASICS", "Each main clause is separated from the next by a comma;", "‘and’ precedes the last clause.", "‘Or’ can also be used between two clauses.", "For your birthday, you may have a party or you can visit", "Alton Towers.", "Commas may be used to separate main clauses provided", "the last clause is preceded by ‘and’.", "The house, which had once been beautiful, was now a", "ruin.", "‘Which’ is a relative pronoun, because it and the dependent", "clause both follow the subject of the sentence (the house). It", "is placed in the middle of the main clause and commas are", "used to separate it. The main clause is: ‘The house . . . . . . . . .", ". . . . . was now a ruin’. The dependent cause is ‘. . . . . . . . .", "had once been beautiful . . . . . .’.", "Other relative pronouns are: who, whose, whom, which, that.", "‘That’ can be either a conjunction or a relative pronoun. It", "depends on how it is used.", "Joining clauses with relative pronouns", "Relative pronouns", "have a similar function to conjunctions.", "They link dependent clauses to main clauses and usually", "follow a noun. They are the same words as the interrogative", "pronouns:" ]
[ [ 108, 60, 377, 11 ], [ 108, 60, 377, 11 ], [ 108, 129, 808, 40 ], [ 108, 129, 808, 40 ], [ 108, 204, 566, 15 ], [ 168, 254, 747, 40 ], [ 168, 254, 747, 40 ], [ 137, 335, 749, 35 ], [ 137, 335, 749, 35 ], [ 168, 556, 747, 40 ], [ 168, 556, 747, 40 ], [ 108, 631, 808, 140 ], [ 108, 631, 808, 140 ], [ 108, 631, 808, 140 ], [ 108, 631, 808, 140 ], [ 108, 631, 808, 140 ], [ 108, 631, 808, 140 ], [ 108, 806, 808, 15 ], [ 108, 856, 808, 40 ], [ 108, 856, 808, 40 ], [ 108, 407, 528, 16 ], [ 108, 431, 808, 90 ], [ 108, 431, 808, 90 ], [ 108, 431, 808, 90 ], [ 108, 431, 808, 90 ], [ 108, 431, 808, 90 ] ]
[ [ 108, 60, 26, 11 ], [ 144, 60, 341, 10 ], [ 108, 129, 808, 15 ], [ 108, 154, 393, 15 ], [ 108, 204, 566, 15 ], [ 168, 254, 747, 15 ], [ 168, 279, 192, 15 ], [ 137, 335, 749, 15 ], [ 278, 355, 468, 15 ], [ 168, 556, 747, 15 ], [ 168, 581, 61, 15 ], [ 108, 631, 808, 15 ], [ 108, 656, 808, 15 ], [ 108, 681, 808, 15 ], [ 108, 706, 808, 15 ], [ 108, 731, 808, 15 ], [ 108, 756, 432, 15 ], [ 108, 806, 808, 15 ], [ 108, 856, 808, 15 ], [ 108, 881, 349, 15 ], [ 108, 407, 528, 16 ], [ 108, 431, 249, 15 ], [ 371, 431, 544, 15 ], [ 108, 456, 808, 15 ], [ 108, 481, 808, 15 ], [ 108, 506, 132, 15 ] ]
[ 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 9, 9, 9, 9, 9 ]
24c8a0ca6c5665d24c0997d2c7c2d0557797c4730c8437fe0d360fd1ae95cbc9
itp_2015_12653122.pdf
36
193
337
615
1,025
1,025
manuals
manuals
3342
[ "5432", "online location, 2", "syntax conventions, 2", "typographical conventions, 2", "mask_inner() MySQL Enterprise Data Masking and De-Identification function, 1585", "mask_outer() MySQL Enterprise Data Masking and De-Identification function, 1585", "mask_pan() MySQL Enterprise Data Masking and De-Identification function, 1586", "mask_pan_relaxed() MySQL Enterprise Data Masking and De-Identification function, 1587", "mask_ssn() MySQL Enterprise Data Masking and De-Identification function, 1587", "Master has sent all binlog to slave; waiting for more updates", "thread state, 1854", "master thread, 6166", "master-data option", "mysqldump, 490", "master-info-file option", "mysqld, 3505", "master-retry-count option", "mysqld, 3505", "master_info_repository system variable, 3518, 3599", "MASTER_POS_WAIT(), 2448, 2773", "master_verify_checksum system variable, 3565", "MATCH ... AGAINST(), 2202", "matching", "patterns, 319", "materialization", "common table expressions, 1703, 1797", "derived tables, 1703, 1797", "subqueries, 1698", "view references, 1703, 1797", "math, 2454", "mathematical functions, 2141", "MAX(), 2402", "MAX(DISTINCT), 2402", "max-allowed-packet option", "mysql, 426", "mysqldump, 497", "mysqlpump, 523", "mysql_upgrade, 410", "max-binlog-dump-events option", "mysqld, 3546", "max-join-size option", "mysql, 427", "max-record-length option", "myisamchk, 570", "max-relay-log-size option", "mysqld, 3506", "max-rows option", "ndb_import, 4328", "MaxAllocate, 4088", "MaxBufferedEpochBytes, 4109", "MaxBufferedEpochs, 4109", "MAXDB", "removed features, 45", "MaxDiskDataLatency, 4146", "MaxDiskWriteSpeed, 4111" ]
[ [ 60, 964, 37, 11 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ], [ 60, 94, 669, 835 ] ]
[ [ 60, 964, 37, 11 ], [ 80, 94, 125, 11 ], [ 80, 110, 161, 11 ], [ 80, 126, 212, 11 ], [ 60, 141, 614, 11 ], [ 60, 157, 615, 11 ], [ 60, 172, 605, 11 ], [ 60, 188, 669, 11 ], [ 60, 203, 603, 11 ], [ 60, 219, 444, 11 ], [ 80, 234, 135, 11 ], [ 60, 250, 149, 11 ], [ 60, 265, 139, 11 ], [ 80, 281, 122, 11 ], [ 60, 296, 161, 11 ], [ 80, 312, 99, 11 ], [ 60, 327, 187, 11 ], [ 80, 343, 99, 11 ], [ 60, 358, 384, 11 ], [ 60, 374, 269, 11 ], [ 60, 390, 352, 11 ], [ 60, 405, 214, 11 ], [ 60, 421, 67, 11 ], [ 80, 436, 97, 11 ], [ 60, 452, 107, 11 ], [ 80, 467, 292, 11 ], [ 80, 483, 197, 11 ], [ 80, 498, 128, 11 ], [ 80, 514, 210, 11 ], [ 60, 529, 83, 11 ], [ 60, 545, 217, 11 ], [ 60, 560, 94, 11 ], [ 60, 576, 171, 11 ], [ 60, 591, 199, 11 ], [ 80, 607, 80, 11 ], [ 80, 622, 122, 11 ], [ 80, 638, 122, 11 ], [ 80, 654, 151, 11 ], [ 60, 669, 234, 11 ], [ 80, 685, 99, 11 ], [ 60, 700, 148, 11 ], [ 80, 716, 80, 11 ], [ 60, 731, 186, 11 ], [ 80, 747, 120, 11 ], [ 60, 762, 187, 11 ], [ 80, 778, 99, 11 ], [ 60, 793, 122, 11 ], [ 80, 809, 130, 11 ], [ 60, 824, 137, 11 ], [ 60, 840, 230, 11 ], [ 60, 855, 197, 11 ], [ 60, 871, 59, 11 ], [ 80, 887, 158, 11 ], [ 60, 902, 204, 11 ], [ 60, 918, 198, 11 ] ]
[ 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
188d542e812e57d03f5b930ca6e9aad9d4c578a166d2324bd501bb44a8014216
refman-8.0-en.pdf
5,461
6,228
612
792
1,025
1,025
manuals
manuals
3343
[ "found such that the average local packing fraction", "¯", "φ", "(", "R$_{min}$", "(", "N", ")) of spheres of unit diameter", "within the windows is equal to the infinite-volume packing fraction", "φ", "∞", "of the spheres of", "unit", "diameter in", "R", "$^{d}$. The concepts of overlay and rotation are illustrated in Fig. 3 for a", "triangular", "lattice of disks of unit diameter.", "It suffices to apply the aforementioned construction to periodic packings, as it has been", "shown that periodic packings in", "R", "d", "can obtain an infinite-volume packing fraction", "φ", "∞", "ar-", "bitrarily close to the maximal infinite-volume packing fraction", "φ", "∞", "∗", "(for example, see [22]).", "A periodic packing can be defined in terms of a lattice Λ, where Λ in", "R", "d", "is a subgroup", "consisting of the integer linear combinations of a set of vectors that constitute a basis for", "R", "$^{d}$. For identical nonoverlapping spheres, a lattice packing is a packing where the centers", "of the spheres are located at the points of Λ. In such a lattice packing, the space", "R", "d", "can", "be divided into finite-size identical nonoverlapping regions called fundamental cells, each", "containing the center of only one sphere.", "A periodic packing is a more general formulation of a lattice packing.", "For identical", "nonoverlapping spheres, a periodic packing is obtained by placing a fixed configuration of", "a number", "M", "of spheres in a fundamental cell that is then periodically replicated (without", "overlap between cells or spheres) to cover$_{R}$", "$^{d}$. The fixed configuration of", "M", "spheres within", "10", "FIG.", "3: Illustration of a rotation of an infinite packing of identical nonoverlapping windows of", "radius", "R", ", arranged on the sites of a triangular lattice, overlayed upon an infinite packing of smaller", "iden", "tical nonoverlapping disks.", "A rotation is selected such that irrational ratios are achiev", "ed", "between the components of at least one of the lattice vectors of the packing of windows in the", "directions of the lattice vectors of the packing of smaller disks. As a result, at large distances from", "the axis of rotation, any window can be thought of as being placed at random onto the packing of", "smaller disks. It follows that the average local packing fraction", "¯", "φ", "(", "R", ") of the smaller disks within", "the windows is equal to the infinite-volume packing fraction", "φ", "∞", "of the smaller disks." ]
[ [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 91, 780, 99 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 609, 780, 230 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 120, 853, 780, 94 ], [ 491, 979, 19, 13 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ], [ 120, 432, 780, 143 ] ]
[ [ 120, 95, 433, 13 ], [ 563, 91, 9, 13 ], [ 560, 95, 11, 13 ], [ 572, 95, 7, 13 ], [ 580, 95, 40, 13 ], [ 621, 95, 7, 13 ], [ 629, 95, 15, 13 ], [ 647, 95, 254, 13 ], [ 120, 122, 591, 13 ], [ 720, 122, 11, 13 ], [ 731, 119, 14, 9 ], [ 755, 122, 146, 13 ], [ 120, 149, 34, 13 ], [ 163, 149, 99, 13 ], [ 270, 153, 14, 10 ], [ 285, 149, 616, 13 ], [ 120, 176, 84, 13 ], [ 212, 176, 275, 13 ], [ 145, 609, 755, 13 ], [ 120, 636, 276, 13 ], [ 405, 640, 14, 10 ], [ 419, 634, 7, 9 ], [ 435, 636, 400, 13 ], [ 843, 636, 11, 13 ], [ 854, 634, 14, 9 ], [ 877, 636, 23, 13 ], [ 120, 663, 540, 13 ], [ 668, 663, 11, 13 ], [ 680, 661, 14, 9 ], [ 680, 670, 7, 9 ], [ 702, 663, 198, 13 ], [ 120, 691, 622, 13 ], [ 751, 694, 14, 10 ], [ 766, 688, 7, 9 ], [ 782, 691, 118, 13 ], [ 120, 718, 780, 13 ], [ 120, 748, 14, 10 ], [ 135, 745, 766, 13 ], [ 120, 772, 713, 13 ], [ 841, 775, 14, 10 ], [ 856, 770, 7, 9 ], [ 872, 772, 29, 13 ], [ 120, 799, 780, 13 ], [ 120, 826, 348, 13 ], [ 145, 853, 627, 13 ], [ 791, 853, 110, 13 ], [ 120, 880, 780, 13 ], [ 120, 907, 81, 13 ], [ 209, 907, 18, 13 ], [ 237, 907, 663, 13 ], [ 120, 934, 377, 13 ], [ 497, 934, 245, 13 ], [ 750, 934, 18, 13 ], [ 777, 934, 123, 13 ], [ 491, 979, 19, 13 ], [ 120, 432, 37, 12 ], [ 166, 432, 735, 12 ], [ 120, 451, 48, 12 ], [ 174, 451, 13, 12 ], [ 188, 451, 712, 12 ], [ 120, 469, 33, 12 ], [ 153, 469, 218, 12 ], [ 388, 469, 494, 12 ], [ 883, 469, 18, 12 ], [ 120, 488, 780, 12 ], [ 120, 507, 780, 12 ], [ 120, 525, 780, 12 ], [ 120, 544, 512, 12 ], [ 642, 540, 9, 12 ], [ 640, 544, 10, 12 ], [ 651, 544, 7, 12 ], [ 658, 544, 13, 12 ], [ 672, 544, 228, 12 ], [ 120, 563, 478, 12 ], [ 605, 563, 10, 12 ], [ 616, 560, 14, 9 ], [ 637, 563, 159, 12 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
f008c89f0e3eddd8720f4d98540ef55faa9136ced25bd50697c5f424d3d785d8
1002.0604.pdf
9
35
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3344
[ "EUOSHA/2021/OP/F/SE/0142 ", "", " Relying on the capacities of other entities is necessary only when the capacity of the tenderer ", "is not sufficient to fulfil the required minimum levels of capacity. Abstract commitments that ", "other entities will put resources at the disposal of the tenderer will be disregarded. ", "45 " ]
[ [ 449, 41, 189, 13 ], [ 184, 173, 723, 44 ], [ 184, 173, 723, 44 ], [ 184, 173, 723, 44 ], [ 184, 173, 723, 44 ], [ 878, 912, 28, 19 ] ]
[ [ 449, 41, 189, 13 ], [ 184, 174, 9, 13 ], [ 194, 173, 711, 16 ], [ 184, 187, 722, 16 ], [ 184, 201, 626, 16 ], [ 878, 912, 28, 19 ] ]
[ 5, 9, 9, 9, 9, 4 ]
23af070fc96e540e9cf75f642288a9e46bae137813fc9094f23fcc3cea03f3bf
EN-Tender specifications 0142.pdf
44
86
595
842
1,025
1,025
eu_tenders
government_tenders
3345
[ "0", "10", "20", "30", "40", "50", "x", "0", "0.05", "0.1", "0.15", "0.2", "0.25", "$^{40}$Ca Muonic Atom Wave Functions", "a", "b", "Pure Coulomb case:", "Nuclear Charge Distribution:", "1", "2", "3", "4", "5", "6", "0.1", "0.2", "0.3", "0.4", "α", "= 0.4", "s", "α", "= 0.4", "s", "α", "= 0.0", "s", "α", "= 0.0", "s", "ψ$_{a}$", "ψ$_{b}$", "36", "FIG. 18: The", "unnormalized", "1", "s", "wave functions for massless quarks,", "ψ$_{a}$", "(upper solid curve) and", "ψ$_{b}$", "(upper dashed curve), for both potentials", "V$_{v}$", "=", "−", "α$_{s}$/r", "and", "V$_{s}$", "of Eq. (9). The lower curves are for", "α$_{s}$", "= 0, and are the same as in Fig. 3. The value of", "α$_{s}$", "used for the upper curves was 0.4.", "FIG. 17: The", "unnormalized", "1", "s", "muonic atom wave functions for", "$^{40}$Ca (solid curves) compared with", "those for a pure point Coulomb potential with charge", "Z", "= 40 (dashed curves)." ]
[ [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 199, 92, 624, 303 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 197, 489, 629, 302 ], [ 491, 978, 19, 15 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 821, 780, 70 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ], [ 120, 425, 780, 42 ] ]
[ [ 229, 377, 8, 9 ], [ 341, 377, 16, 9 ], [ 457, 377, 16, 9 ], [ 573, 377, 16, 9 ], [ 689, 377, 16, 9 ], [ 805, 377, 16, 9 ], [ 520, 386, 7, 9 ], [ 220, 369, 8, 9 ], [ 200, 314, 28, 9 ], [ 209, 259, 20, 9 ], [ 200, 204, 28, 9 ], [ 207, 149, 20, 9 ], [ 200, 94, 28, 9 ], [ 399, 169, 235, 9 ], [ 317, 242, 5, 7 ], [ 284, 347, 5, 7 ], [ 455, 248, 130, 9 ], [ 397, 263, 189, 9 ], [ 319, 779, 9, 9 ], [ 416, 779, 9, 9 ], [ 514, 779, 9, 9 ], [ 611, 779, 9, 9 ], [ 708, 779, 9, 9 ], [ 805, 779, 9, 9 ], [ 197, 698, 23, 9 ], [ 197, 629, 23, 9 ], [ 197, 561, 23, 9 ], [ 197, 492, 23, 9 ], [ 259, 566, 11, 11 ], [ 286, 566, 40, 11 ], [ 270, 570, 6, 8 ], [ 301, 672, 11, 11 ], [ 329, 672, 40, 11 ], [ 313, 676, 6, 8 ], [ 325, 708, 11, 11 ], [ 352, 708, 40, 11 ], [ 336, 712, 6, 8 ], [ 259, 617, 11, 11 ], [ 286, 616, 40, 11 ], [ 270, 621, 6, 8 ], [ 569, 568, 27, 17 ], [ 572, 599, 28, 17 ], [ 491, 978, 19, 15 ], [ 120, 821, 107, 14 ], [ 234, 821, 105, 13 ], [ 347, 821, 9, 14 ], [ 356, 821, 8, 14 ], [ 371, 821, 283, 14 ], [ 661, 821, 19, 14 ], [ 687, 821, 188, 14 ], [ 882, 821, 17, 14 ], [ 120, 849, 330, 14 ], [ 457, 849, 17, 14 ], [ 481, 849, 14, 14 ], [ 500, 849, 14, 24 ], [ 514, 849, 36, 14 ], [ 557, 849, 29, 14 ], [ 593, 849, 17, 14 ], [ 617, 849, 284, 14 ], [ 120, 877, 18, 14 ], [ 144, 877, 385, 14 ], [ 536, 877, 18, 14 ], [ 561, 877, 272, 14 ], [ 120, 425, 106, 14 ], [ 232, 425, 105, 13 ], [ 344, 425, 9, 14 ], [ 353, 425, 8, 14 ], [ 367, 425, 253, 14 ], [ 627, 425, 273, 14 ], [ 120, 453, 427, 14 ], [ 554, 453, 12, 14 ], [ 573, 453, 173, 14 ] ]
[ 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0 ]
e893d136de9f3ed8c268a999c311c038542252363accee712bccdfc8032f4897
1001.2514.pdf
35
40
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3346
[ "Enter Input Parameter one at a time for 'IRRUT400'", "or", "Enter END to use default values ", "nolockinput", "Enter Next Parameter for 'IRRUT400'", "or", "Enter END to specify end of input", "or", "Enter QUIT to terminate. ", "end", "Processing begins", "All output will be placed in the 'UT400 OUTPUT' file on the 'A' disk.", "Program 'IRRUT400' is being executed - Please wait -", "Processing completes", "Return code from 'IRRUT400' = 0", "The primary RACF database is copied to the RACFVM F200 disk. You can now perform other ", "operations on this copy, such as reporting or making further backups by using DDR or other ", "facilities.", "The RACUT200 and RACUT400 execs that start the RACF utilities are sensitive to the types ", "of disks that are used. It also makes assumptions about the type of device to expect based on ", "the device addresses used.", "In this example, when we attached the F200 minidisk by using F200 as the virtual device ", "address, the device address was rejected by the utility as invalid. Only the common device ", "addresses that are used for RACF database minidisks (200, 300, and 400) are accepted by ", "the tools.", "When we attempted to perform the copy that is shown in Example 4-47 on page 103 by using ", "the full-pack minidisk that is attached at 200 and the F200 minidisk that is attached at 300, the ", "utility failed with a message saying the output data set is invalid. It seems that safety checks ", "exist that are built in to the utilities. ", "If you use the 200 and 300 devices, the utilities seem to treat them as through they should be ", "the pair of RACF primary and backup disks, and check the data set names to be as expected. ", "In our case, the real 200 disk and the F200 disk have the data set name ", "RACF.DATASET", ", and ", "this issue caused the utility to fail. Attaching the F200 minidisk at 400 instead worked well ", "because the utility makes no assumptions about the name of the data set that should appear ", "at device 400.", "If a system availability issue occurs, it might be necessary to recover RACF data from a ", "backup. Circumstances also might exist that prevent the RACFVM server from starting. ", "This section introduces some basic methods to use to perform recovery of RACF.", "4.3.8", "RACF recovery options", "Using the RACUT200 and RACUT400 tools", "Chapter 4. IBM Resource Access Control Facility Security Server for IBM z/VM ", "105" ]
[ [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 92, 577, 275 ], [ 229, 394, 687, 42 ], [ 229, 394, 687, 42 ], [ 229, 394, 687, 42 ], [ 229, 478, 687, 42 ], [ 229, 478, 687, 42 ], [ 229, 478, 687, 42 ], [ 229, 537, 680, 58 ], [ 229, 537, 680, 58 ], [ 229, 537, 680, 58 ], [ 229, 537, 680, 58 ], [ 229, 612, 687, 58 ], [ 229, 612, 687, 58 ], [ 229, 612, 687, 58 ], [ 229, 612, 687, 58 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 687, 687, 89 ], [ 229, 838, 651, 27 ], [ 229, 838, 651, 27 ], [ 229, 882, 602, 11 ], [ 108, 804, 302, 15 ], [ 108, 804, 302, 15 ], [ 229, 458, 405, 14 ], [ 338, 976, 577, 11 ], [ 338, 976, 577, 11 ] ]
[ [ 229, 92, 418, 11 ], [ 279, 108, 16, 11 ], [ 229, 123, 267, 11 ], [ 229, 139, 92, 11 ], [ 229, 170, 292, 11 ], [ 279, 185, 16, 11 ], [ 229, 201, 276, 11 ], [ 279, 216, 16, 11 ], [ 229, 232, 209, 11 ], [ 229, 248, 25, 11 ], [ 229, 279, 142, 11 ], [ 229, 294, 577, 11 ], [ 229, 310, 435, 11 ], [ 229, 341, 167, 11 ], [ 229, 356, 259, 11 ], [ 229, 394, 687, 11 ], [ 229, 409, 682, 11 ], [ 229, 425, 64, 11 ], [ 229, 478, 687, 11 ], [ 229, 493, 687, 11 ], [ 229, 509, 203, 11 ], [ 229, 537, 659, 11 ], [ 229, 553, 673, 11 ], [ 229, 568, 680, 11 ], [ 229, 584, 67, 11 ], [ 229, 612, 687, 11 ], [ 229, 628, 687, 11 ], [ 229, 643, 684, 11 ], [ 229, 659, 260, 11 ], [ 229, 687, 687, 11 ], [ 229, 703, 687, 11 ], [ 229, 718, 536, 11 ], [ 766, 719, 100, 11 ], [ 866, 718, 41, 11 ], [ 229, 734, 665, 11 ], [ 229, 750, 687, 11 ], [ 229, 765, 104, 11 ], [ 229, 838, 651, 11 ], [ 229, 853, 648, 11 ], [ 229, 882, 602, 11 ], [ 108, 804, 49, 15 ], [ 164, 804, 246, 15 ], [ 229, 458, 405, 14 ], [ 338, 977, 528, 10 ], [ 888, 976, 28, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 4, 4 ]
43e92a42ac0c2b0d652ad574111d0ccc7e4d6eb2ae1cb444975a98778ab66ebd
sg248447.pdf
118
274
612
792
1,025
1,025
redbooks
manuals
3347
[ "Management’s Discussion and Analysis ", "of Financial Condition and Results of Operations", "BorgWarner Inc. ", "and Consolidated Subsidiaries", "29", "28", "Interest expense, net", " decreased by $3.6 million in 2004 and ", "decreased by $4.4 million between 2003 and 2002. The decreases in ", "2004 and 2003 were due to lower debt levels, as we used cash gen-", "erated from operations to pay off debt. In 2004, our balance sheet ", "debt decreased by $71.0 million. In 2003, our balance sheet debt ", "decreased $2.7 million excluding the fair value adjustment for inter-", "est rate swaps, and we reduced the amount of securitized accounts ", "receivable sold by $40.0 million. We took advantage of lower inter-", "est rates through the use of interest rate and cross-currency swap ", "arrangements described more fully in Note 7 to the Consolidated ", "Financial Statements. ", "new applications and for cost reductions and productivity improve-", "ment projects. Our target for capital spending is to be approximately ", "5.5% of sales. ", "The 2003 investing uses of cash includes $12.8 million of payments ", "to resolve a valuation dispute regarding the value of the turbocharger ", "business of Aktiengesellschaft Kühnle, Kopp & Kausch (AGK). The ", "valuation payment resulted from the settlement in 2003 of a lawsuit ", "brought by certain minority shareholders of AGK related to the auto-", "motive turbocharger business of AGK, which the Company purchased ", "from AGK in 1998.", "The provision for income taxes", " resulted in an effective tax rate ", "for 2004 of 26.3% compared with rates of 28.5% in 2003 and 33.0% ", "for 2002. Our effective tax rates have been lower than the standard ", "federal and state tax rates due to the realization of certain R&D and ", "foreign tax credits; foreign rates, which differ from those in the U.S.; ", "and offset by non-deductible expenses. In addition, the Company ", "made an $11.4 million year-end adjustment to various tax accounts ", "due to changes in circumstances related to various tax items, includ-", "ing changes in tax laws. The year-end adjustment resulted in a reduc-", "tion in the U.S. effective tax rate for 2004. In 2005, we anticipate ", "our tax rate to be approximately 30% to 31% based on our current ", "mix of business.", "Since the settlement of the dispute, the Company extended a formal ", "tender offer to purchase all of the outstanding common and preferred ", "shares of AGK from the remaining shareholders. The Company spent ", "$9.0 million in 2004 and $14.4 million in 2003 to purchase additional ", "shares of AGK, an unconsolidated subsidiary of the Company, which ", "has been recorded as an “Investment in business held for sale” in ", "the Consolidated Balance Sheets. Effective February 17, 2005, the ", "Company signed a Share Transfer Agreement (STA) with Turbo Group ", "GmbH for the sale of its 95.42% interest in AGK. The STA will become ", "effective no later than seven banking days after receipt of approval ", "from both the German Federal Cartel Office and the Austrian Merger ", "Control Authority. The transaction is anticipated to close before ", "March 31, 2005. The estimated proceeds from the pending sale, net ", "of closing costs are approximately €39.8 million. ", "Net cash provided by operating activities of $426.6 million was pri-", "marily used to fund $204.9 million of capital expenditures, $47.5 mil-", "lion of tooling, net of customer reimbursements, pay down long-term ", "debt of $61.8 million, pay $27.9 million of dividends to our sharehold-", "ers, and increase cash and cash equivalents by $116.6 million.", "Stockholders’ equity increased by $273.8 million in 2004. The ", "increase was primarily caused by net income of $218.3 million, ", "along with currency translation and hedge instruments adjustments ", "of $28.4 million, stock option exercises of $14.4 million and stock ", "issuances to retirement plans of $25.8 million. These factors were ", "somewhat offset by dividend payments of $27.9 million. In relation to ", "the U.S. Dollar, the currencies in foreign countries where we conduct ", "business, particularly the Euro and Yen, strengthened, causing the ", "currency translation component of other comprehensive income to ", "increase in both 2004 and 2003. ", "Our total capitalization as of December 31, 2004 of $2,140.9 million ", "is comprised of short-term debt of $16.5 million, long-term debt of ", "$568.0 million, minority interest of $22.2 million and stockholders’ ", "equity of $1,534.2 million. Capitalization at December 31, 2003 was ", "$1,934.2 million. During the year, we reduced our balance sheet debt ", "to debt plus equity ratio to 27.3% from 34.2% in 2003. ", "The Company has a new revolving credit facility, which provides for ", "borrowings up to $600 million through July 2009. The new facility ", "effective July 22, 2004, replaced the Company’s previous facility of ", "$350 million. Additionally, we have $300 million available under a ", "universal shelf registration statement on file with the Securities and ", "Exchange Commission through which a variety of debt and/or equity ", "instruments may be issued. The Company also has access to the ", "commercial paper market through a $50 million accounts receivable ", "securitization facility, which is rolled over annually. From a credit qual-", "ity perspective, we have an investment grade credit rating of A- from ", "Standard & Poor’s and Baa2 from Moody’s.", "Net cash provided by operating activities of $426.6 million is $119.7 ", "million more than in 2003. The $426.6 million consists of net income ", "of $218.3 million, increased for non-cash charges of $222.4 million ", "and offset by a $17.3 million increase in net operating assets and ", "liabilities. Non-cash charges are primarily comprised of $177.0 million ", "in depreciation and amortization expense. ", "Accounts receivable increased a total of $84.2 million, of which $23.8 ", "was due to currency. The remaining increase was due to higher busi-", "ness levels, particularly in Europe. Certain of our European custom-", "ers tend to pay slower than our North American customers. Inventory ", "increased by $22.1 million, but our inventory turns improved to 12.9 ", "times from 12.3 times in 2003.", "Operating Activities", "Investing Activities", "LIQUIDITY AND CAPITAL RESOURCES", "Financing Activities and Liquidity", "Net cash used in investing activities totaled $257.2 million, compared ", "with $228.2 million in the prior year. Capital spending totaling $204.9 ", "million in 2004 was $32.9 million higher than in 2003. Approximately ", "60% of the 2004 capital spending was related to expansion, with the ", "remainder for cost reduction and other purposes. Heading into 2005, ", "we plan to continue to spend on capital to support the launch of our ", "The Company has guaranteed the residual values of the leased ", "production equipment. The guarantees extend through the maturity ", "of the underlying lease, which is in 2005. In the event the Company ", "exercises its option not to purchase the production equipment, the ", "Company has guaranteed a residual value of $16.3 million. We do not ", "believe we have any potential loss due to this guarantee.", "The Company has certain leases that are recorded as operating ", "leases. Types of operating leases include leases on the headquar-", "ters facility, an airplane, vehicles, and certain office equipment. The ", "Company also has a lease obligation for production equipment at ", "one of it facilities. The total expected future cash outlays for all lease ", "obligations at the end of 2004 is $58.0 million. See Note 12 to the ", "Consolidated Financial Statements for more information on operating ", "leases, including future minimum payments.", "As of December 31, 2004, the accounts receivable securitization ", "facility was sized at $50 million and has been in place with its cur-", "rent funding partner since January 1994. This facility sells accounts ", "receivable without recourse.", "We believe that the combination of cash from operations, cash bal-", "ances, available credit facilities and the universal shelf registration ", "will be sufficient to satisfy our cash needs for our current level of ", "operations and our planned operations, including the acquisition ", "of Beru, for the foreseeable future. We will continue to balance our ", "needs for internal growth, external growth, debt reduction, dividends ", "and share repurchase.", "The Company has a credit agreement that is subject to the usual ", "terms and conditions applied by banks to an investment grade ", "company. The Company was in compliance with all covenants at ", "December 31, 2004.", "The Company does not have any long-term or fixed purchase obliga-", "tions for inventories.", "The Company’s policy is to fund its defined benefit pension plans in ", "accordance with applicable U.S., U.K., German and Japanese govern-", "ment regulations and to make additional contributions when manage-", "ment deems it appropriate. At December 31, 2004, all legal funding ", "requirements had been met. The Company contributed $36.3 million ", "to its pension plans in 2004 and $17.1 million in 2003. The Company ", "expects to contribute a total of $20 million to $25 million in 2005.", "The funded status of pension plans with accumulated benefit obliga-", "tions in excess of plan assets improved from $(148.1) million at the ", "end of 2003 to $(127.8) million at the end of 2004. The improvement ", "was primarily due to positive returns on plan assets of $43.6 million ", "and company contributions of $36.3 million, which were partially off-", "set by interest costs of $28.8 million, service costs of $11.7 million ", "and foreign currency translation of $9.7 million.", "Other post retirement benefits primarily consist of post retirement ", "health care benefits. The Company funds these benefits as retiree ", "claims are incurred. Other post retirement benefits had an unfunded ", "status of $(537.2) million at the end of 2004, and $(537.4) million at the ", "end of 2003. The unfunded levels were relatively stable as increases in ", "the liabilities related to a decline in the interest rate assumptions used ", "to calculate the ending liabilities for each of the plans were offset by ", "benefits of the new Medicare Part D plan enacted during 2004. ", "The Company believes it will be able to fund the requirements of these ", "plans through cash generated from operations or other sources for ", "the foreseeable future.", "(a)", "Other post retirement benefits (excluding pensions) include anticipated future payments to cover retiree medical and life insurance benefits. Since the timing and amount of ", "payments for pension plans is not certain for future years, such payments have been excluded from this table. The Company expects to contribute a total of $20 million to ", "$25 million into all pension plans during 2005. See Note 8 to the Consolidated Financial Statements for disclosures related to the Company’s pension and other post retire-", "ment benefits.", "(b)", "Projection is based upon an average debt portfolio interest rate of 5.00%. The calculation excludes the impact of the Beru transaction.", "(c)", "The minimum royalty payments are related to the Honeywell royalty agreement discussed more fully in Note 12 to the Consolidated Financial Statements. The Company has ", "other royalty agreements that are based on sales volumes. These royalty agreements do not have minimum royalty payments and are typically cancellable and have been ", "excluded from the amounts in the table.", "The Company’s significant contractual obligation payments at December 31, 2004, are as follows:", "millions of dollars", "Total", "2005", "2006-2007", "2008-2009", "After 2009", "Other post retirement benefits excluding pensions", "(a)", "$1,599.9", "$ 30.8", "$ 60.0", "$ 61.5", "$1,447.6", "Notes payable and long-term debt ", "586.8", "16.5", "158.1", "152.7", "259.5", "Projected minimum interest costs", "(b)", "89.7", "26.2", "38.9", "20.9", "3.7", "Non-cancelable operating leases ", "58.0", "29.1", "9.0", "7.1", "12.8", "Minimum royalty payments", "(c)", "1.5", "1.5", " —", " —", " —", " Total ", "$2,335.9", "$104.1", "$266.0", "$242.2", "$1,723.6", "Pension and Other Post Retirement Benefits", "Off Balance Sheet Arrangements" ]
[ [ 45, 44, 176, 30 ], [ 45, 44, 176, 30 ], [ 938, 52, 65, 20 ], [ 938, 52, 65, 20 ], [ 995, 143, 7, 9 ], [ 22, 143, 7, 9 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 45, 155, 202, 152 ], [ 267, 155, 201, 39 ], [ 267, 155, 201, 39 ], [ 267, 155, 201, 39 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 267, 206, 202, 95 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 45, 321, 202, 167 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 267, 315, 203, 195 ], [ 45, 535, 201, 67 ], [ 45, 535, 201, 67 ], [ 45, 535, 201, 67 ], [ 45, 535, 201, 67 ], [ 45, 535, 201, 67 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 550, 203, 138 ], [ 267, 701, 201, 81 ], [ 267, 701, 201, 81 ], [ 267, 701, 201, 81 ], [ 267, 701, 201, 81 ], [ 267, 701, 201, 81 ], [ 267, 701, 201, 81 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 267, 795, 202, 152 ], [ 45, 642, 202, 81 ], [ 45, 642, 202, 81 ], [ 45, 642, 202, 81 ], [ 45, 642, 202, 81 ], [ 45, 642, 202, 81 ], [ 45, 642, 202, 81 ], [ 45, 736, 201, 81 ], [ 45, 736, 201, 81 ], [ 45, 736, 201, 81 ], [ 45, 736, 201, 81 ], [ 45, 736, 201, 81 ], [ 45, 736, 201, 81 ], [ 45, 624, 75, 11 ], [ 45, 839, 71, 11 ], [ 45, 517, 145, 10 ], [ 267, 531, 126, 11 ], [ 45, 857, 201, 81 ], [ 45, 857, 201, 81 ], [ 45, 857, 201, 81 ], [ 45, 857, 201, 81 ], [ 45, 857, 201, 81 ], [ 45, 857, 201, 81 ], [ 557, 849, 203, 81 ], [ 557, 849, 203, 81 ], [ 557, 849, 203, 81 ], [ 557, 849, 203, 81 ], [ 557, 849, 203, 81 ], [ 557, 849, 203, 81 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 726, 202, 110 ], [ 557, 661, 202, 53 ], [ 557, 661, 202, 53 ], [ 557, 661, 202, 53 ], [ 557, 661, 202, 53 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 525, 203, 95 ], [ 557, 459, 203, 53 ], [ 557, 459, 203, 53 ], [ 557, 459, 203, 53 ], [ 557, 459, 203, 53 ], [ 557, 422, 199, 24 ], [ 557, 422, 199, 24 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 440, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 548, 201, 95 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 657, 202, 110 ], [ 780, 779, 201, 39 ], [ 780, 779, 201, 39 ], [ 780, 779, 201, 39 ], [ 557, 306, 423, 38 ], [ 557, 306, 423, 38 ], [ 557, 306, 423, 38 ], [ 557, 306, 423, 38 ], [ 557, 306, 423, 38 ], [ 557, 351, 331, 8 ], [ 557, 351, 331, 8 ], [ 557, 368, 424, 28 ], [ 557, 368, 424, 28 ], [ 557, 368, 424, 28 ], [ 557, 368, 424, 28 ], [ 557, 155, 286, 10 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 556, 178, 424, 117 ], [ 780, 422, 166, 11 ], [ 557, 642, 123, 11 ] ]
[ [ 45, 44, 145, 11 ], [ 45, 63, 176, 11 ], [ 968, 52, 35, 7 ], [ 938, 65, 63, 7 ], [ 995, 143, 7, 9 ], [ 22, 143, 7, 9 ], [ 45, 155, 73, 10 ], [ 118, 155, 129, 10 ], [ 45, 169, 200, 10 ], [ 45, 183, 199, 10 ], [ 45, 198, 201, 10 ], [ 45, 212, 202, 10 ], [ 45, 226, 199, 10 ], [ 45, 240, 201, 10 ], [ 45, 255, 200, 10 ], [ 45, 269, 201, 10 ], [ 45, 283, 202, 10 ], [ 45, 297, 64, 10 ], [ 267, 155, 199, 10 ], [ 267, 169, 201, 10 ], [ 267, 183, 43, 10 ], [ 267, 206, 201, 10 ], [ 267, 221, 201, 10 ], [ 267, 235, 202, 10 ], [ 267, 249, 201, 10 ], [ 267, 263, 199, 10 ], [ 267, 277, 201, 10 ], [ 267, 292, 54, 10 ], [ 45, 321, 101, 10 ], [ 147, 321, 100, 10 ], [ 45, 335, 201, 10 ], [ 45, 349, 201, 10 ], [ 45, 364, 201, 10 ], [ 45, 378, 201, 10 ], [ 45, 392, 202, 10 ], [ 45, 406, 201, 10 ], [ 45, 420, 199, 10 ], [ 45, 435, 199, 10 ], [ 45, 449, 202, 10 ], [ 45, 463, 201, 10 ], [ 45, 477, 47, 10 ], [ 267, 315, 201, 10 ], [ 267, 329, 200, 10 ], [ 267, 343, 201, 10 ], [ 267, 357, 201, 10 ], [ 267, 372, 201, 10 ], [ 267, 386, 202, 10 ], [ 267, 400, 202, 10 ], [ 267, 414, 201, 10 ], [ 267, 429, 201, 10 ], [ 267, 443, 201, 10 ], [ 267, 457, 201, 10 ], [ 267, 471, 203, 10 ], [ 267, 485, 201, 10 ], [ 267, 500, 144, 10 ], [ 45, 535, 199, 10 ], [ 45, 549, 199, 10 ], [ 45, 563, 201, 10 ], [ 45, 578, 199, 10 ], [ 45, 592, 182, 10 ], [ 267, 550, 202, 10 ], [ 267, 564, 203, 10 ], [ 267, 578, 201, 10 ], [ 267, 593, 202, 10 ], [ 267, 607, 202, 10 ], [ 267, 621, 201, 10 ], [ 267, 635, 201, 10 ], [ 267, 650, 202, 10 ], [ 267, 664, 202, 10 ], [ 267, 678, 98, 10 ], [ 267, 701, 201, 10 ], [ 267, 715, 201, 10 ], [ 267, 729, 201, 10 ], [ 267, 744, 201, 10 ], [ 267, 758, 201, 10 ], [ 267, 772, 161, 10 ], [ 267, 795, 201, 10 ], [ 267, 809, 202, 10 ], [ 267, 823, 201, 10 ], [ 267, 838, 202, 10 ], [ 267, 852, 201, 10 ], [ 267, 866, 201, 10 ], [ 267, 880, 202, 10 ], [ 267, 895, 201, 10 ], [ 267, 909, 199, 10 ], [ 267, 923, 201, 10 ], [ 267, 937, 126, 10 ], [ 45, 642, 201, 10 ], [ 45, 656, 201, 10 ], [ 45, 671, 201, 10 ], [ 45, 685, 202, 10 ], [ 45, 699, 200, 10 ], [ 45, 713, 124, 10 ], [ 45, 736, 200, 10 ], [ 45, 750, 199, 10 ], [ 45, 765, 199, 10 ], [ 45, 779, 201, 10 ], [ 45, 793, 201, 10 ], [ 45, 807, 91, 10 ], [ 45, 624, 75, 11 ], [ 45, 839, 71, 11 ], [ 45, 517, 145, 10 ], [ 267, 531, 126, 11 ], [ 45, 857, 201, 10 ], [ 45, 872, 201, 10 ], [ 45, 886, 201, 10 ], [ 45, 900, 201, 10 ], [ 45, 914, 201, 10 ], [ 45, 929, 201, 10 ], [ 557, 849, 203, 10 ], [ 557, 863, 201, 10 ], [ 557, 877, 201, 10 ], [ 557, 892, 201, 10 ], [ 557, 906, 201, 10 ], [ 557, 920, 164, 10 ], [ 557, 726, 202, 10 ], [ 557, 740, 199, 10 ], [ 557, 755, 201, 10 ], [ 557, 769, 202, 10 ], [ 557, 783, 201, 10 ], [ 557, 797, 201, 10 ], [ 557, 812, 201, 10 ], [ 557, 826, 127, 10 ], [ 557, 661, 202, 10 ], [ 557, 675, 199, 10 ], [ 557, 689, 201, 10 ], [ 557, 703, 82, 10 ], [ 557, 525, 199, 10 ], [ 557, 539, 202, 10 ], [ 557, 554, 202, 10 ], [ 557, 568, 203, 10 ], [ 557, 582, 201, 10 ], [ 557, 596, 201, 10 ], [ 557, 610, 65, 10 ], [ 557, 459, 202, 10 ], [ 557, 474, 203, 10 ], [ 557, 488, 202, 10 ], [ 557, 502, 60, 10 ], [ 557, 422, 199, 10 ], [ 557, 437, 59, 10 ], [ 780, 440, 201, 10 ], [ 780, 454, 199, 10 ], [ 780, 469, 199, 10 ], [ 780, 483, 201, 10 ], [ 780, 497, 201, 10 ], [ 780, 511, 201, 10 ], [ 780, 526, 193, 10 ], [ 780, 548, 199, 10 ], [ 780, 563, 201, 10 ], [ 780, 577, 201, 10 ], [ 780, 591, 201, 10 ], [ 780, 605, 199, 10 ], [ 780, 620, 201, 10 ], [ 780, 634, 138, 10 ], [ 780, 657, 202, 10 ], [ 780, 671, 202, 10 ], [ 780, 685, 201, 10 ], [ 780, 699, 200, 10 ], [ 780, 714, 200, 10 ], [ 780, 728, 201, 10 ], [ 780, 742, 201, 10 ], [ 780, 756, 182, 10 ], [ 780, 779, 200, 10 ], [ 780, 794, 201, 10 ], [ 780, 808, 66, 10 ], [ 557, 306, 5, 8 ], [ 565, 306, 416, 8 ], [ 565, 316, 416, 8 ], [ 565, 325, 414, 8 ], [ 565, 335, 34, 8 ], [ 557, 351, 6, 8 ], [ 565, 351, 323, 8 ], [ 557, 368, 5, 8 ], [ 565, 368, 416, 8 ], [ 565, 377, 416, 8 ], [ 565, 387, 95, 8 ], [ 557, 155, 286, 10 ], [ 559, 182, 43, 7 ], [ 744, 181, 13, 9 ], [ 790, 181, 14, 9 ], [ 830, 181, 30, 9 ], [ 887, 181, 30, 9 ], [ 946, 181, 30, 9 ], [ 557, 200, 140, 10 ], [ 698, 200, 3, 6 ], [ 731, 200, 25, 10 ], [ 786, 201, 19, 9 ], [ 841, 201, 19, 9 ], [ 898, 201, 19, 9 ], [ 951, 201, 25, 9 ], [ 557, 216, 97, 10 ], [ 738, 217, 18, 9 ], [ 792, 217, 12, 9 ], [ 844, 217, 16, 9 ], [ 902, 217, 16, 9 ], [ 957, 217, 18, 9 ], [ 557, 232, 94, 10 ], [ 652, 232, 4, 6 ], [ 744, 233, 12, 9 ], [ 792, 233, 12, 9 ], [ 848, 233, 12, 9 ], [ 905, 233, 12, 9 ], [ 967, 233, 9, 9 ], [ 557, 248, 93, 10 ], [ 744, 249, 12, 9 ], [ 792, 249, 12, 9 ], [ 851, 249, 9, 9 ], [ 909, 249, 9, 9 ], [ 963, 249, 12, 9 ], [ 557, 264, 74, 10 ], [ 632, 265, 4, 6 ], [ 747, 265, 9, 9 ], [ 796, 265, 9, 9 ], [ 852, 265, 8, 9 ], [ 910, 265, 8, 9 ], [ 968, 265, 8, 9 ], [ 557, 281, 26, 10 ], [ 731, 281, 25, 9 ], [ 785, 281, 20, 9 ], [ 840, 281, 20, 9 ], [ 898, 281, 20, 9 ], [ 951, 281, 25, 9 ], [ 780, 422, 166, 11 ], [ 557, 642, 123, 11 ] ]
[ 5, 5, 5, 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7 ]
46b876898b854ca92837be188112fbd9911f98630a1490a5659ff86b5eeb1a66
NYSE_BWA_2004.pdf
15
31
1,224
828
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3348
[ "Figures", "32" ]
[ [ 145, 96, 67, 12 ], [ 491, 978, 19, 15 ] ]
[ [ 145, 96, 67, 12 ], [ 491, 978, 19, 15 ] ]
[ 9, 4 ]
4d6daf615b452fbf8cf97ba2bddd3152498b3ba63e44ae4197bb3e6b9ec9f801
1001.3667.pdf
31
47
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3349
[ "2", "FIG. 2: Set of mechanically compatible and electrically neu-", "tral domain walls in the three ferroelectric phases of BaTiO$_{3}$.", "$_{In the case of 180}$◦ domain walls, where the orientation is", "not determined by symmetry, walls with the most important", "crystallographic orientations are displayed.", "FIG. 1:", "Directions of spontaneous polarization in the (a)", "tetragonal, (b) orthorhombic and (c) rhombohedral phase.", "Angles between polarization direction ’0’ and its symmetry", "equivalent ones are indicated.", "erties in BaTiO$_{3}$ are the same as in our preceding work,", "4", "but for the sake of convenience, the definition and the", "GLD model and its parameters are resumed in Section", "III. Section IV. is devoted to the description of the com-", "putational scheme and approximations applied here to", "solve analytically the Euler-Lagrange equations.", "The", "main result of our study - systematic numerical evalu-", "ation of thicknesses, energies, polarization profiles and", "other properties for different domain walls, is presented", "in Section V. Sections VI. and VII. are devoted to the dis-", "cussion of validity of used approximations and the final", "conclusion, respectively.", "(and its orientation can be therefore dependent on tem-", "perature).", "For", "N", "=", "∞", "there exists infinite number of", "wall orientations, some of them may be preferred ener-", "getically.", "Further,", "the electrically neutral domain walls will", "be considered.", "10", "It implies that the difference", "P", "(", "∞", ")", "−", "P", "(", "−∞", ") between the spontaneous polarizations in the ad-", "jacent domains is perpendicular to the unit vector", "s", ", nor-", "mal to the domain wall:", "Systematic analysis of this equation using symmetry ar-", "guments has been done e.g. in Refs. 10–12. In general,", "the number", "N", "of mechanically compatible domain walls", "separating two particular domain states can have only", "one of the three values:", "N", "= 0,", "N", "= 2 or", "N", "=", "∞", ".", "In case of", "N", "= 2 there exist two mutually perpendic-", "ular domain walls.", "Each of them is either a crystallo-", "graphic (", "W$_{f}$", "-type) wall or non-crystallographic (", "S", "-type)", "wall. Orientation of the", "W$_{f}$", "-wall is fixed by symmetry of", "the crystal, while orientation of the", "S", "-wall is determined", "by components of the strain tensor in adjacent domains", "We also define a unit vector", "r", "‖", "(", "P", "(", "∞", ")", "−", "P", "(", "−∞", ")), which", "identifies the component of the spontaneous polarization", "which reverses when crossing the wall. Then the charge", "neutrality condition (2) can be expressed as", "r", "·", "s", "= 0.", "Finally, let us introduce a third base vector", "t", "=", "r", "×", "s", ",", "3", "∑", "m,n", "=1", "[", "e$_{mn}$", "(", "∞", ")", "−", "e$_{mn}$", "(", "−∞", ")]", "x$_{m}$x$_{n}$", "= 0", ".", "(1)", "(", "P", "(", "∞", ")", "−", "P", "(", "−∞", "))", "·", "s", "= 0", ".", "(2)", "The energy-degeneracy of different directions of spon-", "taneous polarization leads to the appearance of ferroelec-", "tric domain structure. Individual domains are separated", "by domain walls, where the polarization changes from", "one state to another.", "Here, only planar domain walls", "are considered. Orientations of mechanically compatible", "domain walls are determined by the equation for mechan-", "ically compatible interfaces separating two domains with", "the strain tensors", "e$_{ij}$", "(", "−∞", ") and", "e$_{ij}$", "(", "∞", ") :", "II.", "MECHANICALLY COMPATIBLE DOMAIN", "WALLS IN BARIUM TITANATE" ]
[ [ 933, 37, 8, 12 ], [ 530, 589, 410, 65 ], [ 530, 589, 410, 65 ], [ 530, 589, 410, 65 ], [ 530, 589, 410, 65 ], [ 530, 589, 410, 65 ], [ 90, 232, 410, 52 ], [ 90, 232, 410, 52 ], [ 90, 232, 410, 52 ], [ 90, 232, 410, 52 ], [ 90, 232, 410, 52 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 90, 314, 410, 177 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 687, 410, 57 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 530, 747, 410, 72 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 90, 775, 410, 161 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 530, 864, 410, 81 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 146, 720, 354, 41 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 642, 835, 298, 22 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 90, 572, 410, 140 ], [ 98, 527, 394, 23 ], [ 98, 527, 394, 23 ], [ 98, 527, 394, 23 ] ]
[ [ 933, 37, 8, 12 ], [ 530, 589, 410, 11 ], [ 530, 603, 410, 11 ], [ 530, 614, 410, 13 ], [ 530, 630, 410, 11 ], [ 530, 644, 288, 11 ], [ 90, 232, 51, 11 ], [ 155, 232, 345, 11 ], [ 90, 245, 410, 11 ], [ 90, 259, 410, 11 ], [ 90, 273, 199, 11 ], [ 90, 316, 403, 12 ], [ 493, 314, 6, 9 ], [ 90, 331, 410, 12 ], [ 90, 346, 410, 12 ], [ 90, 361, 410, 12 ], [ 90, 375, 410, 12 ], [ 90, 390, 364, 12 ], [ 472, 390, 28, 12 ], [ 90, 405, 410, 12 ], [ 90, 420, 410, 12 ], [ 90, 435, 410, 12 ], [ 90, 450, 410, 12 ], [ 90, 464, 410, 12 ], [ 90, 479, 174, 12 ], [ 530, 687, 410, 12 ], [ 530, 702, 72, 12 ], [ 616, 702, 24, 12 ], [ 647, 702, 13, 12 ], [ 670, 702, 12, 12 ], [ 691, 702, 16, 22 ], [ 715, 702, 226, 12 ], [ 530, 717, 410, 12 ], [ 530, 732, 64, 12 ], [ 547, 747, 59, 12 ], [ 619, 747, 322, 12 ], [ 530, 762, 105, 12 ], [ 636, 760, 13, 9 ], [ 657, 762, 215, 12 ], [ 880, 763, 13, 8 ], [ 893, 762, 6, 12 ], [ 900, 762, 16, 22 ], [ 916, 762, 6, 12 ], [ 928, 762, 12, 22 ], [ 530, 778, 13, 8 ], [ 544, 777, 6, 12 ], [ 550, 777, 29, 22 ], [ 580, 777, 361, 12 ], [ 530, 792, 359, 12 ], [ 894, 792, 7, 8 ], [ 902, 792, 39, 12 ], [ 530, 807, 174, 12 ], [ 90, 775, 410, 12 ], [ 90, 790, 410, 12 ], [ 90, 805, 84, 12 ], [ 180, 805, 13, 12 ], [ 201, 805, 299, 12 ], [ 90, 820, 410, 12 ], [ 90, 835, 179, 12 ], [ 282, 835, 13, 12 ], [ 306, 835, 34, 12 ], [ 349, 835, 13, 12 ], [ 373, 835, 52, 12 ], [ 434, 835, 13, 12 ], [ 458, 835, 12, 12 ], [ 479, 835, 16, 22 ], [ 496, 835, 4, 12 ], [ 90, 850, 73, 12 ], [ 171, 850, 13, 12 ], [ 194, 850, 305, 12 ], [ 90, 864, 138, 12 ], [ 241, 864, 259, 12 ], [ 90, 879, 65, 12 ], [ 156, 879, 22, 12 ], [ 180, 879, 264, 12 ], [ 445, 879, 10, 12 ], [ 456, 879, 44, 12 ], [ 90, 894, 171, 12 ], [ 267, 894, 22, 12 ], [ 291, 894, 209, 12 ], [ 90, 909, 256, 12 ], [ 351, 909, 10, 12 ], [ 363, 909, 137, 12 ], [ 90, 924, 410, 12 ], [ 530, 864, 200, 12 ], [ 735, 865, 7, 8 ], [ 748, 864, 8, 22 ], [ 761, 864, 6, 12 ], [ 767, 865, 13, 8 ], [ 780, 864, 6, 12 ], [ 787, 864, 16, 22 ], [ 803, 864, 6, 12 ], [ 812, 864, 12, 22 ], [ 827, 865, 13, 8 ], [ 840, 864, 6, 12 ], [ 846, 864, 29, 22 ], [ 876, 864, 64, 12 ], [ 530, 879, 410, 12 ], [ 530, 894, 410, 12 ], [ 530, 909, 331, 12 ], [ 869, 910, 7, 8 ], [ 882, 909, 4, 22 ], [ 892, 910, 7, 8 ], [ 907, 909, 33, 12 ], [ 530, 924, 327, 12 ], [ 864, 924, 7, 8 ], [ 879, 924, 12, 12 ], [ 899, 924, 7, 8 ], [ 911, 924, 12, 22 ], [ 929, 924, 7, 8 ], [ 936, 924, 4, 12 ], [ 163, 720, 6, 9 ], [ 154, 730, 24, 30 ], [ 146, 751, 24, 9 ], [ 170, 751, 16, 9 ], [ 187, 733, 4, 12 ], [ 191, 733, 27, 12 ], [ 220, 733, 6, 12 ], [ 226, 733, 16, 22 ], [ 243, 733, 6, 12 ], [ 253, 733, 12, 22 ], [ 270, 733, 27, 12 ], [ 299, 733, 6, 12 ], [ 305, 733, 29, 22 ], [ 335, 733, 11, 12 ], [ 346, 733, 40, 12 ], [ 391, 733, 25, 12 ], [ 423, 733, 4, 12 ], [ 479, 733, 21, 12 ], [ 642, 835, 6, 12 ], [ 649, 836, 13, 8 ], [ 662, 835, 6, 12 ], [ 668, 835, 16, 22 ], [ 685, 835, 6, 12 ], [ 695, 835, 12, 22 ], [ 712, 836, 13, 8 ], [ 725, 835, 6, 12 ], [ 731, 835, 29, 22 ], [ 761, 835, 12, 12 ], [ 778, 835, 4, 22 ], [ 786, 836, 7, 8 ], [ 798, 835, 26, 12 ], [ 827, 835, 4, 12 ], [ 920, 835, 21, 12 ], [ 107, 572, 393, 12 ], [ 90, 587, 410, 12 ], [ 90, 602, 410, 12 ], [ 90, 617, 410, 12 ], [ 90, 632, 159, 12 ], [ 263, 632, 237, 12 ], [ 90, 646, 410, 12 ], [ 90, 661, 410, 12 ], [ 90, 676, 410, 12 ], [ 90, 691, 127, 12 ], [ 223, 691, 17, 12 ], [ 242, 691, 6, 12 ], [ 249, 691, 29, 22 ], [ 279, 691, 38, 12 ], [ 323, 691, 17, 12 ], [ 343, 691, 6, 12 ], [ 349, 691, 16, 22 ], [ 366, 691, 16, 12 ], [ 98, 527, 18, 10 ], [ 135, 527, 357, 10 ], [ 161, 540, 269, 10 ] ]
[ 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 7 ]
975ca28595def77d4d2d25a62d1e20684485c79015fbdcaf91ab729be35e2aeb
1001.1376.pdf
1
12
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3350
[ "Depreservation of an Engine", "Inspection and Depreservation of Accessories", "After the engine has been secured to an engine stand, all ", "covers must be removed from the points where the engine was ", "sealed or closed with ventilatory covers, such as the engine ", "breathers, exhaust outlets, and accessory mounting-pad cover ", "plates. As each cover is removed, inspect the uncovered part ", "of the engine for signs of corrosion. Also, as the dehydrator ", "plugs are removed from each cylinder, make a very careful ", "check of the walls of any cylinder for which the dehydrator ", "plug color indicates an unsafe condition. Care is emphasized ", "in the inspection of the cylinders, even if it is necessary to ", "remove a cylinder.", "On radial engines, the inside of the lower cylinders and ", "intake pipes should be carefully checked for the presence of ", "excessive corrosion-preventive compound that has drained ", "from throughout the interior of the engine and settled at these ", "low points. This excessive compound could cause the engine ", "to become damaged from a hydraulic lock (also referred to ", "as liquid-lock) when a starting attempt is made.", "The check for excessive corrosion-preventive compound in ", "the cylinders of reciprocating engines can be made as the ", "dehydrator plugs are removed from each cylinder. Much of ", "the compound drains from the spark plug holes of the lower ", "cylinders of a radial engine when the dehydrator plugs are ", "removed. But some of the mixture remains in the cylinder head ", "below the level of the spark plug hole and can be removed ", "with a hand pump. ", "[Figure 8-3]", " A more positive method is ", "to remove the lower intake pipes and open the intake valve ", "of the cylinder by rotating the crankshaft. This latter method ", "allows the compound to drain from the cylinder through the ", "open intake valve. If excessive compound is present in an ", "upper cylinder, it can be removed with a hand pump.", "The oil screens should be removed from the engine and ", "thoroughly washed in an approved solvent to remove all ", "accumulations that could restrict the oil circulation and cause ", "engine failure. After the screens are cleaned, immerse them ", "in clean oil and then reinstall them in the engine.", "When the cover has been removed from the intake area, the ", "silica gel desiccant bags (used to remove moisture from the ", "engine in storage) must be removed from the engine area. If ", "the engine uses a propeller, remove the protective covering ", "from the propeller shaft and wash all corrosion-preventive ", "compounds from both the inside and outside surfaces of the ", "shaft. Then, coat the propeller shaft lightly with engine oil. ", "Turbine engines require the removal of several covers on ", "many external areas on the engine.", "As a final check, see that the exterior of the engine is clean. ", "Usually a quantity of compound runs out of the engine when ", "the dehydrator plugs and oil screens are removed. To clean ", "the engine, spray it with an approved commercial solvent.", "An engine’s performance is no better than that of its ", "accessories. Though the engine has been completely ", "overhauled and is in top condition, any oversight or error ", "in installing the accessories can result in improper engine ", "operation or even irreparable damage to it.", "Before depreserving any of the accessories enclosed with ", "the engine, consult the storage data usually stenciled on the ", "outside of the engine container or the records enclosed with ", "the engine to determine how long the engine and accessories ", "were in storage. Certain accessories that normally accompany ", "an engine from overhaul are considered unsafe for use if their ", "time in storage has exceeded a specified period. This time ", "varies according to the limits prescribed by the manufacturer.", "Any accessory that has been removed from an old engine that ", "can be installed on the new one must be given a thorough ", "inspection to determine its condition. This inspection ", "includes a check for general condition, cleanliness, absence ", "of corrosion, and absence of wear as evidenced by excessive ", "play in the moving parts.", "Some accessories must be replaced, regardless of their ", "operating time, if the engine is being changed because ", "of internal failure. Such accessories may have been ", "contaminated by metal particles carried into their operating ", "mechanisms by the engine oil that lubricates them.", "Before installing any replacement accessory, check it ", "visually for signs of corrosion and for freedom of operation. ", "Figure 8-3. ", "Draining corrosion preventive compound.", "8-5" ]
[ [ 124, 56, 233, 17 ], [ 553, 402, 379, 17 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 75, 415, 180 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 273, 415, 114 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 124, 406, 415, 213 ], [ 553, 56, 415, 81 ], [ 553, 56, 415, 81 ], [ 553, 56, 415, 81 ], [ 553, 56, 415, 81 ], [ 553, 56, 415, 81 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 156, 415, 147 ], [ 553, 321, 413, 64 ], [ 553, 321, 413, 64 ], [ 553, 321, 413, 64 ], [ 553, 321, 413, 64 ], [ 553, 421, 416, 81 ], [ 553, 421, 416, 81 ], [ 553, 421, 416, 81 ], [ 553, 421, 416, 81 ], [ 553, 421, 416, 81 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 521, 415, 131 ], [ 553, 670, 415, 97 ], [ 553, 670, 415, 97 ], [ 553, 670, 415, 97 ], [ 553, 670, 415, 97 ], [ 553, 670, 415, 97 ], [ 553, 670, 415, 97 ], [ 553, 785, 416, 81 ], [ 553, 785, 416, 81 ], [ 553, 785, 416, 81 ], [ 553, 785, 416, 81 ], [ 553, 785, 416, 81 ], [ 553, 885, 416, 31 ], [ 553, 885, 416, 31 ], [ 124, 912, 335, 14 ], [ 124, 912, 335, 14 ], [ 937, 964, 24, 16 ] ]
[ [ 124, 56, 233, 17 ], [ 553, 402, 379, 17 ], [ 124, 75, 415, 15 ], [ 124, 91, 412, 15 ], [ 124, 108, 413, 15 ], [ 124, 124, 412, 15 ], [ 124, 141, 412, 15 ], [ 124, 158, 413, 15 ], [ 124, 174, 413, 15 ], [ 124, 191, 413, 15 ], [ 124, 207, 412, 15 ], [ 124, 224, 414, 15 ], [ 124, 240, 128, 15 ], [ 124, 273, 415, 15 ], [ 124, 290, 412, 15 ], [ 124, 306, 414, 15 ], [ 124, 323, 411, 15 ], [ 124, 340, 411, 15 ], [ 124, 356, 413, 15 ], [ 124, 373, 327, 15 ], [ 124, 406, 414, 15 ], [ 124, 422, 415, 15 ], [ 124, 439, 413, 15 ], [ 124, 455, 413, 15 ], [ 124, 472, 414, 15 ], [ 124, 489, 412, 15 ], [ 124, 505, 414, 15 ], [ 124, 522, 133, 15 ], [ 257, 522, 87, 15 ], [ 345, 522, 193, 15 ], [ 124, 538, 414, 15 ], [ 124, 555, 412, 15 ], [ 124, 571, 413, 15 ], [ 124, 588, 415, 15 ], [ 124, 604, 360, 15 ], [ 553, 56, 415, 15 ], [ 553, 73, 415, 15 ], [ 553, 90, 411, 15 ], [ 553, 106, 413, 15 ], [ 553, 123, 336, 15 ], [ 553, 156, 413, 15 ], [ 553, 172, 413, 15 ], [ 553, 189, 412, 15 ], [ 553, 205, 413, 15 ], [ 553, 222, 414, 15 ], [ 553, 238, 412, 15 ], [ 553, 255, 413, 15 ], [ 553, 272, 415, 15 ], [ 553, 288, 239, 15 ], [ 553, 321, 413, 15 ], [ 553, 338, 412, 15 ], [ 553, 354, 413, 15 ], [ 553, 371, 399, 15 ], [ 553, 421, 415, 15 ], [ 553, 438, 416, 15 ], [ 553, 454, 414, 15 ], [ 553, 471, 414, 15 ], [ 553, 487, 293, 15 ], [ 553, 521, 415, 15 ], [ 553, 537, 413, 15 ], [ 553, 554, 413, 15 ], [ 553, 570, 412, 15 ], [ 553, 587, 411, 15 ], [ 553, 603, 412, 15 ], [ 553, 620, 414, 15 ], [ 553, 636, 408, 15 ], [ 553, 670, 411, 15 ], [ 553, 686, 414, 15 ], [ 553, 703, 415, 15 ], [ 553, 719, 413, 15 ], [ 553, 736, 412, 15 ], [ 553, 752, 172, 15 ], [ 553, 785, 415, 15 ], [ 553, 802, 415, 15 ], [ 553, 819, 416, 15 ], [ 553, 835, 413, 15 ], [ 553, 852, 349, 15 ], [ 553, 885, 416, 15 ], [ 553, 901, 412, 15 ], [ 124, 912, 73, 13 ], [ 198, 912, 262, 13 ], [ 937, 964, 24, 16 ] ]
[ 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 4 ]
c3f23f96abb0c2ba3c26938b4bda9dd587d13c69669b693e86670526ea573cf6
FAA-H-8083-32-AMT-Powerplant-Vol-2.pdf
104
272
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3351
[ "E.2.4.2 ", "PM Emissions Modeling ", "APPENDIX E$_{ }$", "MOVES", "is", "the", "EPA-", "approved", "model", "to", "estimate", "PM", "exhaust,", "brake", "wear,", "and", "tire", "emissions for PM hot-spot analyses outside of California. ", "Figure E-2 ", "(", "Steps for Using MOVES ", "in a Quantitative PM Hot-spot Analysis", ") provides the necessary steps for applying the MOVES ", "model for project-level PM hot-spot analyses. ", "Figure E-2. Steps for Using MOVES in a Quantitative PM Hot-spot Analysis ", "Source: EPA, ", "Transportation Conformity Guidance for Quantitative Hot-spot Analyses in PM$_{2.5 }$and PM$_{10 }$Non-", "attainment and Maintenance Area", "s, November 2013 [EPA-420-B-1013-040053]. ", "94$_{ }$" ]
[ [ 120, 91, 309, 20 ], [ 120, 91, 309, 20 ], [ 452, 46, 148, 17 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 120, 117, 800, 73 ], [ 136, 210, 660, 20 ], [ 136, 732, 663, 29 ], [ 136, 732, 663, 29 ], [ 136, 732, 663, 29 ], [ 136, 732, 663, 29 ], [ 502, 962, 45, 15 ] ]
[ [ 120, 91, 63, 20 ], [ 216, 91, 213, 20 ], [ 452, 46, 148, 17 ], [ 120, 117, 39, 20 ], [ 183, 117, 18, 20 ], [ 224, 117, 33, 20 ], [ 281, 117, 43, 20 ], [ 306, 117, 68, 20 ], [ 395, 117, 46, 20 ], [ 461, 117, 12, 20 ], [ 494, 117, 64, 20 ], [ 579, 117, 18, 20 ], [ 617, 117, 65, 20 ], [ 703, 117, 48, 20 ], [ 772, 117, 39, 20 ], [ 831, 117, 29, 20 ], [ 880, 117, 31, 20 ], [ 120, 135, 483, 20 ], [ 598, 134, 98, 20 ], [ 698, 135, 6, 20 ], [ 705, 134, 209, 20 ], [ 120, 152, 326, 20 ], [ 446, 152, 474, 20 ], [ 120, 170, 373, 20 ], [ 136, 210, 660, 20 ], [ 136, 732, 80, 14 ], [ 216, 732, 582, 15 ], [ 136, 746, 212, 15 ], [ 348, 747, 281, 14 ], [ 502, 962, 45, 15 ] ]
[ 7, 7, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 9, 9, 9, 9, 4 ]
26f92a3e7980c0eb3c42b11815307b4f8f399b9bec7f17e8d2c573a12356c5b5
Air_Quality_Handbook_Appendices.pdf
208
225
612
792
1,025
1,025
faa_regulations
laws_and_regulations
3352
[ "In the formula (I-1-3), X$^{02 }$represents an alkylene group 60 ", "which may have a substituent, and specific examples thereof ", "include the same \"linear or branched aliphatic hydrocarbon ", "groups\" and \"aliphatic hydrocarbon group containing a ring ", "in the structure thereof’ as those described above for the ", "\"divalent hydrocarbon group which may have a substituent\" 65 ", "for X in the formula (I-1). As X", "02", ", an ethylene group is ", "particularly desirable. ", "In the formulae (I-1-1) to (I-1-3), R$^{21 }$represents a single ", "bond or an alkylene group which may have a substituent. The ", "55 ", "alkylene group for R$^{21 }$which may have a substituent is the ", "same groups as those described above for R", "$^{2 }$in the formula ", "(I-1). As R", "21", ", a single bond or a methylene group is particu›", "larly desirable. ", "In the formulae (I-1-1) to (I-1-5), X$^{01 }$represents a single ", "bond or an alkylene group which may have a substituent. ", "Specific examples of the alkylene group which may have a ", "substituent include the same \"linear or branched aliphatic ", "hydrocarbon groups\" and \"aliphatic hydrocarbon group con›", "taining a ring in the structure thereof’ as those described ", "above for the \"divalent hydrocarbon group which may have a ", "substituent\" for X. As X", "01", ", a single bond or an ethylene group ", "is particularly desirable. ", "In the formulae (I-1-1) to (I-1-5), R", "1", ", Z, Q, p andM+ are the ", "same as defined for R ", "1,z, ", "Q, p and M+ in the formula (I-1 ). ", "In the formulae, R ", "1", ", Z, Q, p and M+ are the same as defined ", "above; X", "01 ", "represents a single bond or an alkylene group ", "which may have a substituent; R$^{21 }$represents a single bond or ", "an alkylene group which may have a substituent; X$^{02 }$repre›", "sents an alkylene group which may have a substituent; and ", "R $^{22 }$represents an aromatic group which may have a substitu›", "ent. ", "[Chemical Formula 32] ", "US", "9,097,971", "B2 ", "68 ", "67 ", "In the formulae (I-1-4) and (I-1-5), R$^{22 }$represents an aro›", "matic group which may have a substituent. The aromatic ", "group for R$^{22 }$which may have a substituent is the same ", "groups as those described above for R $^{2 }$in the formula (I-1 ). As ", "R ", "22", ", a group in which one or more hydrogen atoms have been ", "removed from a phenyl group or a naphthyl group, or a group ", "in which two or more hydrogen atoms have been removed ", "from quinoline are particularly preferable. ", "[Structural Units Constituting Polymeric Compound] ", "The main chain of the polymeric compound (Al) which ", "has an anion moiety on at least one terminal thereof is not ", "particularly limited, and is preferably formed by cleavage of ", "the ethylenic double bond (C=C). The polymeric compound ", "(Al)", "preferably contains a structural unit derived from a ", "compound having an ethylenic double bond. ", "In the present description, the expression \"structural unit ", "derived from a compound having an ethylenic double bond\" ", "refers to a structural unit that is formed by the cleavage of the ", "ethylenic double bond of the compound having an ethylenic ", "double bond. ", "Examples of the compound having an ethylenic double ", "bond include acrylic acid or an ester thereof which may have ", "the hydrogen atom bonded to the carbon atom on the a-po›", "sition substituted with a substituent, acrylamide or a deriva›", "tive thereof in which the hydrogen atom bonded to the carbon ", "atom on the a-position may be substituted with a substituent, ", "styrene or a derivative thereof in which the hydrogen atom ", "bonded to the carbon atom on the a-position may be substi›", "tuted with a substituent, a vinylnaphthalene or a derivative ", "thereof in which the hydrogen atom bonded to the carbon ", "atom on the a-position may be substituted with a substituent, ", "a cycloolefin or a derivative thereof, and a vinylsulfonate ", "ester. ", "Among these, acrylic acid or an ester thereof which may ", "have the hydrogen atom bonded to the carbon atom on the ", "a-position substituted with a substituent, acrylamide or a ", "derivative thereof in which the hydrogen atom bonded to the ", "carbon atom on the a-position may be substituted with a ", "substituent, styrene or a derivative thereof in which the hydro›", "gen atom bonded to the carbon atom on the a-position may be ", "substituted with a substituent, and a vinylnaphthalene or a ", "derivative thereof in which the hydrogen atom bonded to the ", "carbon atom on the a-position may be substituted with a ", "substituent are preferable, and an acrylate ester which may ", "have the hydrogen atom bonded to the carbon atom on the ", "a-position substituted with a substituent is more preferable. ", "An \"acrylate ester\" refers to a compound in which the ", "terminal hydrogen atom of the carboxy group of acrylic acid ", "(CH$_{2}$=CH-COOH) has been substituted with an organic ", "group. ", "In the present specification, an acrylate ester having the ", "hydrogen atom bonded to the carbon atom on the a-position ", "substituted with a substituent is sometimes referred to as ", "\"a-substituted acrylate ester\". Further, acrylate esters and ", "a-substituted acrylate esters are collectively referred to as ", "\"( a-substituted) acrylate ester\". ", "Examples of the substituent bonded to the carbon atom on ", "the a-position of an a-substituted acrylate ester include a ", "halogen atom, an alkyl group of 1 to 5 carbon atoms, a ", "halogenated alkyl group of 1 to 5 carbon atoms and a ", "hydroxyalkyl group. With respect to the \"structural unit ", "derived from an acrylate ester\", the \"a-position (the carbon ", "atom on the a-position)\" refers to the carbon atom having the ", "carbonyl group bonded thereto, unless specified otherwise. ", "Examples of the halogen atom as the substituent on the ", "a-position include a fluorine atom, a chlorine atom, a bro›", "mine atom and an iodine atom. ", "Specific examples of the alkyl group of 1 to 5 carbon atoms ", "for the substituent on the a-position include linear or ", "(1-1-1) ", "(1-1-3) ", "(1-1-4) ", "(1-1-5) ", "(1-1-2) ", "[", "8", "038", "/~", "2", "’-R21l", "0", "0", "yl~•+-", "M0 ", "Z ", "p " ]
[ [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 871, 384, 100 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 793, 384, 75 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 129, 671, 365, 118 ], [ 130, 642, 364, 25 ], [ 130, 642, 364, 25 ], [ 130, 642, 364, 25 ], [ 130, 642, 364, 25 ], [ 130, 642, 364, 25 ], [ 130, 642, 364, 25 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 129, 547, 366, 92 ], [ 160, 126, 111, 7 ], [ 435, 73, 143, 13 ], [ 435, 73, 143, 13 ], [ 435, 73, 143, 13 ], [ 691, 92, 23, 13 ], [ 300, 92, 23, 12 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 520, 109, 365, 95 ], [ 536, 208, 322, 9 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 220, 368, 71 ], [ 520, 293, 365, 58 ], [ 520, 293, 365, 58 ], [ 520, 293, 365, 58 ], [ 520, 293, 365, 58 ], [ 520, 293, 365, 58 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 520, 355, 365, 172 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 518, 531, 366, 156 ], [ 520, 690, 365, 46 ], [ 520, 690, 365, 46 ], [ 520, 690, 365, 46 ], [ 520, 690, 365, 46 ], [ 520, 740, 366, 71 ], [ 520, 740, 366, 71 ], [ 520, 740, 366, 71 ], [ 520, 740, 366, 71 ], [ 520, 740, 366, 71 ], [ 520, 740, 366, 71 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 813, 365, 95 ], [ 520, 911, 364, 34 ], [ 520, 911, 364, 34 ], [ 520, 911, 364, 34 ], [ 520, 949, 366, 22 ], [ 520, 949, 366, 22 ], [ 160, 143, 334, 67 ], [ 160, 307, 334, 72 ], [ 158, 383, 335, 69 ], [ 160, 456, 335, 67 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ], [ 158, 214, 336, 89 ] ]
[ [ 144, 871, 368, 9 ], [ 129, 884, 367, 9 ], [ 129, 897, 365, 9 ], [ 129, 910, 365, 9 ], [ 129, 922, 365, 9 ], [ 129, 936, 383, 9 ], [ 129, 948, 208, 9 ], [ 339, 947, 11, 5 ], [ 351, 951, 142, 5 ], [ 129, 961, 134, 9 ], [ 144, 793, 349, 9 ], [ 129, 806, 365, 9 ], [ 499, 808, 13, 7 ], [ 129, 819, 365, 9 ], [ 130, 832, 264, 9 ], [ 395, 832, 99, 9 ], [ 130, 845, 64, 9 ], [ 194, 843, 10, 5 ], [ 206, 848, 283, 5 ], [ 129, 858, 92, 9 ], [ 145, 671, 349, 9 ], [ 129, 684, 364, 9 ], [ 129, 698, 364, 9 ], [ 130, 711, 364, 9 ], [ 129, 725, 360, 9 ], [ 129, 739, 365, 9 ], [ 129, 752, 364, 9 ], [ 130, 766, 140, 9 ], [ 271, 764, 10, 5 ], [ 283, 769, 210, 5 ], [ 129, 779, 147, 9 ], [ 144, 643, 204, 9 ], [ 351, 642, 4, 5 ], [ 356, 646, 137, 5 ], [ 130, 657, 132, 9 ], [ 260, 655, 24, 11 ], [ 286, 657, 200, 10 ], [ 145, 548, 110, 9 ], [ 252, 547, 4, 5 ], [ 258, 551, 236, 5 ], [ 129, 562, 55, 9 ], [ 186, 560, 13, 5 ], [ 203, 562, 290, 9 ], [ 129, 576, 366, 9 ], [ 129, 589, 360, 9 ], [ 130, 603, 365, 9 ], [ 129, 617, 360, 9 ], [ 129, 630, 24, 9 ], [ 160, 126, 111, 7 ], [ 435, 73, 23, 13 ], [ 468, 73, 74, 13 ], [ 553, 73, 26, 13 ], [ 691, 92, 23, 13 ], [ 300, 92, 23, 12 ], [ 535, 109, 345, 9 ], [ 520, 122, 364, 9 ], [ 520, 134, 364, 9 ], [ 520, 146, 364, 9 ], [ 520, 158, 13, 9 ], [ 530, 156, 11, 6 ], [ 542, 161, 343, 6 ], [ 520, 171, 364, 9 ], [ 520, 183, 365, 9 ], [ 520, 195, 256, 9 ], [ 536, 208, 322, 9 ], [ 535, 220, 350, 9 ], [ 520, 232, 365, 9 ], [ 520, 244, 368, 9 ], [ 520, 257, 365, 9 ], [ 521, 269, 26, 9 ], [ 552, 269, 333, 9 ], [ 520, 281, 270, 9 ], [ 535, 293, 350, 9 ], [ 520, 306, 365, 9 ], [ 520, 318, 365, 9 ], [ 520, 330, 364, 9 ], [ 520, 342, 81, 9 ], [ 535, 355, 349, 9 ], [ 520, 368, 365, 9 ], [ 520, 382, 361, 9 ], [ 521, 395, 360, 9 ], [ 520, 409, 365, 9 ], [ 520, 422, 364, 9 ], [ 521, 436, 364, 9 ], [ 520, 450, 360, 9 ], [ 520, 463, 364, 9 ], [ 520, 477, 365, 9 ], [ 520, 490, 364, 9 ], [ 520, 504, 365, 9 ], [ 520, 518, 34, 9 ], [ 535, 531, 350, 9 ], [ 520, 543, 364, 9 ], [ 520, 555, 364, 9 ], [ 520, 568, 364, 9 ], [ 520, 580, 364, 9 ], [ 521, 592, 360, 9 ], [ 520, 604, 364, 9 ], [ 521, 617, 363, 9 ], [ 520, 629, 364, 9 ], [ 520, 641, 364, 9 ], [ 521, 654, 364, 9 ], [ 520, 666, 364, 9 ], [ 518, 680, 364, 7 ], [ 535, 690, 350, 9 ], [ 520, 703, 365, 9 ], [ 521, 715, 364, 9 ], [ 520, 727, 41, 9 ], [ 535, 740, 350, 9 ], [ 520, 752, 365, 9 ], [ 521, 764, 363, 9 ], [ 520, 776, 366, 9 ], [ 520, 789, 363, 9 ], [ 520, 801, 193, 9 ], [ 535, 813, 350, 9 ], [ 520, 825, 364, 9 ], [ 520, 838, 364, 9 ], [ 520, 850, 364, 9 ], [ 520, 862, 365, 9 ], [ 520, 874, 365, 9 ], [ 520, 887, 365, 9 ], [ 520, 899, 356, 9 ], [ 535, 911, 349, 9 ], [ 520, 923, 360, 9 ], [ 520, 936, 189, 9 ], [ 536, 949, 349, 9 ], [ 520, 962, 366, 9 ], [ 460, 143, 32, 7 ], [ 460, 308, 32, 7 ], [ 460, 385, 32, 7 ], [ 460, 458, 32, 7 ], [ 460, 215, 32, 7 ], [ 159, 274, 3, 8 ], [ 168, 252, 6, 8 ], [ 176, 260, 18, 7 ], [ 197, 261, 23, 7 ], [ 219, 225, 20, 29 ], [ 221, 245, 66, 29 ], [ 284, 259, 5, 7 ], [ 317, 249, 7, 9 ], [ 325, 237, 155, 38 ], [ 173, 282, 22, 7 ], [ 414, 282, 9, 7 ], [ 305, 296, 6, 6 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 5, 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 ]
63ff5f8f35700b04f91e2027ab59c137a9b4f0be571d0d0890387bceaad90704
9097971_AdobeOCR.pdf
35
148
612
792
1,025
1,025
patents_superacid_pags
patents
3353
[ "XVII", "Emergency Locator Transmitter (ELT)..................11-65", "Long Range Aid to Navigation System ", "(LORAN) ...............................................................11-67", "Global Positioning System (GPS) ..........................11-69", "Wide Area Augmentation System (WAAS).......11-70", "Inertial Navigation System (INS)/Inertial ", "Reference System (IRS).............................................11-71", "Installation of Communication and Navigation ", "Equipment ..................................................................11-72", "Approval of New Avionics Equipment ", "Installations ............................................................11-72", "Considerations ........................................................11-72", "Cooling and Moisture.............................................11-73", "Vibration Isolation..................................................11-73", "Reducing Radio Interference .....................................11-74", "Shielding.................................................................11-74", "Isolation ..................................................................11-74", "Bonding ..................................................................11-74", "Static Discharge Wicks ..........................................11-74", "Installation of Aircraft Antenna Systems...................11-75", "Transmission Lines ................................................11-76", "Maintenance Procedure ..........................................11-76", "Hydraulic and Pneumatic Power Systems......12-1", "Aircraft Hydraulic Systems..........................................12-1", "Hydraulic Fluid ............................................................12-2", "Viscosity...................................................................12-2", "Chemical Stability ....................................................12-2", "Flash Point................................................................12-3", "Fire Point ..................................................................12-3", "Types of Hydraulic Fluids ...........................................12-3", "Mineral-Based Fluids ...............................................12-3", "Polyalphaolefin-Based Fluids...................................12-3", "Phosphate Ester-Based Fluid....................................12-3", "Intermixing of Fluids................................................12-3", "Compatibility with Aircraft Materials......................12-4", "Hydraulic Fluid Contamination................................12-4", "Contamination Check ...........................................12-4", "Contamination Control .........................................12-5", "Hydraulic System Flushing ......................................12-5", "Health and Handling.................................................12-6", "Basic Hydraulic Systems .............................................12-6", "Open Center Hydraulic Systems ..............................12-6", "Closed-Center Hydraulic Systems............................12-7", "Hydraulic Power Systems ............................................12-7", "Evolution of Hydraulic Systems...............................12-7", "Hydraulic Power Pack System .................................12-7", "Hydraulic System Components ................................12-8", "Reservoirs .............................................................12-8", "Chapter 12", "Filters......................................................................12-13", "Micron-Type Filters............................................12-14", "Maintenance of Filters ........................................12-14", "Filter Bypass Valve ............................................12-14", "Filter Differential Pressure Indicators ................12-14", "Pumps .....................................................................12-15", "Hand Pumps ...........................................................12-15", "Power-Driven Pumps .............................................12-16", "Classification of Pumps ......................................12-16", "Constant-Displacement Pumps...........................12-17", "Gear-Type Power Pump .....................................12-17", "Gerotor Pump......................................................12-17", "Piston Pump ........................................................12-17", "Vane Pump..........................................................12-20", "Variable-Displacement Pump.............................12-20", "Valves.....................................................................12-22", "Flow Control Valves...........................................12-22", "Pressure Control Valves .....................................12-27", "Shuttle Valves.....................................................12-30", "Accumulators..........................................................12-31", "Types of Accumulators.......................................12-31", "Heat Exchangers.....................................................12-32", "Actuators ................................................................12-33", "Linear Actuators .................................................12-33", "Rotary Actuators.................................................12-34", "Hydraulic Motor .................................................12-34", "Ram Air Turbine (RAT).........................................12-34", "Power Transfer Unit (PTU)....................................12-35", "Hydraulic Motor-Driven Generator (HMDG)........12-35", "Seals .......................................................................12-35", "V-Ring Packings.................................................12-36", "U-Ring ................................................................12-36", "O-Rings...............................................................12-36", "Backup Rings......................................................12-37", "Gaskets................................................................12-37", "Seal Materials .....................................................12-38", "O-Ring Installation .............................................12-38", "Wipers.................................................................12-38", "Large Aircraft Hydraulic Systems .............................12-38", "Boeing 737 Next Generation Hydraulic System ....12-38", "Reservoirs ...........................................................12-38", "Pumps .................................................................12-40", "Filter Units ..........................................................12-40", "Power Transfer Unit (PTU) ................................12-40", "Landing Gear Transfer Unit................................12-42", "Standby Hydraulic System .................................12-42", "Indications...........................................................12-42" ]
[ [ 930, 964, 32, 16 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 120, 54, 409, 376 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 123, 463, 406, 450 ], [ 124, 446, 89, 17 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ], [ 549, 56, 408, 850 ] ]
[ [ 930, 964, 32, 16 ], [ 139, 56, 388, 15 ], [ 139, 74, 273, 15 ], [ 139, 90, 388, 15 ], [ 139, 107, 388, 15 ], [ 155, 124, 372, 15 ], [ 124, 142, 288, 15 ], [ 124, 158, 403, 15 ], [ 124, 176, 326, 15 ], [ 124, 191, 403, 15 ], [ 139, 209, 271, 15 ], [ 139, 225, 388, 15 ], [ 139, 242, 388, 15 ], [ 139, 259, 388, 15 ], [ 139, 276, 388, 15 ], [ 124, 293, 403, 15 ], [ 139, 311, 388, 15 ], [ 139, 328, 388, 15 ], [ 139, 345, 388, 15 ], [ 139, 362, 388, 15 ], [ 124, 380, 403, 15 ], [ 139, 397, 388, 15 ], [ 139, 414, 388, 15 ], [ 124, 463, 403, 17 ], [ 124, 481, 403, 15 ], [ 124, 499, 403, 15 ], [ 139, 516, 388, 15 ], [ 139, 533, 388, 15 ], [ 139, 550, 388, 15 ], [ 139, 568, 388, 15 ], [ 124, 585, 403, 15 ], [ 139, 602, 388, 15 ], [ 139, 619, 388, 15 ], [ 139, 636, 388, 15 ], [ 139, 654, 388, 15 ], [ 139, 671, 388, 15 ], [ 139, 688, 388, 15 ], [ 155, 705, 372, 15 ], [ 155, 724, 372, 15 ], [ 139, 742, 388, 15 ], [ 139, 760, 388, 15 ], [ 124, 777, 403, 15 ], [ 139, 794, 388, 15 ], [ 139, 811, 388, 15 ], [ 124, 828, 403, 15 ], [ 139, 846, 388, 15 ], [ 139, 863, 388, 15 ], [ 139, 880, 388, 15 ], [ 155, 897, 372, 15 ], [ 124, 446, 89, 17 ], [ 569, 56, 388, 15 ], [ 584, 74, 372, 15 ], [ 584, 92, 372, 15 ], [ 584, 111, 372, 15 ], [ 584, 129, 372, 15 ], [ 569, 148, 388, 15 ], [ 569, 165, 388, 15 ], [ 569, 182, 388, 15 ], [ 584, 199, 372, 15 ], [ 584, 218, 372, 15 ], [ 584, 236, 372, 15 ], [ 584, 255, 372, 15 ], [ 584, 274, 372, 15 ], [ 584, 292, 372, 15 ], [ 584, 311, 372, 15 ], [ 569, 329, 388, 15 ], [ 584, 346, 372, 15 ], [ 584, 365, 372, 15 ], [ 584, 383, 372, 15 ], [ 569, 402, 388, 15 ], [ 584, 419, 372, 15 ], [ 569, 438, 388, 15 ], [ 569, 455, 388, 15 ], [ 584, 472, 372, 15 ], [ 584, 491, 372, 15 ], [ 584, 509, 372, 15 ], [ 569, 528, 388, 15 ], [ 569, 545, 388, 15 ], [ 569, 562, 388, 15 ], [ 569, 579, 388, 15 ], [ 584, 597, 372, 15 ], [ 584, 615, 372, 15 ], [ 584, 634, 372, 15 ], [ 584, 652, 372, 15 ], [ 584, 671, 372, 15 ], [ 584, 689, 372, 15 ], [ 584, 708, 372, 15 ], [ 584, 726, 372, 15 ], [ 553, 745, 403, 15 ], [ 569, 762, 388, 15 ], [ 584, 779, 372, 15 ], [ 584, 798, 372, 15 ], [ 584, 817, 372, 15 ], [ 584, 835, 372, 15 ], [ 584, 854, 372, 15 ], [ 584, 872, 372, 15 ], [ 584, 891, 372, 15 ] ]
[ 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
0be850857c2c3391cec2f173ef871f973ca04504ee4274d0fb311cf2988be145
amt_airframe_hb_vol_2.pdf
16
564
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3354
[ "PART III", "ITEM 10. DIRECTORS, EXECUTIVE OFFICERS AND CORPORATE GOVERNANCE", "Directors and Executive Officers", "Corporate Governance", "ITEM 11. EXECUTIVE COMPENSATION", "The information required by this Item with respect to directors is included under the caption \"Information About the Board of Directors,\" sub-caption", "\"Director Nominees,\" in our definitive proxy statement for the 2020 Annual Meeting of Shareholders and is incorporated herein by reference.", "The information required by this Item with respect to our executive officers is included under the caption \"Information about our Executive Officers\"", "contained herein in Item 1 and is incorporated herein by reference.", "Our internet website address is www.unum.com. We have adopted corporate governance guidelines, a code of conduct applicable to all of our", "directors, officers and employees, and charters for the audit, human capital, governance, risk and finance and regulatory compliance committees of", "our board of directors in accordance with the requirements of the New York Stock Exchange (NYSE). In addition, our board of directors has adopted a", "code of ethics applicable to our chief executive officer and certain senior financial officers in accordance with the requirements of the Securities and", "Exchange Commission. These documents are available free of charge on our website and in print at the request of any shareholder from the Office of", "the Corporate Secretary, Unum Group, 1 Fountain Square, Chattanooga, Tennessee, 37402, or by calling toll-free 1-800-718-8824. We will post on our", "website amendments to or waivers from any provision of our code of conduct and our code of ethics, as required by the rules and regulations of the", "Securities and Exchange Commission and the listing standards of the NYSE.", "The information required by this Item with respect to compliance with Section 16(a) of the Exchange Act is included under the caption \"Ownership of", "Company Securities,\" sub-caption \"Delinquent Section 16(a) Reports,\" in our definitive proxy statement for the 2020 Annual Meeting of Shareholders", "and is incorporated herein by reference.", "The information required by this Item with respect to a code of ethics for our chief executive officer and certain senior financial officers is included", "under the caption \"Board and Committee Governance,\" sub-caption \"Codes of Conduct and Ethics,\" in our definitive proxy statement for the 2020", "Annual Meeting of Shareholders and is incorporated herein by reference.", "The information required by this Item with respect to the audit committee and audit committee financial experts is included under the caption \"Board", "and Committee Governance,\" sub-captions \"Committees of the Board\" , \"Committee Responsibilities\" and \"Audit Committee,\" in our definitive proxy", "statement for the 2020 Annual Meeting of Shareholders and is incorporated herein by reference. In addition, information relating to the procedures", "by which our shareholders may recommend nominees to our board of directors is included under the caption \"Corporate Governance,\" sub-caption", "\"Process for Selecting and Nominating Directors,\" in our definitive proxy statement for the 2020 Annual Meeting of Shareholders and is incorporated", "herein by reference.", "The information required by this Item with respect to executive compensation and compensation committee matters is included under the caption", "\"Information About the Board of Directors,\" sub-caption \"Director Compensation,\" under the caption \"Board and Committee Governance,\" sub-caption", "\"Compensation Committee Interlocks and Insider Participation,\" and under the captions \"Compensation Discussion and Analysis,\" \"Compensation", "Committee Report,\" \"Compensation Tables,\" and \"Post-Employment Compensation\" in our definitive proxy statement for the 2020 Annual Meeting of", "Shareholders and is incorporated herein by reference.", "198" ]
[ [ 483, 58, 57, 10 ], [ 24, 82, 547, 10 ], [ 24, 107, 234, 10 ], [ 24, 203, 163, 10 ], [ 24, 505, 268, 10 ], [ 24, 131, 960, 21 ], [ 24, 131, 960, 21 ], [ 24, 167, 958, 21 ], [ 24, 167, 958, 21 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 227, 973, 89 ], [ 24, 331, 965, 33 ], [ 24, 331, 965, 33 ], [ 24, 331, 965, 33 ], [ 24, 378, 949, 33 ], [ 24, 378, 949, 33 ], [ 24, 378, 949, 33 ], [ 24, 425, 970, 66 ], [ 24, 425, 970, 66 ], [ 24, 425, 970, 66 ], [ 24, 425, 970, 66 ], [ 24, 425, 970, 66 ], [ 24, 425, 970, 66 ], [ 24, 530, 972, 55 ], [ 24, 530, 972, 55 ], [ 24, 530, 972, 55 ], [ 24, 530, 972, 55 ], [ 24, 530, 972, 55 ], [ 499, 630, 24, 10 ] ]
[ [ 483, 58, 57, 10 ], [ 24, 82, 547, 10 ], [ 24, 107, 234, 10 ], [ 24, 203, 163, 10 ], [ 24, 505, 268, 10 ], [ 24, 131, 960, 10 ], [ 24, 143, 913, 10 ], [ 24, 167, 958, 10 ], [ 24, 178, 435, 10 ], [ 24, 227, 922, 10 ], [ 24, 239, 960, 10 ], [ 24, 250, 966, 10 ], [ 24, 261, 961, 10 ], [ 24, 272, 968, 10 ], [ 24, 284, 973, 10 ], [ 24, 295, 959, 10 ], [ 24, 306, 490, 10 ], [ 24, 331, 965, 10 ], [ 24, 342, 965, 10 ], [ 24, 353, 260, 10 ], [ 24, 378, 949, 10 ], [ 24, 389, 945, 10 ], [ 24, 400, 471, 10 ], [ 24, 425, 970, 10 ], [ 24, 436, 961, 10 ], [ 24, 447, 954, 10 ], [ 24, 458, 952, 10 ], [ 24, 469, 962, 10 ], [ 24, 481, 131, 10 ], [ 24, 530, 950, 10 ], [ 24, 541, 972, 10 ], [ 24, 552, 941, 10 ], [ 24, 563, 966, 10 ], [ 24, 575, 350, 10 ], [ 499, 630, 24, 10 ] ]
[ 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
e19ea9b12e30b758c78b42d507576177b1ab55b495b60eacf49104d0d2694eb3
0000005513-20-000027_20200218x10k.pdf
201
221
595
842
1,025
1,025
sec_filings
financial_reports
3355
[ "65 ", "/", "SERVICE EXCELLENCE", "CP estimates net periodic benefit credits for defined benefit pensions to be approximately $224 million in 2020 ($140 million in current service cost and $364", "million in other components of net periodic recovery), and net periodic benefit costs for defined contribution pensions to be approximately $12 million in 2020.", "Net periodic benefit costs for post-retirement benefits in 2020 are not expected to differ materially from the 2019 costs. Total net periodic benefit credits for all", "plans are estimated to be approximately $178 million in 2020 (2019 – $252 million), comprising $165 million (2019 – $129 million) in current service cost and", "$343 million (2019 – $381 million) in other components of net periodic recovery. The expected rate of return on the market-related asset value used to compute", "the net periodic benefit credit was 7.75% in 2018 and 7.50% in 2019. For computing the net periodic benefit credit in 2020, the Company is reducing this rate", "to 7.25% to reflect CP's current view of future long-term investment returns. Net periodic benefit costs and credits are discussed further in Item 8. Financial", "Statements and Supplementary Data, Note 23 Pensions and other benefits.", "The Company made contributions of $53 million to the defined benefit pension plans in 2019, compared with $36 million, which is net of a $10 million refund of", "plan surplus in 2018. The Company’s main Canadian defined benefit pension plan accounts for nearly all of CP’s pension obligation and can produce significant", "volatility in pension funding requirements, given the pension fund’s size, the many factors that drive the pension plan’s funded status and Canadian statutory", "pension", "funding", "requirements.", "The", "Company", "made", "voluntary", "prepayments", "of", "$600", "million", "in", "2011,", "$650", "million", "in", "2010", "and", "$500", "million", "in", "2009", "to", "the", "Company’s", "main", "Canadian", "defined", "benefit", "pension", "plan.", "CP", "has", "applied", "$1,324", "million", "of", "these", "voluntary", "prepayments", "to", "reduce", "its", "pension", "funding", "requirements", "in", "2012–2019,", "leaving", "$426", "million", "of", "the", "voluntary", "prepayments", "still", "available", "at", "December", "31,", "2019", "to", "reduce", "CP’s", "pension", "funding", "requirements in 2020 and future years. CP continues to have significant flexibility with respect to the rate at which the remaining voluntary prepayments are", "applied to reduce future years’ pension contribution requirements, which allows CP to manage the volatility of future pension funding requirements. At this", "time, CP estimates it will not apply any of the remaining voluntary prepayments against its 2020 pension funding requirements.", "CP estimates its aggregate pension contributions, including its defined benefit and defined contribution plans, to be in the range of $65 million to $75 million in", "2020, and in the range of $50 million to $100 million per year from 2021 to 2023. These estimates reflect the Company’s current intentions with respect to the", "rate at which CP will apply the remaining voluntary prepayments against contribution requirements in the next few years.", "Future pension contributions will be highly dependent on the Company’s actual experience with such variables as investment returns, interest rate fluctuations", "and", "demographic", "changes,", "on", "the", "rate", "at", "which", "previous", "years’", "voluntary", "prepayments", "are", "applied", "against", "pension", "contribution", "requirements,", "and", "on", "any", "changes in the regulatory environment. CP will continue to make contributions to the pension plans that, at a minimum, meet pension legislative requirements.", "Fluctuations in the liability and net periodic benefit costs for pensions result from favourable or unfavourable investment returns and changes in long-term", "interest rates. The impact of favourable or unfavourable investment returns is moderated by the use of a market-related asset value for the main Canadian", "defined benefit pension plan’s public equity securities and absolute return strategies. The impact of changes in long-term interest rates on pension obligations", "is partially offset by their impact on the pension funds’ investments in fixed income assets.", "The plans’ investment policy provides a target allocation of approximately 45% of the plans’ assets to be invested in public equity securities. As a result, stock", "market performance is a key driver in determining the pension funds’ asset performance. If the rate of investment return on the plans’ public equity securities", "in 2019 had been 10% higher (or lower) than the actual 2019 rate of investment return on such securities, 2020 net periodic benefit costs for pensions would be", "lower (or higher) by approximately $25 million.", "Changes in bond yields can result in changes to discount rates and to changes in the value of fixed income assets. If the discount rate as at December 31, 2019", "had been higher (or lower) by 0.1% with no related changes in the value of the pension funds’ investment in fixed income assets, 2020 net periodic benefit costs", "for pensions would be lower (or higher) by approximately $13 million and 2020 current service costs for pensions would be lower (or higher) by approximately", "$5 million. However, a change in bond yields would also lead to a change in the value of the pension funds’ investment in fixed income assets, and this change", "would partially offset the impact on net periodic benefit costs noted above.", "The", "Company", "estimates", "that", "an", "increase", "in", "the", "discount", "rate", "of", "0.1%", "would", "decrease", "the", "defined", "benefit", "pension", "plans’", "projected", "benefit", "obligations", "by", "approximately $176 million, and that a decrease in the discount rate of 0.1% would increase the defined benefit pension plans’ projected benefit obligations by", "approximately $178 million. Similarly, for every 0.1% the actual return on assets varies above (or below) the estimated return for the year, the value of the", "defined benefit pension plans’ assets would increase (or decrease) by approximately $13 million.", "Adverse experience with respect to these factors could eventually increase funding and pension expense significantly, while favourable experience with respect", "to these factors could eventually decrease funding and pension expense significantly.", "Fluctuations in the post-retirement benefit obligation also can result from changes in the discount rate used. A 0.1% increase (decrease) in the discount rate", "would decrease (increase) the obligation by approximately $6 million.", "CP", "reviews", "its", "pensioner", "mortality", "experience", "to", "ensure", "that", "the", "mortality", "assumption", "continues", "to", "be", "appropriate,", "or", "to", "determine", "what", "changes", "to", "the", "assumption are needed.", "Pension Plan Risks", "Pension Plan Contributions" ]
[ [ 24, 21, 162, 9 ], [ 24, 21, 162, 9 ], [ 24, 21, 162, 9 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 60, 973, 78 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 161, 973, 88 ], [ 24, 259, 973, 29 ], [ 24, 259, 973, 29 ], [ 24, 259, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 298, 973, 29 ], [ 24, 349, 973, 39 ], [ 24, 349, 973, 39 ], [ 24, 349, 973, 39 ], [ 24, 349, 973, 39 ], [ 24, 399, 973, 39 ], [ 24, 399, 973, 39 ], [ 24, 399, 973, 39 ], [ 24, 399, 973, 39 ], [ 24, 448, 973, 49 ], [ 24, 448, 973, 49 ], [ 24, 448, 973, 49 ], [ 24, 448, 973, 49 ], [ 24, 448, 973, 49 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 507, 973, 39 ], [ 24, 556, 973, 19 ], [ 24, 556, 973, 19 ], [ 24, 585, 973, 19 ], [ 24, 585, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 615, 973, 19 ], [ 24, 338, 158, 12 ], [ 24, 149, 229, 12 ] ]
[ [ 24, 21, 18, 9 ], [ 43, 21, 3, 8 ], [ 50, 21, 135, 8 ], [ 24, 60, 973, 9 ], [ 24, 70, 973, 9 ], [ 24, 80, 973, 9 ], [ 24, 90, 973, 9 ], [ 24, 100, 973, 9 ], [ 24, 109, 973, 9 ], [ 24, 119, 973, 9 ], [ 24, 129, 454, 9 ], [ 24, 161, 973, 9 ], [ 24, 171, 973, 9 ], [ 24, 180, 973, 9 ], [ 24, 190, 46, 9 ], [ 80, 190, 46, 9 ], [ 136, 190, 83, 9 ], [ 230, 190, 15, 9 ], [ 255, 190, 44, 9 ], [ 310, 190, 26, 9 ], [ 346, 190, 59, 9 ], [ 415, 190, 72, 9 ], [ 498, 190, 13, 9 ], [ 521, 190, 18, 9 ], [ 549, 190, 46, 9 ], [ 605, 190, 13, 9 ], [ 628, 190, 18, 9 ], [ 657, 190, 19, 9 ], [ 686, 190, 46, 9 ], [ 742, 190, 13, 9 ], [ 765, 190, 16, 9 ], [ 792, 190, 19, 9 ], [ 821, 190, 18, 9 ], [ 850, 190, 46, 9 ], [ 906, 190, 13, 9 ], [ 929, 190, 16, 9 ], [ 955, 190, 13, 9 ], [ 978, 190, 19, 9 ], [ 24, 200, 56, 9 ], [ 91, 200, 25, 9 ], [ 126, 200, 50, 9 ], [ 186, 200, 45, 9 ], [ 242, 200, 45, 9 ], [ 297, 200, 45, 9 ], [ 352, 200, 30, 9 ], [ 392, 200, 10, 9 ], [ 412, 200, 19, 9 ], [ 441, 200, 45, 9 ], [ 497, 200, 21, 9 ], [ 528, 200, 45, 9 ], [ 583, 200, 12, 9 ], [ 606, 200, 32, 9 ], [ 648, 200, 58, 9 ], [ 716, 200, 71, 9 ], [ 797, 200, 12, 9 ], [ 820, 200, 38, 9 ], [ 868, 200, 19, 9 ], [ 898, 200, 45, 9 ], [ 953, 200, 45, 9 ], [ 24, 210, 80, 9 ], [ 115, 210, 13, 9 ], [ 138, 210, 42, 9 ], [ 191, 210, 47, 9 ], [ 248, 210, 16, 9 ], [ 274, 210, 47, 9 ], [ 331, 210, 13, 9 ], [ 354, 210, 20, 9 ], [ 384, 210, 60, 9 ], [ 455, 210, 73, 9 ], [ 539, 210, 33, 9 ], [ 582, 210, 60, 9 ], [ 653, 210, 13, 9 ], [ 676, 210, 52, 9 ], [ 739, 210, 10, 9 ], [ 760, 210, 16, 9 ], [ 786, 210, 13, 9 ], [ 809, 210, 40, 9 ], [ 860, 210, 24, 9 ], [ 894, 210, 47, 9 ], [ 951, 210, 47, 9 ], [ 24, 220, 973, 9 ], [ 24, 229, 973, 9 ], [ 24, 239, 774, 9 ], [ 24, 259, 973, 9 ], [ 24, 269, 973, 9 ], [ 24, 279, 740, 9 ], [ 24, 298, 973, 9 ], [ 24, 308, 18, 9 ], [ 52, 308, 68, 9 ], [ 129, 308, 45, 9 ], [ 184, 308, 12, 9 ], [ 205, 308, 18, 9 ], [ 233, 308, 24, 9 ], [ 267, 308, 12, 9 ], [ 289, 308, 30, 9 ], [ 329, 308, 49, 9 ], [ 388, 308, 37, 9 ], [ 434, 308, 55, 9 ], [ 499, 308, 68, 9 ], [ 576, 308, 18, 9 ], [ 604, 308, 43, 9 ], [ 656, 308, 43, 9 ], [ 709, 308, 43, 9 ], [ 761, 308, 74, 9 ], [ 845, 308, 76, 9 ], [ 930, 308, 18, 9 ], [ 958, 308, 12, 9 ], [ 980, 308, 18, 9 ], [ 24, 318, 966, 9 ], [ 24, 349, 973, 9 ], [ 24, 359, 973, 9 ], [ 24, 369, 973, 9 ], [ 24, 379, 549, 9 ], [ 24, 399, 973, 9 ], [ 24, 408, 973, 9 ], [ 24, 418, 973, 9 ], [ 24, 428, 286, 9 ], [ 24, 448, 973, 9 ], [ 24, 457, 973, 9 ], [ 24, 467, 973, 9 ], [ 24, 477, 973, 9 ], [ 24, 487, 453, 9 ], [ 24, 507, 14, 9 ], [ 48, 507, 41, 9 ], [ 98, 507, 55, 9 ], [ 163, 507, 24, 9 ], [ 197, 507, 12, 9 ], [ 218, 507, 49, 9 ], [ 276, 507, 12, 9 ], [ 298, 507, 18, 9 ], [ 325, 507, 49, 9 ], [ 384, 507, 24, 9 ], [ 418, 507, 12, 9 ], [ 439, 507, 15, 9 ], [ 464, 507, 30, 9 ], [ 504, 507, 49, 9 ], [ 562, 507, 18, 9 ], [ 590, 507, 43, 9 ], [ 642, 507, 43, 9 ], [ 694, 507, 43, 9 ], [ 746, 507, 36, 9 ], [ 792, 507, 55, 9 ], [ 857, 507, 43, 9 ], [ 909, 507, 67, 9 ], [ 986, 507, 12, 9 ], [ 24, 516, 973, 9 ], [ 24, 526, 973, 9 ], [ 24, 536, 585, 9 ], [ 24, 556, 973, 9 ], [ 24, 565, 516, 9 ], [ 24, 585, 973, 9 ], [ 24, 595, 422, 9 ], [ 24, 615, 9, 9 ], [ 43, 615, 42, 9 ], [ 95, 615, 18, 9 ], [ 122, 615, 54, 9 ], [ 186, 615, 54, 9 ], [ 250, 615, 60, 9 ], [ 320, 615, 12, 9 ], [ 342, 615, 36, 9 ], [ 387, 615, 24, 9 ], [ 421, 615, 18, 9 ], [ 448, 615, 54, 9 ], [ 512, 615, 60, 9 ], [ 582, 615, 54, 9 ], [ 646, 615, 12, 9 ], [ 667, 615, 12, 9 ], [ 689, 615, 68, 9 ], [ 767, 615, 12, 9 ], [ 788, 615, 12, 9 ], [ 809, 615, 54, 9 ], [ 873, 615, 24, 9 ], [ 907, 615, 42, 9 ], [ 959, 615, 12, 9 ], [ 980, 615, 18, 9 ], [ 24, 624, 144, 9 ], [ 24, 338, 158, 12 ], [ 24, 149, 229, 12 ] ]
[ 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7 ]
c501893acb747330fec32b9f182d31f22db151f28c7c7cb9e84bec129de64f68
0000016875-20-000007_20200220x10k.pdf
66
139
595
842
1,025
1,025
sec_filings
financial_reports
3356
[ "As ", "we ", "grow", "in ", "the ", "art", "of", "comrluter", "programming, ", "we ", "construct ", "programs", "in", "a", "sequence", "of ", "refinemoll", "steps. ", "At", "each", "step", "we", "break", "our ", "task", "into", "a", "number", "of", "subtasks,", "thneby", "defining", "a", "number", "of", "partial ", "programs.", "To", "camouflage", "this", "struCI", "ure", "is", "undesirable.", "The", "concepts", "of ", "the ", "procedure", "andfunction ", "allow", "you", "to", "display", "the", "subtasks", "as", "explicit ", "subprograms. ", "Figure", "l1.b ", "Syntax", "diagram", "for ", "ProcedureOrFunctionHeading ", "10~ ", "CHAPTER", "11 ", "Procedures", "and", "Functions ", "~~~ ", "ProcedureOrFunctionHeading ", "Figure", "l1.a ", "Syl ", "lax ", "diagram", "for ", "ProcedureAndFuncl1", "iIIDe('/aralionPart ", "~I ", "Procedurt ", "... ", ",j~ ", "l~. ", "-------~ ", ".. ", "I ", "Functionl ", "~I--", "----------' " ]
[ [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 139, 328, 742, 130 ], [ 162, 853, 695, 21 ], [ 162, 853, 695, 21 ], [ 162, 853, 695, 21 ], [ 162, 853, 695, 21 ], [ 162, 853, 695, 21 ], [ 162, 853, 695, 21 ], [ 499, 918, 17, 9 ], [ 140, 84, 174, 21 ], [ 140, 84, 174, 21 ], [ 140, 141, 444, 30 ], [ 140, 141, 444, 30 ], [ 140, 141, 444, 30 ], [ 130, 532, 760, 131 ], [ 130, 532, 760, 131 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 297, 671, 425, 43 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ], [ 128, 780, 760, 59 ] ]
[ [ 139, 328, 29, 19 ], [ 183, 328, 30, 19 ], [ 228, 328, 30, 19 ], [ 288, 328, 26, 19 ], [ 332, 328, 30, 19 ], [ 378, 328, 19, 19 ], [ 435, 328, 15, 19 ], [ 487, 328, 72, 19 ], [ 597, 328, 124, 19 ], [ 736, 328, 26, 19 ], [ 780, 328, 97, 19 ], [ 140, 350, 57, 19 ], [ 227, 350, 11, 19 ], [ 269, 350, 6, 19 ], [ 306, 350, 55, 19 ], [ 392, 350, 27, 19 ], [ 421, 350, 78, 19 ], [ 537, 350, 61, 19 ], [ 605, 350, 13, 19 ], [ 646, 350, 24, 19 ], [ 698, 350, 21, 19 ], [ 747, 350, 15, 19 ], [ 790, 350, 30, 19 ], [ 848, 350, 31, 19 ], [ 140, 373, 25, 19 ], [ 196, 373, 24, 19 ], [ 252, 373, 6, 19 ], [ 290, 373, 47, 19 ], [ 369, 373, 13, 19 ], [ 414, 373, 57, 19 ], [ 502, 373, 42, 19 ], [ 576, 373, 52, 19 ], [ 660, 373, 6, 19 ], [ 698, 373, 47, 19 ], [ 777, 373, 13, 19 ], [ 822, 373, 55, 19 ], [ 139, 395, 63, 19 ], [ 233, 395, 17, 19 ], [ 282, 395, 73, 19 ], [ 386, 395, 22, 19 ], [ 440, 395, 39, 19 ], [ 511, 395, 19, 19 ], [ 562, 395, 10, 19 ], [ 604, 395, 76, 19 ], [ 711, 395, 24, 19 ], [ 767, 395, 54, 19 ], [ 853, 395, 28, 19 ], [ 140, 418, 31, 19 ], [ 175, 417, 84, 19 ], [ 301, 417, 118, 19 ], [ 424, 418, 32, 19 ], [ 487, 418, 22, 19 ], [ 538, 418, 11, 19 ], [ 579, 418, 42, 19 ], [ 651, 418, 17, 19 ], [ 698, 418, 49, 19 ], [ 778, 418, 12, 19 ], [ 819, 418, 58, 19 ], [ 140, 440, 143, 19 ], [ 162, 853, 49, 21 ], [ 246, 853, 45, 21 ], [ 318, 855, 45, 19 ], [ 397, 855, 54, 19 ], [ 484, 855, 35, 19 ], [ 531, 855, 326, 19 ], [ 499, 918, 17, 9 ], [ 140, 84, 94, 21 ], [ 274, 84, 41, 21 ], [ 140, 141, 136, 30 ], [ 334, 141, 45, 30 ], [ 436, 141, 148, 30 ], [ 131, 546, 51, 7 ], [ 221, 540, 234, 14 ], [ 330, 671, 48, 21 ], [ 413, 671, 43, 21 ], [ 484, 673, 30, 19 ], [ 526, 675, 31, 16 ], [ 564, 673, 54, 19 ], [ 653, 673, 36, 19 ], [ 297, 696, 190, 19 ], [ 531, 696, 190, 19 ], [ 417, 787, 8, 18 ], [ 445, 790, 72, 14 ], [ 524, 790, 1, 14 ], [ 525, 787, 32, 18 ], [ 211, 817, 10, 18 ], [ 234, 817, 80, 18 ], [ 424, 809, 8, 27 ], [ 437, 806, 11, 31 ], [ 447, 820, 73, 14 ], [ 527, 817, 29, 18 ], [ 603, 820, 213, 14 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 0, 0, 0, 4, 7, 7, 7, 7, 7, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6 ]
0ed69944733d677340d7670f3959cff54fcd32e5f6f826d3d81c18eab3e177f6
Pascal - Manual & Report.pdf
118
283
439
666
1,025
1,025
manuals
manuals
3357
[ "8", "GLYPH<s48> GLYPH<s46>GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s53>", "GLYPH<s49> GLYPH<s46>GLYPH<s48>", "GLYPH<s49> GLYPH<s46>GLYPH<s53>", "GLYPH<s50> GLYPH<s46>GLYPH<s48>", "GLYPH<s50> GLYPH<s46>GLYPH<s53>", "GLYPH<s51> GLYPH<s46>GLYPH<s48>", "GLYPH<s51> GLYPH<s46>GLYPH<s53>", "GLYPH<s52> GLYPH<s46>GLYPH<s48>", "GLYPH<s52> GLYPH<s46>GLYPH<s53>", "GLYPH<s53> GLYPH<s46>GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s48> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s48> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s49> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s49> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s50> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s50> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s51> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s51> GLYPH<s53>", "GLYPH<s32>GLYPH<s80>GLYPH<s76> GLYPH<s83>GLYPH<s77>", "GLYPH<s32>GLYPH<s76> GLYPH<s83>GLYPH<s77>", "GLYPH<s32>GLYPH<s78>", "GLYPH<s61>GLYPH<s54>", "GLYPH<s32>", "GLYPH<s32>", "GLYPH<s119> GLYPH<s61>GLYPH<s112> GLYPH<s47>", "GLYPH<s84> GLYPH<s47>GLYPH<s84>", "GLYPH<s99>", "GLYPH<s61>GLYPH<s48> GLYPH<s32>GLYPH<s77>", "GLYPH<s101> GLYPH<s86>", "GLYPH<s48> GLYPH<s46>GLYPH<s54>", "GLYPH<s48> GLYPH<s46>GLYPH<s56>", "GLYPH<s49> GLYPH<s46>GLYPH<s48>", "GLYPH<s49> GLYPH<s46>GLYPH<s50>", "GLYPH<s49> GLYPH<s46>GLYPH<s52>", "GLYPH<s49> GLYPH<s46>GLYPH<s54>", "GLYPH<s49> GLYPH<s46>GLYPH<s56>", "GLYPH<s50> GLYPH<s46>GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s48> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s48> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s49> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s49> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s50> GLYPH<s48>", "GLYPH<s48> GLYPH<s46>GLYPH<s50> GLYPH<s53>", "GLYPH<s48> GLYPH<s46>GLYPH<s51> GLYPH<s48>", "GLYPH<s32>GLYPH<s80>GLYPH<s76> GLYPH<s83>GLYPH<s77>", "GLYPH<s32>GLYPH<s76> GLYPH<s83>GLYPH<s77>", "GLYPH<s32>", "GLYPH<s61>GLYPH<s49> GLYPH<s32>GLYPH<s71>GLYPH<s101> GLYPH<s86>", "GLYPH<s32>", "GLYPH<s32>", "GLYPH<s47>GLYPH<s115>", "GLYPH<s84> GLYPH<s47>GLYPH<s84>", "GLYPH<s99>", "GLYPH<s61>GLYPH<s48> GLYPH<s32>GLYPH<s77>", "GLYPH<s101> GLYPH<s86>", "FIG. 13: The bulk viscosity over entropy density ratio", "ζ/s", "as a function of the temperature for", "µ", "= 0 MeV. The solid", "line denotes the Polyakov linear sigma model prediction and", "the dashed line denotes the linear sigma model prediction.", "Lattice data taken from Ref.[30].", "The figure is taken from", "Ref.[53].", "FIG. 12: The equation-of-state parameter", "w", "(", "T", ") =", "p", "(", "T", ")", "/ε", "(", "T", ")", "for", "µ", "= 0 MeV. The Polyakov linear sigma model prediction", "(solid line) and the linear sigma model prediction (dash line)", "are compared with", "N$_{f}$", "= 2 + 1 lattice QCD data for", "N", "τ", "= 6.", "Lattice data taken from Ref.[38].", "The figure is taken from", "Ref.[53].", "The set of equations can be solved for the fields as func-", "tions of temperature", "T", "and chemical potential", "µ", ", and", "the solutions of these coupled equations determine the", "behavior of the chiral order parameter", "σ$_{x}$", ",", "σ$_{y}$", "and the", "Polyakov loop expectation values", "φ", ",", "φ", "∗", "as a function of", "T", "and", "µ", ".", "Minimizing the thermodynamical potential in Eq.(31)", "with respective to", "σ$_{x}$", ",", "σ$_{y}$", ",", "φ", "and", "φ", "$^{∗}$, we obtain a set of", "equations of motion", "Here,", "N$_{q}$", "= 2,", "N$_{s}$", "= 1, and", "E$_{q}$", "=", "√", "⃗", "p", "2", "+", "m", "2", "q", "is the va-", "lence quark and antiquark energy for", "u", "and", "d", "quarks, for", "strange quark", "s", ", it is", "E$_{s}$", "=", "√", "⃗", "p", "2", "+", "m", "2", "$_{s}$, and", "m$_{q}$", ",", "m$_{s}$", "is", "the constituent quark mass for", "u", ",", "d", "and", "s", ". The purely", "mesonic potential is", "Fig.12 shows the pressure density over energy density", "p/ε", ", which is represented in terms of equation-of-state", "(EOS) parameter, at zero density and finite density, re-", "spectively. We observe that the pressure density over en-", "ergy density increases with temperature and saturates at", "high temperature. Both the linear sigma model and the", "Polyakov linear sigma model give very similar results at", "high temperature, the pressure density over energy den-", "sity", "p/ε", "saturates at a value smaller than 1", "/", "3.", "Another", "common feature of the", "p/ε", "in the linear sigma model", "and the Polyakov linear sigma model is that there is a", "bump appearing at low temperature region, which is also", "observed in the lattice result. Around the critical tem-", "perature", "T$_{c}$", ", the pressure density over energy density", "p/ε", "shows a downward cusp. However, the minimum value", "of the", "p/ε", "around", "T$_{c}$", "is 0", ".", "2", "in the linear sigma model,", "which is much larger than the result from the Polyakov", "linear sigma model and the lattice QCD data. For the", "Polyakov linear sigma model, the minimum of", "p/ε", "around", "T$_{c}$", "is 0", ".", "075, which is consistent with the lattice QCD data", "[38].", "In Ref. [34], we have investigated the equation of state", "and bulk viscosity in the real scalar model and", "O", "(4)", "model in the case of 2nd order phase transition, crossover", "and 1st order phase transition, and we have found that", "the thermodynamic properties and transport properties", "in these simple models near the critical temperature", "T$_{c}$", "at", "strong coupling are similar to those of the complex QCD", "system. In a more realistic QCD effective model, i.e, the", "Polyakov linear sigma model [53], we have systematically", "investigated the thermodynamic properties and bulk vis-", "cosity and found these properties match with lattice data", "very well in the case of zero chemical potential. We fur-", "ther evaluate the chiral phase transitions of", "u, d", "and", "s", "quarks and deconfinement phase transition at finite tem-", "perature and finite density, and show the", "T", "−", "µ", "phase", "structure of the Polyakov linear sigma model in Fig.14.", "In Fig.13, we plot the bulk viscosity over entropy den-", "sity ratio", "ζ/s", "as a function of the temperature for zero", "chemical potential. It is shown that, at zero chemical po-", "tential", "µ", "= 0, the bulk viscosity over entropy density", "ζ/s", "decreases monotonically with the increase of the temper-", "ature in both the Polyakov linear sigma model and lin-", "ear sigma model, and at high temperature,", "ζ/s", "reaches", "its conformal value 0.", "In [30], the bulk viscosity over", "entropy density of the three flavor system is extracted", "from lattice result, which is shown by the square. It is", "observed that", "ζ/s", "in PLSM near phase transition is in", "very good agreement with the lattice result in [30], i.e, it", "rises sharply near phase transition.", "U", "(", "σ$_{x}$, σ$_{y}$", ") =", "m", "2", "2", "(", "σ", "2", "x", "+", "σ", "2", "$_{y}$)", "−", "h$_{x}$σ$_{x}$", "−", "h$_{y}$σ$_{y}$", "−", "c", "$_{2}$√$_{2}$", "σ", "2", "$_{x}$σ$_{y}$", "+", "λ$_{1}$", "2", "σ", "2", "$_{x}$σ", "2", "y", "+", "1", "8", "(2", "λ$_{1}$", "+", "λ$_{2}$", ")", "σ", "4", "x", "+", "1", "4", "(", "λ$_{1}$", "+", "λ$_{2}$", ")", "σ", "4", "$_{y}$.", "(33)", "∂", "Ω", "∂σ$_{x}$", "= 0", ",", "∂", "Ω", "∂σ$_{y}$", "= 0", ",", "∂", "Ω", "∂φ", "= 0", ",", "∂", "Ω", "∂φ", "∗", "= 0", ".", "(34)" ]
[ [ 933, 37, 8, 12 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 570, 63, 339, 194 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 572, 371, 341, 196 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 586, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 530, 276, 410, 79 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 345, 410, 87 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 252, 410, 42 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 67, 410, 81 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 90, 434, 411, 309 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 530, 701, 411, 235 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 90, 746, 410, 190 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 91, 158, 409, 81 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ], [ 102, 304, 398, 30 ] ]
[ [ 933, 37, 8, 12 ], [ 612, 239, 2, 2 ], [ 629, 239, 2, 2 ], [ 646, 239, 2, 2 ], [ 662, 239, 2, 2 ], [ 679, 239, 2, 2 ], [ 696, 239, 2, 2 ], [ 712, 239, 2, 2 ], [ 729, 239, 2, 2 ], [ 746, 239, 2, 2 ], [ 763, 239, 2, 2 ], [ 779, 239, 2, 2 ], [ 596, 232, 3, 2 ], [ 596, 209, 3, 2 ], [ 596, 187, 3, 2 ], [ 596, 164, 3, 2 ], [ 596, 142, 3, 2 ], [ 596, 120, 3, 2 ], [ 596, 97, 3, 2 ], [ 596, 75, 3, 2 ], [ 799, 169, 5, 2 ], [ 799, 178, 4, 2 ], [ 799, 187, 1, 2 ], [ 811, 187, 2, 2 ], [ 905, 158, 2, 0 ], [ 754, 65, 0, 2 ], [ 578, 160, 2, 3 ], [ 747, 251, 2, 2 ], [ 761, 255, 0, 1 ], [ 783, 139, 4, 2 ], [ 788, 139, 2, 2 ], [ 631, 549, 2, 2 ], [ 667, 549, 2, 2 ], [ 704, 549, 2, 2 ], [ 740, 549, 2, 2 ], [ 777, 549, 2, 2 ], [ 813, 549, 2, 2 ], [ 850, 549, 2, 2 ], [ 886, 549, 2, 2 ], [ 596, 542, 3, 2 ], [ 596, 515, 3, 2 ], [ 596, 489, 3, 2 ], [ 596, 463, 3, 2 ], [ 596, 437, 3, 2 ], [ 596, 411, 3, 2 ], [ 596, 384, 3, 2 ], [ 802, 480, 5, 2 ], [ 802, 489, 4, 2 ], [ 802, 499, 0, 2 ], [ 813, 499, 6, 2 ], [ 906, 468, 2, 0 ], [ 755, 374, 0, 2 ], [ 578, 464, 2, 1 ], [ 748, 561, 2, 2 ], [ 762, 565, 0, 1 ], [ 772, 443, 4, 2 ], [ 777, 443, 2, 2 ], [ 530, 586, 380, 11 ], [ 918, 586, 22, 11 ], [ 530, 600, 249, 11 ], [ 786, 600, 9, 11 ], [ 802, 600, 138, 11 ], [ 530, 613, 410, 11 ], [ 530, 627, 410, 11 ], [ 530, 640, 228, 11 ], [ 771, 640, 170, 11 ], [ 530, 654, 55, 11 ], [ 530, 276, 281, 11 ], [ 817, 276, 11, 11 ], [ 828, 276, 5, 11 ], [ 834, 276, 8, 11 ], [ 845, 276, 22, 11 ], [ 872, 276, 7, 11 ], [ 880, 276, 5, 11 ], [ 886, 276, 8, 11 ], [ 897, 276, 5, 11 ], [ 903, 276, 14, 11 ], [ 918, 276, 5, 11 ], [ 924, 276, 8, 11 ], [ 935, 276, 5, 11 ], [ 530, 289, 18, 11 ], [ 554, 289, 9, 11 ], [ 569, 289, 372, 11 ], [ 530, 303, 410, 11 ], [ 530, 316, 125, 11 ], [ 662, 316, 18, 11 ], [ 686, 316, 196, 11 ], [ 888, 316, 12, 11 ], [ 900, 321, 5, 7 ], [ 913, 316, 28, 11 ], [ 530, 330, 228, 11 ], [ 771, 330, 170, 11 ], [ 530, 343, 55, 11 ], [ 90, 345, 410, 12 ], [ 90, 360, 154, 12 ], [ 252, 360, 9, 12 ], [ 272, 360, 170, 12 ], [ 450, 360, 10, 12 ], [ 460, 360, 40, 12 ], [ 90, 375, 410, 12 ], [ 90, 390, 289, 12 ], [ 387, 390, 17, 12 ], [ 405, 390, 4, 12 ], [ 418, 390, 16, 12 ], [ 443, 390, 57, 12 ], [ 90, 405, 243, 12 ], [ 340, 405, 9, 12 ], [ 350, 405, 4, 12 ], [ 361, 405, 9, 12 ], [ 371, 403, 6, 8 ], [ 385, 405, 115, 12 ], [ 90, 420, 9, 12 ], [ 108, 420, 26, 12 ], [ 140, 420, 10, 12 ], [ 150, 420, 4, 12 ], [ 90, 252, 410, 12 ], [ 90, 267, 132, 12 ], [ 229, 267, 17, 12 ], [ 247, 267, 4, 12 ], [ 258, 267, 16, 12 ], [ 276, 267, 4, 12 ], [ 287, 267, 9, 12 ], [ 304, 267, 26, 12 ], [ 337, 267, 9, 12 ], [ 347, 267, 153, 12 ], [ 90, 281, 144, 12 ], [ 90, 72, 38, 12 ], [ 136, 72, 19, 12 ], [ 163, 72, 32, 12 ], [ 202, 72, 19, 12 ], [ 230, 72, 66, 12 ], [ 303, 72, 18, 12 ], [ 329, 72, 12, 12 ], [ 349, 67, 16, 38 ], [ 366, 72, 8, 12 ], [ 365, 72, 8, 12 ], [ 374, 71, 6, 9 ], [ 385, 72, 12, 12 ], [ 402, 72, 14, 12 ], [ 417, 71, 6, 9 ], [ 417, 78, 6, 9 ], [ 431, 72, 69, 12 ], [ 90, 91, 267, 12 ], [ 362, 91, 9, 12 ], [ 377, 91, 26, 12 ], [ 409, 91, 8, 12 ], [ 422, 91, 78, 12 ], [ 90, 106, 102, 12 ], [ 199, 106, 7, 12 ], [ 207, 106, 41, 12 ], [ 257, 106, 18, 12 ], [ 283, 106, 12, 12 ], [ 304, 104, 16, 38 ], [ 321, 106, 8, 12 ], [ 321, 106, 8, 12 ], [ 329, 105, 6, 9 ], [ 340, 106, 12, 12 ], [ 357, 106, 14, 12 ], [ 372, 105, 6, 9 ], [ 372, 106, 46, 12 ], [ 426, 106, 20, 12 ], [ 448, 106, 4, 12 ], [ 460, 106, 20, 12 ], [ 489, 106, 11, 12 ], [ 90, 121, 228, 12 ], [ 325, 121, 9, 12 ], [ 335, 121, 4, 12 ], [ 346, 121, 8, 12 ], [ 362, 121, 26, 12 ], [ 396, 121, 7, 12 ], [ 403, 121, 97, 12 ], [ 90, 136, 144, 12 ], [ 107, 434, 393, 12 ], [ 90, 449, 24, 12 ], [ 115, 449, 386, 12 ], [ 90, 464, 410, 12 ], [ 90, 479, 410, 12 ], [ 90, 494, 410, 12 ], [ 90, 509, 410, 12 ], [ 90, 523, 410, 12 ], [ 90, 538, 410, 12 ], [ 90, 553, 26, 12 ], [ 122, 553, 24, 12 ], [ 153, 553, 257, 12 ], [ 410, 553, 8, 12 ], [ 419, 553, 11, 12 ], [ 446, 553, 54, 12 ], [ 90, 568, 172, 12 ], [ 271, 568, 24, 12 ], [ 304, 568, 196, 12 ], [ 90, 583, 410, 12 ], [ 90, 598, 410, 12 ], [ 90, 612, 410, 12 ], [ 90, 627, 61, 12 ], [ 156, 627, 15, 12 ], [ 173, 627, 298, 12 ], [ 476, 627, 24, 12 ], [ 90, 642, 410, 12 ], [ 90, 657, 43, 12 ], [ 141, 657, 24, 12 ], [ 173, 657, 51, 12 ], [ 231, 657, 15, 12 ], [ 255, 657, 27, 12 ], [ 282, 657, 4, 12 ], [ 287, 657, 6, 12 ], [ 308, 657, 192, 12 ], [ 90, 672, 411, 12 ], [ 90, 686, 410, 12 ], [ 90, 701, 327, 12 ], [ 421, 701, 24, 12 ], [ 449, 701, 51, 12 ], [ 90, 716, 15, 12 ], [ 111, 716, 23, 12 ], [ 135, 716, 4, 12 ], [ 139, 716, 361, 12 ], [ 90, 731, 30, 12 ], [ 547, 701, 393, 12 ], [ 530, 716, 367, 12 ], [ 906, 716, 12, 12 ], [ 919, 716, 21, 12 ], [ 530, 731, 411, 12 ], [ 530, 746, 410, 12 ], [ 530, 761, 410, 12 ], [ 530, 775, 370, 12 ], [ 906, 775, 15, 12 ], [ 926, 775, 14, 12 ], [ 530, 790, 410, 12 ], [ 530, 805, 410, 12 ], [ 530, 820, 410, 12 ], [ 530, 835, 410, 12 ], [ 530, 850, 410, 12 ], [ 530, 864, 410, 12 ], [ 530, 879, 328, 12 ], [ 866, 879, 25, 12 ], [ 899, 879, 26, 12 ], [ 933, 879, 7, 12 ], [ 530, 894, 410, 12 ], [ 530, 909, 310, 12 ], [ 848, 909, 9, 12 ], [ 865, 909, 12, 22 ], [ 883, 909, 10, 12 ], [ 900, 909, 40, 12 ], [ 530, 924, 402, 12 ], [ 107, 746, 393, 12 ], [ 90, 761, 67, 12 ], [ 164, 761, 24, 12 ], [ 195, 761, 305, 12 ], [ 90, 775, 410, 12 ], [ 90, 790, 46, 12 ], [ 142, 790, 10, 12 ], [ 156, 790, 314, 12 ], [ 476, 790, 24, 12 ], [ 90, 805, 410, 12 ], [ 90, 820, 410, 12 ], [ 90, 835, 319, 12 ], [ 417, 835, 24, 12 ], [ 448, 835, 52, 12 ], [ 90, 850, 163, 12 ], [ 268, 850, 233, 12 ], [ 90, 864, 410, 12 ], [ 90, 879, 410, 12 ], [ 90, 894, 100, 12 ], [ 198, 894, 24, 12 ], [ 230, 894, 270, 12 ], [ 90, 909, 410, 12 ], [ 90, 924, 255, 12 ], [ 91, 169, 11, 12 ], [ 104, 169, 6, 12 ], [ 111, 169, 41, 12 ], [ 153, 169, 29, 12 ], [ 195, 160, 14, 12 ], [ 210, 158, 6, 9 ], [ 202, 177, 8, 12 ], [ 219, 169, 6, 12 ], [ 226, 169, 9, 12 ], [ 236, 166, 6, 9 ], [ 235, 175, 7, 9 ], [ 247, 169, 12, 12 ], [ 264, 169, 9, 12 ], [ 274, 166, 6, 9 ], [ 273, 169, 14, 12 ], [ 292, 168, 12, 22 ], [ 308, 169, 35, 12 ], [ 348, 168, 12, 22 ], [ 365, 169, 33, 12 ], [ 404, 168, 12, 22 ], [ 434, 160, 7, 12 ], [ 422, 168, 30, 22 ], [ 455, 169, 9, 12 ], [ 465, 166, 6, 9 ], [ 464, 169, 24, 12 ], [ 170, 203, 12, 12 ], [ 195, 195, 16, 12 ], [ 199, 212, 8, 12 ], [ 214, 203, 9, 12 ], [ 224, 201, 6, 9 ], [ 224, 203, 18, 12 ], [ 242, 201, 6, 9 ], [ 242, 210, 6, 9 ], [ 254, 203, 12, 12 ], [ 272, 195, 8, 12 ], [ 272, 212, 8, 12 ], [ 282, 203, 14, 12 ], [ 297, 203, 16, 12 ], [ 318, 203, 12, 12 ], [ 335, 203, 16, 12 ], [ 352, 203, 6, 12 ], [ 359, 203, 9, 12 ], [ 369, 201, 6, 9 ], [ 368, 210, 7, 9 ], [ 380, 203, 12, 12 ], [ 399, 195, 8, 12 ], [ 399, 212, 8, 12 ], [ 409, 203, 6, 12 ], [ 416, 203, 16, 12 ], [ 437, 203, 12, 12 ], [ 454, 203, 16, 12 ], [ 471, 203, 6, 12 ], [ 477, 203, 9, 12 ], [ 487, 201, 6, 9 ], [ 486, 203, 12, 12 ], [ 471, 227, 29, 12 ], [ 105, 304, 8, 12 ], [ 115, 304, 12, 12 ], [ 102, 322, 26, 12 ], [ 137, 313, 25, 12 ], [ 163, 313, 4, 12 ], [ 208, 304, 8, 12 ], [ 218, 304, 12, 12 ], [ 206, 322, 26, 12 ], [ 239, 313, 25, 12 ], [ 265, 313, 4, 12 ], [ 308, 304, 8, 12 ], [ 318, 304, 12, 12 ], [ 309, 322, 19, 12 ], [ 337, 313, 26, 12 ], [ 363, 313, 4, 12 ], [ 408, 304, 8, 12 ], [ 418, 304, 12, 12 ], [ 405, 322, 19, 12 ], [ 425, 321, 6, 8 ], [ 439, 313, 25, 12 ], [ 465, 313, 4, 12 ], [ 471, 313, 29, 12 ] ]
[ 5, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2 ]
b79dce9197690d6da830f0bd8c35718ff9c05eb5ce11be1f0caf41ef39c47936
1001.3216.pdf
7
24
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3358
[ "32", "от 8 февраля 2021г. № 84 (зарегистрирован Министерством юстиции", "Российской Федерации 12 марта 2021 г., регистрационный № 62736):", "1) в пункте 3.2:", "а) строку", "заменить строкой", "»", "б) дополнить новыми строками следующего содержания:", "»;", "УК-8.", "Способен", "создавать", "и", "поддерживать", "в", "повседневной жизни", "и", "в", "профессиональной", "деятельности", "безопасные условия жизнедеятельности", "для", "сохранения", "природной", "среды,", "обеспечения", "устойчивого", "развития", "общества,", "в", "том", "числе", "при", "угрозе", "и возникновении чрезвычайных ситуаций", "и военных конфликтов", "Безопасность", "жизнедеятельности", "УК-8.", "Способен", "создавать", "и", "Безопасность", "поддерживать", "безопасные", "условия", "жизнедеятельности", "жизнедеятельности,", "в том числе при", "возникновении чрезвычайных ситуаций", "«", "«", "«", "»;", "строку", "2) в пункте 3.3:", "Экономическая", "культура, в том числе", "финансовая", "УК-9. Способен принимать обоснованные", "экономические", "решения", "в", "различных", "областях жизнедеятельности", "грамотность", "УК-10.", "Способен", "формировать", "Гражданская позиция | нетерпимое отношение к коррупционному", "поведению", "« | Работа с информацией | ОПК-3.", "Способен", "планировать", "собственную", "научно-исследовательскую", "работу,", "отбирать,", "анализировать", "и", "систематизировать", "информацию,", "необходимую для ее осуществления, в том", "числе", "с", "помощью", "информационно-", "коммуникационных технологий" ]
[ [ 524, 35, 20, 10 ], [ 145, 70, 776, 44 ], [ 145, 70, 776, 44 ], [ 197, 125, 152, 15 ], [ 195, 153, 92, 15 ], [ 196, 286, 179, 15 ], [ 908, 241, 10, 16 ], [ 199, 539, 586, 15 ], [ 908, 501, 16, 9 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 166, 318, 726, 198 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 163, 170, 728, 94 ], [ 147, 185, 9, 6 ], [ 149, 332, 9, 6 ], [ 151, 584, 10, 6 ], [ 908, 710, 16, 10 ], [ 201, 783, 67, 11 ], [ 200, 750, 153, 15 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 169, 574, 725, 153 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ], [ 149, 804, 746, 140 ] ]
[ [ 524, 35, 20, 10 ], [ 146, 70, 776, 17 ], [ 145, 95, 711, 18 ], [ 197, 125, 152, 15 ], [ 195, 153, 92, 15 ], [ 196, 286, 179, 15 ], [ 908, 241, 10, 16 ], [ 199, 539, 586, 15 ], [ 908, 501, 16, 9 ], [ 451, 324, 57, 13 ], [ 564, 324, 97, 13 ], [ 717, 324, 96, 13 ], [ 868, 324, 11, 13 ], [ 451, 345, 143, 16 ], [ 618, 345, 10, 16 ], [ 652, 345, 227, 16 ], [ 451, 367, 11, 15 ], [ 489, 367, 10, 15 ], [ 526, 367, 191, 15 ], [ 744, 367, 135, 15 ], [ 451, 389, 428, 14 ], [ 451, 409, 34, 15 ], [ 519, 409, 115, 15 ], [ 669, 409, 110, 15 ], [ 814, 409, 65, 15 ], [ 452, 428, 127, 18 ], [ 621, 428, 127, 18 ], [ 790, 428, 89, 18 ], [ 452, 453, 101, 14 ], [ 578, 453, 10, 14 ], [ 612, 453, 36, 14 ], [ 673, 453, 57, 14 ], [ 755, 453, 36, 14 ], [ 815, 453, 65, 14 ], [ 452, 473, 428, 16 ], [ 452, 496, 233, 15 ], [ 179, 402, 136, 11 ], [ 179, 426, 198, 10 ], [ 450, 177, 57, 13 ], [ 564, 177, 97, 13 ], [ 716, 177, 97, 13 ], [ 868, 177, 11, 13 ], [ 177, 199, 136, 16 ], [ 450, 199, 144, 16 ], [ 638, 199, 116, 16 ], [ 799, 199, 80, 16 ], [ 177, 223, 198, 13 ], [ 450, 223, 203, 13 ], [ 675, 223, 204, 13 ], [ 450, 241, 409, 16 ], [ 147, 185, 9, 6 ], [ 149, 332, 9, 6 ], [ 151, 584, 10, 6 ], [ 908, 710, 16, 10 ], [ 201, 783, 67, 11 ], [ 200, 750, 153, 15 ], [ 181, 580, 157, 12 ], [ 181, 604, 221, 12 ], [ 181, 622, 119, 15 ], [ 446, 587, 435, 16 ], [ 445, 611, 154, 12 ], [ 624, 611, 87, 12 ], [ 737, 611, 10, 12 ], [ 772, 611, 109, 12 ], [ 445, 631, 294, 12 ], [ 181, 647, 126, 12 ], [ 446, 663, 69, 15 ], [ 584, 663, 97, 15 ], [ 749, 663, 133, 15 ], [ 181, 687, 701, 15 ], [ 446, 710, 112, 10 ], [ 153, 806, 365, 17 ], [ 590, 806, 97, 17 ], [ 758, 806, 126, 17 ], [ 444, 827, 132, 15 ], [ 606, 827, 277, 15 ], [ 443, 846, 74, 16 ], [ 580, 846, 95, 16 ], [ 737, 846, 147, 16 ], [ 444, 864, 11, 16 ], [ 505, 864, 193, 16 ], [ 746, 864, 138, 16 ], [ 444, 886, 441, 15 ], [ 444, 904, 57, 15 ], [ 536, 904, 9, 15 ], [ 580, 904, 97, 15 ], [ 712, 904, 172, 15 ], [ 444, 924, 327, 14 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
ccbda28b58f2a196d8f7b97de4d1af3fa8b6dbdaf1bed060b8b9e34b4fa31131
0001202105270015.pdf
267
326
599
856
1,025
1,025
russian_laws
laws_and_regulations
3359
[ "uniformly continuous. Moreover, any system of differential equations which admits uniformly continuous", "and bounded unpredictable solution has a Poincaré chaos.", "For differential equations, we say that a", "solution is an unpredictable one if it is uniformly continuous and bounded on the real axis.", "Let us consider the system", "where all eigenvalues of the constant", "p", "×", "p", "matrix", "A", "have negative real parts, the function", "f", ":", "R", "p", "→", "R", "p", "is bounded, and the function", "g", ":", "$^{R}$→ R", "p", "is a uniformly continous and bounded. Since the eigenvalues of", "the matrix", "A", "have negative real parts, there exist positive numbers", "K$_{0}$", "and", "ω", "such that", "∥", "e", "At", "∥", "≤", "K$_{0}$e", "ωt", "for", "t", "≥", "0", "[18].", "The presence of an unpredictable solution in the dynamics of (2.2) is mentioned in the next theorem.", "Theorem 2.2", "([3]) If", "g", "(", "t", ")", "is an unpredictable function and the function", "f", "(", "x", ")", "is Lipschitzian with a", "sufficiently small Lipschitz constant", "L$_{f}$", "such that", "K$_{0}$L$_{f}$", "−", "ω <", "0", ", then system (2.2) possesses a unique", "uniformly exponentially stable unpredictable solution.", "In the next two sections we will consider unpredictable functions whose domain consists of all integers,", "that is,", "unpredictable sequences", ".", "In this section, we will show the presence of an unpredictable point in the symbolic dynamics [5, 19] with", "a distinguishing feature.", "Let us consider the space", "Σ$_{2}$ =", "{", "s", "= (", "s$_{0}$s$_{1}$s$_{2}$ . . .", ")", "|", "s$_{j}$", "= 0", "or", "1", "}", "of infinite sequences of", "0", "’s and", "1", "’s", "with the metric", "where", "s", "= (", "s$_{0}$s$_{1}$s$_{2}$ . . .", ")", ", t", "= (", "t$_{0}$t$_{1}$t$_{2}$ . . .", ")", "∈", "Σ$_{2}$", ".", "The Bernoulli shift", "σ", ": Σ$_{2}$", "→", "Σ$_{2}$", "is defined as", "σ", "(", "s$_{0}$s$_{1}$s$_{2}$ . . .", ") =", "(", "s$_{1}$s$_{2}$s$_{3}$ . . .", ")", ".", "The map", "σ", "is continuous and", "Σ$_{2}$", "is a compact metric space [5, 19].", "In the book [5], the sequence", "was considered, which is constructed by successively listing all blocks of", "0", "’s and", "1", "’s of length", "n,", "then", "length", "n", "+ 1", ",", "etc.", "In the proof of the next lemma, an element", "s", "∗∗", "= (", "s", "∗∗", "0", "s", "∗∗", "1", "s", "∗∗", "2", ". . .", ")", "of", "Σ$_{2}$", "will be", "constructed in a similar way to", "s", "∗", "with the only difference that the order of the blocks will be chosen in", "a special way. An extension of the constructed sequence to the left hand side will also be provided.", "5", "s", "∗", "= ( 0 1", "︸︷︷︸", "1", "blocks", "|", "00", "01 10 11", "︸", "︷︷", "︸", "2", "blocks", "|", "000 001 010 011", ". . .", "︸", "︷︷", "︸", "3", "blocks", "|", ". . .", ")", ",", "(3.3)", "d", "(", "s, t", ") =", "∞", "∑", "k", "=0", "|", "s$_{k}$", "−", "t$_{k}$", "|", "2", "k", ",", "x", "$^{′}$(", "t", ") =", "Ax", "(", "t", ") +", "f", "(", "x", "(", "t", ")) +", "g", "(", "t", ")", ",", "(2.2)", "3", "An unpredictable sequence of the symbolic dynamics" ]
[ [ 124, 90, 777, 60 ], [ 124, 90, 777, 60 ], [ 124, 90, 777, 60 ], [ 124, 90, 777, 60 ], [ 149, 163, 200, 12 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 124, 250, 777, 86 ], [ 149, 349, 751, 12 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 382, 777, 60 ], [ 124, 464, 777, 36 ], [ 124, 464, 777, 36 ], [ 124, 464, 777, 36 ], [ 124, 464, 777, 36 ], [ 124, 579, 777, 36 ], [ 124, 579, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 628, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 124, 714, 777, 36 ], [ 149, 763, 216, 12 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 124, 855, 777, 84 ], [ 508, 964, 8, 12 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 300, 806, 600, 44 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 429, 664, 165, 38 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 382, 208, 519, 12 ], [ 124, 540, 672, 15 ], [ 124, 540, 672, 15 ] ]
[ [ 124, 90, 777, 12 ], [ 124, 115, 451, 12 ], [ 589, 115, 312, 12 ], [ 124, 139, 683, 12 ], [ 149, 163, 200, 12 ], [ 124, 252, 275, 12 ], [ 404, 252, 8, 12 ], [ 417, 252, 13, 12 ], [ 434, 252, 8, 12 ], [ 448, 252, 50, 12 ], [ 504, 252, 12, 12 ], [ 523, 252, 280, 12 ], [ 809, 252, 8, 12 ], [ 824, 252, 4, 12 ], [ 833, 251, 12, 10 ], [ 846, 250, 7, 8 ], [ 859, 252, 17, 12 ], [ 881, 251, 12, 10 ], [ 893, 250, 7, 8 ], [ 124, 276, 214, 12 ], [ 343, 276, 8, 12 ], [ 357, 276, 4, 12 ], [ 367, 276, 51, 12 ], [ 418, 275, 7, 8 ], [ 431, 276, 469, 12 ], [ 124, 300, 79, 12 ], [ 209, 301, 12, 12 ], [ 228, 300, 401, 12 ], [ 635, 301, 21, 12 ], [ 663, 300, 27, 12 ], [ 696, 301, 10, 12 ], [ 713, 300, 70, 12 ], [ 789, 291, 9, 37 ], [ 799, 301, 7, 12 ], [ 807, 299, 15, 8 ], [ 823, 291, 9, 37 ], [ 837, 301, 13, 12 ], [ 856, 301, 30, 12 ], [ 886, 299, 14, 8 ], [ 124, 325, 20, 12 ], [ 150, 325, 6, 12 ], [ 161, 325, 13, 12 ], [ 179, 325, 8, 12 ], [ 193, 325, 31, 12 ], [ 149, 349, 751, 12 ], [ 124, 383, 109, 10 ], [ 241, 382, 53, 12 ], [ 302, 382, 8, 12 ], [ 311, 382, 6, 12 ], [ 317, 382, 6, 12 ], [ 324, 382, 6, 12 ], [ 338, 382, 347, 12 ], [ 694, 382, 8, 12 ], [ 704, 382, 6, 12 ], [ 711, 382, 9, 12 ], [ 721, 382, 6, 12 ], [ 735, 382, 165, 12 ], [ 124, 407, 268, 12 ], [ 399, 407, 18, 12 ], [ 426, 407, 68, 12 ], [ 502, 407, 40, 12 ], [ 549, 407, 13, 12 ], [ 566, 407, 30, 12 ], [ 603, 407, 8, 12 ], [ 611, 407, 289, 12 ], [ 124, 431, 397, 12 ], [ 149, 464, 751, 12 ], [ 124, 489, 53, 12 ], [ 183, 489, 174, 12 ], [ 357, 489, 4, 12 ], [ 124, 579, 777, 12 ], [ 124, 603, 180, 12 ], [ 149, 628, 195, 12 ], [ 352, 628, 40, 12 ], [ 400, 628, 8, 12 ], [ 409, 628, 8, 12 ], [ 422, 628, 24, 12 ], [ 446, 628, 70, 12 ], [ 517, 628, 6, 12 ], [ 529, 628, 4, 12 ], [ 539, 628, 13, 12 ], [ 559, 628, 26, 12 ], [ 592, 628, 15, 12 ], [ 613, 628, 8, 12 ], [ 622, 628, 8, 12 ], [ 637, 628, 174, 12 ], [ 819, 628, 8, 12 ], [ 827, 628, 46, 12 ], [ 881, 628, 8, 12 ], [ 889, 628, 11, 12 ], [ 124, 652, 116, 12 ], [ 124, 714, 43, 12 ], [ 172, 714, 8, 12 ], [ 185, 714, 24, 12 ], [ 210, 714, 70, 12 ], [ 280, 714, 6, 12 ], [ 286, 714, 15, 12 ], [ 307, 714, 24, 12 ], [ 332, 714, 64, 12 ], [ 396, 714, 6, 12 ], [ 408, 714, 11, 12 ], [ 424, 714, 19, 12 ], [ 444, 714, 4, 12 ], [ 453, 714, 140, 12 ], [ 598, 714, 9, 12 ], [ 614, 714, 28, 12 ], [ 648, 714, 17, 12 ], [ 670, 714, 19, 12 ], [ 695, 714, 89, 12 ], [ 789, 714, 9, 12 ], [ 799, 714, 6, 12 ], [ 806, 714, 70, 12 ], [ 876, 714, 24, 12 ], [ 124, 739, 6, 12 ], [ 130, 739, 70, 12 ], [ 200, 739, 6, 12 ], [ 207, 739, 4, 12 ], [ 217, 739, 67, 12 ], [ 291, 739, 9, 12 ], [ 307, 739, 130, 12 ], [ 444, 739, 19, 12 ], [ 469, 739, 249, 12 ], [ 149, 763, 216, 12 ], [ 124, 855, 552, 12 ], [ 682, 855, 8, 12 ], [ 691, 855, 46, 12 ], [ 744, 855, 8, 12 ], [ 753, 855, 86, 12 ], [ 846, 855, 15, 12 ], [ 868, 855, 33, 12 ], [ 124, 879, 46, 12 ], [ 179, 879, 10, 12 ], [ 194, 879, 27, 12 ], [ 222, 879, 4, 12 ], [ 235, 879, 26, 12 ], [ 277, 879, 345, 12 ], [ 630, 879, 8, 12 ], [ 638, 878, 14, 6 ], [ 662, 879, 28, 12 ], [ 691, 879, 8, 12 ], [ 699, 878, 14, 6 ], [ 699, 885, 6, 8 ], [ 714, 879, 8, 12 ], [ 722, 878, 14, 6 ], [ 722, 885, 6, 8 ], [ 737, 879, 8, 12 ], [ 745, 878, 14, 6 ], [ 745, 885, 6, 8 ], [ 763, 879, 20, 12 ], [ 783, 879, 6, 12 ], [ 798, 879, 13, 12 ], [ 820, 879, 19, 12 ], [ 848, 879, 52, 12 ], [ 124, 904, 232, 12 ], [ 361, 904, 8, 12 ], [ 370, 902, 7, 6 ], [ 383, 904, 518, 12 ], [ 124, 928, 744, 12 ], [ 508, 964, 8, 12 ], [ 300, 807, 8, 12 ], [ 308, 806, 7, 6 ], [ 321, 807, 59, 12 ], [ 354, 813, 30, 37 ], [ 346, 827, 6, 8 ], [ 355, 827, 37, 8 ], [ 395, 807, 4, 12 ], [ 403, 807, 12, 12 ], [ 427, 807, 61, 12 ], [ 403, 813, 7, 37 ], [ 438, 813, 15, 37 ], [ 481, 813, 7, 37 ], [ 422, 827, 6, 8 ], [ 432, 827, 37, 8 ], [ 492, 807, 4, 12 ], [ 499, 807, 120, 12 ], [ 628, 807, 20, 12 ], [ 499, 813, 7, 37 ], [ 566, 813, 15, 37 ], [ 640, 813, 7, 37 ], [ 550, 827, 6, 8 ], [ 560, 827, 37, 8 ], [ 651, 807, 4, 12 ], [ 658, 807, 20, 12 ], [ 678, 807, 6, 12 ], [ 685, 807, 4, 12 ], [ 866, 807, 35, 12 ], [ 429, 676, 8, 12 ], [ 438, 676, 6, 12 ], [ 445, 676, 21, 12 ], [ 467, 676, 24, 12 ], [ 502, 664, 13, 6 ], [ 497, 665, 24, 37 ], [ 497, 693, 7, 8 ], [ 504, 693, 17, 8 ], [ 526, 668, 4, 12 ], [ 531, 668, 15, 12 ], [ 551, 668, 13, 12 ], [ 569, 668, 13, 12 ], [ 583, 668, 4, 12 ], [ 549, 684, 8, 12 ], [ 557, 684, 7, 8 ], [ 590, 676, 4, 12 ], [ 382, 208, 9, 12 ], [ 391, 208, 11, 12 ], [ 403, 208, 6, 12 ], [ 409, 208, 24, 12 ], [ 439, 208, 22, 12 ], [ 461, 208, 6, 12 ], [ 468, 208, 6, 12 ], [ 474, 208, 23, 12 ], [ 502, 208, 8, 12 ], [ 512, 208, 6, 12 ], [ 519, 208, 9, 12 ], [ 528, 208, 6, 12 ], [ 535, 208, 6, 12 ], [ 541, 208, 30, 12 ], [ 576, 208, 8, 12 ], [ 585, 208, 6, 12 ], [ 591, 208, 6, 12 ], [ 597, 208, 6, 12 ], [ 604, 208, 4, 12 ], [ 866, 208, 35, 12 ], [ 124, 540, 13, 15 ], [ 164, 540, 631, 15 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 7, 7 ]
4cd4e5e582f6c22803d3b737b195a059cea7594caebcfaaca2ac65c75551db3c
1608.07301.pdf
4
17
595
842
1,025
1,025
arxiv_doublespaced
scientific_articles
3360
[ "[37]", "S. Fl¨", "ugge,", "Practical Quantum Mechanics,", "Springer-Verlage, Berline, 1974;", "Problem 39", "12" ]
[ [ 224, 164, 576, 38 ], [ 224, 164, 576, 38 ], [ 224, 164, 576, 38 ], [ 224, 164, 576, 38 ], [ 224, 164, 576, 38 ], [ 224, 164, 576, 38 ], [ 503, 899, 16, 12 ] ]
[ [ 224, 164, 19, 12 ], [ 255, 164, 46, 12 ], [ 293, 164, 38, 12 ], [ 337, 165, 224, 11 ], [ 568, 164, 231, 12 ], [ 258, 190, 83, 12 ], [ 503, 899, 16, 12 ] ]
[ 3, 3, 3, 3, 3, 3, 4 ]
64d2c2ddbb7166552d47e186d7ce674c4ccd233fee7167ebb396aba3bfd61d23
0807.3030.pdf
11
13
612
792
1,025
1,025
arxiv_doublespaced
scientific_articles
3361
[ "3.4", "Installing the VM Recovery Manager HA solution", "The VM Recovery Manager HA solution provides HA management for IBM Power Systems ", "servers with PowerVM virtualization. After you plan the implementation of the VM Recovery ", "Manager HA solution, you can install the VM Recovery Manager HA software. The VM ", "Recovery Manager HA solution uses other subsystems such as HMC and VIOSs that must ", "exist in your production environment.", "The VM Recovery Manager HA software can be enabled when you have the following ", "subsystems in your production environment:", "Figure 3-4 shows the components of VM Recovery Manager HA.", "Figure 3-4", "Components of VM Recover Manager HA ", "274 ", "Implementing IBM VM Recovery Manager for IBM Power Systems", "GLYPH<SM590000>", "VIOS Version 3.1.0.1 or later must be installed on all VIOS partitions that are part of the ", "host group. Host Monitor (HM), which is a key component of the VM Recovery Manager ", "HA solution, is installed on the VIOS by default. The HM component is enabled and used ", "when you install the VM Recovery Manager HA filesets. The VM Recovery Manager HA ", "solution requires two VIOS per host.", "GLYPH<SM590000>", "HMC V9 R 9.1.0 or later must be used to manage all hosts that are part of the cluster." ]
[ [ 108, 92, 668, 19 ], [ 108, 92, 668, 19 ], [ 229, 133, 679, 74 ], [ 229, 133, 679, 74 ], [ 229, 133, 679, 74 ], [ 229, 133, 679, 74 ], [ 229, 133, 679, 74 ], [ 229, 224, 639, 27 ], [ 229, 224, 639, 27 ], [ 229, 374, 479, 11 ], [ 229, 939, 362, 10 ], [ 229, 939, 362, 10 ], [ 108, 976, 515, 11 ], [ 108, 976, 515, 11 ], [ 229, 262, 685, 74 ], [ 229, 262, 685, 74 ], [ 229, 262, 685, 74 ], [ 229, 262, 685, 74 ], [ 229, 262, 685, 74 ], [ 229, 262, 685, 74 ], [ 229, 346, 657, 11 ], [ 229, 346, 657, 11 ] ]
[ [ 108, 92, 37, 19 ], [ 153, 92, 622, 19 ], [ 229, 133, 677, 11 ], [ 229, 149, 679, 11 ], [ 229, 164, 643, 11 ], [ 229, 180, 676, 11 ], [ 229, 196, 273, 11 ], [ 229, 224, 639, 11 ], [ 229, 240, 327, 11 ], [ 229, 374, 479, 11 ], [ 229, 939, 68, 10 ], [ 310, 939, 281, 10 ], [ 108, 976, 32, 11 ], [ 165, 977, 458, 10 ], [ 229, 262, 8, 11 ], [ 253, 262, 652, 11 ], [ 253, 277, 653, 11 ], [ 253, 293, 661, 11 ], [ 253, 308, 654, 11 ], [ 253, 324, 267, 11 ], [ 229, 346, 8, 11 ], [ 253, 346, 633, 11 ] ]
[ 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 4, 4, 3, 3, 3, 3, 3, 3, 3, 3 ]
441089dc564a31d1aa54ca5ace0169dcd78a8285ab8eb80cdad1c941b39cffa2
sg248426.pdf
287
392
612
792
1,025
1,025
redbooks
manuals
3362
[ "Archival data storage requirements are growing at over 60% annually. The LTFS format is an ", "ideal option for long-term archiving of large files that must be easily shared with others. This ", "option is especially important because the tape media that it uses (LTO and 3592) are ", "designed to have a 15 - 30 year lifespan (depending on the number of read/write passes).", "Industries that most benefit from this tape file system are the banking, digital media, medical, ", "geophysical, and entertainment industries. Many users in these industries use Linux or ", "Macintosh systems, which are fully compatible with LTFS.", "LTO Ultrium tape cartridges from earlier LTO generations (that is, LTO-1 through LTO-4) ", "cannot", " be partitioned and be used by LTFS/IBM Spectrum Archive. Also, if LTO Ultrium 4 tape ", "cartridges are used in an LTO Ultrium 5 tape drive to write data, the LTO-4 tape cartridge is ", "treated as an unpartitioned LTO-5 tape cartridge. Even if an application can manage ", "partitions, it is not possible to partition the LTO-4 media that is mounted in an LTO Ultrium 5 ", "drive. ", "Starting with the release of IBM Spectrum Archive EE V1R2, corresponding Write Once, ", "Read Many (WORM) tape cartridges are supported in an IBM Spectrum Archive EE solution ", "operating supported IBM Enterprise tape drives. With the same release, tape drives in mixed ", "configurations are supported. For more information, see 7.23, “Tape drive intermix support” ", "on page 204.", "Although LTFS presents the tape cartridge as a disk drive, the underlying hardware is still a ", "tape cartridge and is therefore sequential in nature. Tape does not allow random access. Data ", "is always appended to the tape, and there is no overwriting of files. File deletions do not erase ", "the data from tape, but instead erase the pointers to the data. So, although with LTFS you can ", "simultaneously copy two (or more) files to an LTFS tape cartridge, you get better performance ", "if you copy files sequentially.", "To operate the tape file system, the following components are needed:", "Together, these components can manage a file system on the tape media as though it is a ", "disk file system for accessing tape files, including the tape directory tree structures. The ", "metadata of each tape cartridge, after it is mounted, is cached in server memory. Therefore, ", "metadata operations, such as browsing the directory or searching for a file name, do not ", "require any tape movement and are quick. ", "GLYPH<SM590000>", "Software in the form of an open source LTFS package", "GLYPH<SM590000>", "Data structures that are created by LTFS on tape", "Chapter 2. IBM Spectrum Archive overview ", "17" ]
[ [ 229, 92, 687, 58 ], [ 229, 92, 687, 58 ], [ 229, 92, 687, 58 ], [ 229, 92, 687, 58 ], [ 229, 167, 687, 42 ], [ 229, 167, 687, 42 ], [ 229, 167, 687, 42 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 227, 687, 89 ], [ 229, 333, 705, 74 ], [ 229, 333, 705, 74 ], [ 229, 333, 705, 74 ], [ 229, 333, 705, 74 ], [ 229, 333, 705, 74 ], [ 229, 423, 687, 89 ], [ 229, 423, 687, 89 ], [ 229, 423, 687, 89 ], [ 229, 423, 687, 89 ], [ 229, 423, 687, 89 ], [ 229, 423, 687, 89 ], [ 229, 529, 522, 11 ], [ 229, 595, 683, 74 ], [ 229, 595, 683, 74 ], [ 229, 595, 683, 74 ], [ 229, 595, 683, 74 ], [ 229, 595, 683, 74 ], [ 229, 552, 426, 11 ], [ 229, 552, 426, 11 ], [ 229, 567, 387, 11 ], [ 229, 567, 387, 11 ], [ 584, 976, 331, 11 ], [ 584, 976, 331, 11 ] ]
[ [ 229, 92, 687, 11 ], [ 229, 108, 683, 11 ], [ 229, 123, 640, 11 ], [ 229, 139, 663, 11 ], [ 229, 167, 687, 11 ], [ 229, 183, 644, 11 ], [ 229, 198, 427, 11 ], [ 229, 227, 659, 11 ], [ 229, 239, 49, 15 ], [ 279, 242, 637, 11 ], [ 229, 258, 680, 11 ], [ 229, 273, 628, 11 ], [ 229, 289, 683, 11 ], [ 229, 304, 45, 11 ], [ 229, 333, 655, 11 ], [ 229, 348, 685, 11 ], [ 229, 364, 687, 11 ], [ 229, 379, 705, 11 ], [ 229, 395, 97, 11 ], [ 229, 423, 680, 11 ], [ 229, 439, 687, 11 ], [ 229, 454, 687, 11 ], [ 229, 470, 687, 11 ], [ 229, 486, 687, 11 ], [ 229, 501, 212, 11 ], [ 229, 529, 522, 11 ], [ 229, 595, 672, 11 ], [ 229, 611, 652, 11 ], [ 229, 627, 683, 11 ], [ 229, 642, 656, 11 ], [ 229, 658, 318, 11 ], [ 229, 552, 8, 11 ], [ 253, 552, 402, 11 ], [ 229, 567, 8, 11 ], [ 253, 567, 363, 11 ], [ 584, 977, 292, 10 ], [ 897, 976, 18, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 4, 4 ]
c1966116497adc541046b6a2f5067c8592144b263a5b321105800e821968fbb4
sg248445.pdf
38
362
612
792
1,025
1,025
redbooks
manuals
3363
[ "2019 ", "Contract number: [", "complete", "] ", "SPECIFIC CONTRACT ", "No [", "complete", "] ", "implementing framework contract No [", "complete", "] ", "1.", "The European Centre for Disease Prevention and Control (referred to as \"the Centre\" or (‘the ", "contracting authority’), represented for the purposes of signing this specific contract by ", "[", "forename, surname, function, department of authorising officer", "], ", "and ", "2.", "[", "Full official name", "]", "[", "Official legal form", "]", "[", "Statutory registration number or ID or passport number", "] ", "[", "Full official address", "]", "[", "VAT registration number", "] ", "[appointed as leader of the group by the members of the group that submitted the joint tender] ", "([collectively] \"the contractor\"), represented for the purposes of signing this specific contract ", "by [", "forename, surname and function of legal representative", ",] " ]
[ [ 806, 33, 34, 14 ], [ 122, 33, 182, 14 ], [ 122, 33, 182, 14 ], [ 122, 33, 182, 14 ], [ 384, 73, 262, 23 ], [ 452, 110, 124, 20 ], [ 452, 110, 124, 20 ], [ 452, 110, 124, 20 ], [ 297, 144, 434, 20 ], [ 297, 144, 434, 20 ], [ 297, 144, 434, 20 ], [ 122, 212, 791, 53 ], [ 122, 212, 791, 53 ], [ 122, 212, 791, 53 ], [ 122, 212, 791, 53 ], [ 122, 212, 791, 53 ], [ 122, 212, 791, 53 ], [ 122, 279, 35, 19 ], [ 122, 313, 182, 19 ], [ 122, 313, 182, 19 ], [ 122, 313, 182, 19 ], [ 122, 313, 182, 19 ], [ 122, 347, 167, 19 ], [ 122, 347, 167, 19 ], [ 122, 347, 167, 19 ], [ 122, 381, 484, 20 ], [ 122, 381, 484, 20 ], [ 122, 381, 484, 20 ], [ 122, 415, 181, 19 ], [ 122, 415, 181, 19 ], [ 122, 415, 181, 19 ], [ 122, 449, 226, 19 ], [ 122, 449, 226, 19 ], [ 122, 449, 226, 19 ], [ 122, 483, 780, 19 ], [ 122, 516, 785, 36 ], [ 122, 516, 785, 36 ], [ 122, 516, 785, 36 ], [ 122, 516, 785, 36 ] ]
[ [ 806, 33, 34, 14 ], [ 122, 33, 117, 14 ], [ 240, 33, 55, 14 ], [ 295, 33, 8, 14 ], [ 384, 73, 262, 23 ], [ 452, 110, 37, 20 ], [ 489, 111, 75, 19 ], [ 565, 110, 11, 20 ], [ 297, 144, 346, 20 ], [ 644, 144, 75, 19 ], [ 720, 144, 11, 20 ], [ 122, 212, 15, 19 ], [ 142, 212, 765, 19 ], [ 122, 229, 791, 19 ], [ 122, 246, 6, 19 ], [ 129, 246, 522, 19 ], [ 651, 246, 17, 19 ], [ 122, 279, 35, 19 ], [ 122, 313, 15, 19 ], [ 142, 313, 6, 19 ], [ 149, 314, 148, 19 ], [ 297, 313, 6, 19 ], [ 122, 347, 6, 19 ], [ 129, 347, 153, 19 ], [ 282, 347, 6, 19 ], [ 122, 381, 6, 20 ], [ 129, 381, 465, 19 ], [ 594, 381, 12, 20 ], [ 122, 415, 6, 19 ], [ 129, 415, 167, 19 ], [ 296, 415, 6, 19 ], [ 122, 449, 6, 19 ], [ 129, 449, 207, 19 ], [ 336, 449, 11, 19 ], [ 122, 483, 780, 19 ], [ 122, 516, 785, 19 ], [ 122, 533, 32, 19 ], [ 154, 533, 459, 19 ], [ 614, 533, 17, 19 ] ]
[ 5, 5, 5, 5, 7, 7, 7, 7, 7, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
18811582ce379e89f527e85ea78be138fe03cd3449b10ca2e16ecf1c294adbe8
EN-OJ_2021_DPR_23669_Framework contract.pdf
40
56
595
841
1,025
1,025
eu_tenders
government_tenders
3364
[ "Jeffrey D. Benjamin", " has been Senior Advisor to Cyrus Capital Partners, L.P. from 2008 to the present. He is currently Chairman of A-Mark Precious", "Metals, Inc. since 2014, and he has been on the American Airlines Group Inc. board since 2013. Past Directorships and Committees include Chemtura Corp.,", "Caesar’s Entertainment Corp., Exco Resources, Inc. (Chairman), and Spectrum Group International. Private Directorships consist of ImOn Communications LLC", "(Chairman), Rackspace Hosting, Inc. and Shutterfly, Inc. He has executive leadership experience in the investment industry, including UBS Securities LLC and", "Salomon Brothers Inc. For Hexion Holdings Corporation, he is Lead Director, Chair of the Compensation Committee and serves on the Audit Committee.", "James N. Chapman", " is a non-executive Advisory Director of SkyWorks Capital, LLC and serves as a member of the Board of Directors of Arch Coal, Inc.,", "American Media LLC, Eco-Bat Technologies, Inc. and Neenah Enterprises, Inc.", "Previously, he has served on numerous other public and private boards,", "including AerCap NV, Bennu Oil & Gas, LLC, Broadview Networks Inc., Chrysler LLC, CSC ServiceWorks, Inc., Hayes- Lemmerz, Inc., Tembec, Inc. and Tower", "International, Inc. Mr. Chapman has also previously worked for Regiment Capital Advisors, LP, The Renco Group, Inc. and was a founding principal of", "Fieldstone Private Capital Group. Prior to joining Fieldstone, Mr. Chapman worked for Bankers Trust Company. He has been a capital markets and strategic", "planning consultant with over 30 years of investment banking experience in a wide range of industries including aviation, mining, energy, automotive and", "general manufacturing.", "For Hexion Holdings Corporation, he is Chair of the Listing Committee, and serves on the Audit Committee and Compensation", "Committee.", "Joaquín Delgado", " worked at 3M Company from 1987 until his retirement in July 2019. He most recently served as Executive Vice President since July", "2009, having operating responsibility for three Business Groups. He has been on the Board of Directors of Stepan Company from 2011 to present, serving on all", "Committees. He has also served on the Board of Directors of MacPhail Center for Music, a non-profit, from 2013 to present, and is on the Executive Board. Mr.", "Delgado has a PhD in polymer science and engineering from Lehigh University. In addition, Dr. Delgado serves as a member of Board of Trustees of Goldman", "Sachs Trust and Goldman Sachs Variable Insurance Trust. For Hexion Holdings Corporation, he serves on the Environmental Health & Safety Committee and", "on the Nominating & Corporate Governance Committee.", "Carol S. Eicher", " is a Director, Chair of the Governance Committee and member of the Compensation Committee of Tennant Co. and a Director, Chair of", "the Governance Committee and member of the Audit Committee of Advanced Emissions Solutions, Inc. Previously, she was a Director of A. Schulman Co. and", "President, CEO and Director of Innocor, Inc. She also held senior management positions with Dow Chemical Co., Rohm and Haas Co., Ashland, Inc. and E.I.", "DuPont de Nemours and Co. She has been in the chemical industry since 1979 and has extensive experience with operating leadership positions in the industry.", "For Hexion Holdings Corporation, she is Chair of the Nominating & Corporate Governance Committee and serves on the Environmental Health & Safety", "Committee.", "Michael J. Shannon ", "is a board member of Quaker Houghton (KWR) serving on the Audit Committee since Aug 2019. Mr. Shannon is the former Chief", "Executive Officer and a board member of Houghton International Inc. and served in these roles since his appointment in December 2015. Immediately prior to", "this appointment, Mr. Shannon served as Chief Operating Officer responsible for all global commercial and operational activities. Previously, Mr. Shannon", "spent 24 years at Ashland Inc. as a Corporate Officer and President of Global Supply Chain and Senior VP of the Performance Materials Group. He has also", "served on the board of Reichhold, Inc. Mr. Shannon has a BS in Chemical Engineering from the University of Pennsylvania and an MBA from Temple University.", "For Hexion Holdings Corporation, he is Chair of the Environmental Health & Safety Committee and serves on the Nominating & Corporate Governance", "Committee.", "John K. Wulff", "serves on the Board of Directors of Celanese Corporation (Chairman, Audit Committee, Nominating and Corporate Governance", "Committee), and of Atlas Air Worldwide Holdings, Inc. (Member, Audit and Compensation Committees). Mr. Wulff is the former Chairman of the Board of", "Hercules Inc. and, during the past five years, has served on the boards and committees of Moody's Corp. and of Chemtura Corp. He has also served as a", "member of the Financial Accounting Standards Board (FASB), CFO of Union Carbide Corp, a partner of KPMG LLP, and officer of other governance and", "financial organizations. He has substantial chemical industry, strategy and financial expertise. For Hexion Holdings Corporation, he is Chair of the Audit", "Committee and serves on the Compensation Committee.", "Stephen D. Newlin", " serves as the Non-Executive Chairman of Univar Solutions’ (UNVR) board of directors. He served as Chairman, President and", "Chief Executive Officer of Univar from 2016-2018 after being elected to the board in 2014. Mr. Newlin previously served as Executive Chairman of the Board of", "PolyOne Corp. (POL) from 2014-2016, and Chairman, President and CEO of PolyOne from 2006-2014, following 27 years at Nalco and Ecolab (now merged). At", "Nalco he became President, COO and Vice-Chair, and at Ecolab he was President of Ecolab's Industrial Sector. In addition, he has served as Chairman of the", "Board of Directors of Oshkosh Corporation (OSK) since 2020, and has held previous board positions at Chemours Corporation (CC), The National Association of", "Manufacturers and others. For Hexion Holdings Corporation, he serves on the Compensation Committee and the Environmental Health & Safety Committee.", "John P. Auletto", " was elected Executive Vice President - Human Resources effective May 15, 2016. Mr. Auletto joined the Company in September 1999", "as Director of Human Resources for the Performance Resins Group. Since then he has held various positions with increasing responsibilities in human", "resources, including most recently, Vice President- Human Resources for the Epoxy, Phenolic and Coating Resins Division from April 2013 to May 15, 2016.", "Prior to joining the Company, Mr. Auletto served in human resources roles with Associates National Bank, W.L. Gore & Associates, and The Bank of New York.", "Nathan E. Fisher ", "was elected Executive Vice President - Procurement of the Company on June 1, 2005. He served as Executive Vice President -", "Procurement of Momentive Performance Materials Inc., having been elected to that position on October 1, 2010 and ending on 12/31/2019. Mr. Fisher joined", "the Company in March 2003 as Director of Strategic Sourcing and was promoted to Vice President - Global Sourcing in September 2004.", "110", "Table of Contents" ]
[ [ 24, 43, 973, 49 ], [ 24, 43, 973, 49 ], [ 24, 43, 973, 49 ], [ 24, 43, 973, 49 ], [ 24, 43, 973, 49 ], [ 24, 43, 973, 49 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 101, 973, 78 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 188, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 255, 973, 58 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 323, 973, 68 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 400, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 467, 973, 58 ], [ 24, 535, 973, 39 ], [ 24, 535, 973, 39 ], [ 24, 535, 973, 39 ], [ 24, 535, 973, 39 ], [ 24, 535, 973, 39 ], [ 24, 582, 973, 29 ], [ 24, 582, 973, 29 ], [ 24, 582, 973, 29 ], [ 24, 582, 973, 29 ], [ 499, 624, 24, 10 ], [ 24, 12, 115, 10 ] ]
[ [ 72, 43, 132, 9 ], [ 205, 44, 793, 9 ], [ 24, 53, 973, 9 ], [ 24, 63, 973, 9 ], [ 24, 73, 973, 9 ], [ 24, 83, 925, 9 ], [ 72, 101, 126, 9 ], [ 199, 101, 799, 9 ], [ 24, 111, 482, 9 ], [ 519, 111, 479, 9 ], [ 24, 121, 973, 9 ], [ 24, 131, 973, 9 ], [ 24, 140, 973, 9 ], [ 24, 150, 973, 9 ], [ 24, 160, 151, 9 ], [ 188, 160, 809, 9 ], [ 24, 170, 70, 9 ], [ 72, 188, 110, 9 ], [ 183, 188, 815, 9 ], [ 24, 198, 973, 9 ], [ 24, 208, 973, 9 ], [ 24, 218, 973, 9 ], [ 24, 227, 973, 9 ], [ 24, 237, 342, 9 ], [ 72, 255, 100, 9 ], [ 172, 255, 825, 9 ], [ 24, 265, 973, 9 ], [ 24, 275, 973, 9 ], [ 24, 285, 973, 9 ], [ 24, 295, 973, 9 ], [ 24, 305, 70, 9 ], [ 72, 323, 135, 9 ], [ 208, 323, 790, 9 ], [ 24, 333, 973, 9 ], [ 24, 342, 973, 9 ], [ 24, 352, 973, 9 ], [ 24, 362, 973, 9 ], [ 24, 372, 973, 9 ], [ 24, 382, 70, 9 ], [ 72, 400, 97, 9 ], [ 175, 400, 822, 9 ], [ 24, 410, 973, 9 ], [ 24, 420, 973, 9 ], [ 24, 429, 973, 9 ], [ 24, 439, 973, 9 ], [ 24, 449, 340, 9 ], [ 72, 467, 127, 9 ], [ 199, 467, 798, 9 ], [ 24, 477, 973, 9 ], [ 24, 487, 973, 9 ], [ 24, 497, 973, 9 ], [ 24, 507, 973, 9 ], [ 24, 516, 952, 9 ], [ 72, 535, 102, 9 ], [ 174, 535, 824, 9 ], [ 24, 544, 973, 9 ], [ 24, 554, 973, 9 ], [ 24, 564, 963, 9 ], [ 72, 582, 121, 9 ], [ 195, 582, 803, 9 ], [ 24, 592, 973, 9 ], [ 24, 602, 831, 9 ], [ 499, 624, 24, 10 ], [ 24, 12, 115, 10 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 5 ]
c2e1a65e414d75341a17e069f5da1f85c3a773da447fb5538f37d902d2abad72
0000013239-20-000006_20200303x10k.pdf
109
143
595
842
1,025
1,025
sec_filings
financial_reports
3365
[ "constant. A similar limitation exists for any insulator-layered superconductor boundary, if", "the dielectric constant", "ε$_{ext}$", "of the insulator is less than", "ε", ". The above conditions follow from", "the dispersion relation for the JPWs and the natural limitation for the tangential component", "q", "(", "q", "=", "k", "sin", "θ < k,", "k", "=", "ω/c", ") of the wave-vector for a wave incident at an angle", "θ", "from the", "vacuum onto the layered superconductor. A simple analysis shows that the above inequality", "is compatible with the dispersion relation for JPWs only for frequencies", "ω$_{J}$ < ω < ω", "vac", "1", ". In", "other words, any wave with frequency", "ω > ω", "vac", "1", "incident from the vacuum", "cannot propagate", "further in a layered superconductor. JPWs with", "ω > ω", "vac", "1", "can only match", "evanescent", "waves", "in the vacuum. As for frequencies", "ω$_{J}$ < ω < ω", "vac", "1", ", the NRI can be observed, but only for", "incident angles", "θ", "higher than some critical value", "θ$_{crit}$", ".", "For frequencies in the interval", "we predict the existence of a", "new branch of surface waves", "(here", "γ", "=", "λ$_{c}$/λ$_{ab}$", "≫", "1", "is the", "current-anisotropy parameter,", "λ$_{c}$", "=", "c/ω$_{J}$ε", "1", "/", "2", "and", "λ$_{ab}$", "are the magnetic-field penetration", "depths along and across the layers, respectively).", "Despite numerous works on this issue,", "SJPWs with frequencies higher than", "ω$_{J}$", "were not discussed before. Here we study them and", "prove that the SJPWs spectrum consists of two branches. The low-frequency branch was", "described in detail in [6]. Its spectrum", "ω", "(", "q", ") follows the “vacuum light line”,", "q", "=", "ω/c", ", and", "deviates from it at frequencies close to", "ω$_{J}$", ". The new branch of SJPWs predicted here starts", "at the frequency", "ω", "=", "ω", "vac", "1", "and follows the vacuum light line for", "ω", "≪", "ω$_{2}$", ". For frequencies of", "the order of", "ω$_{2}$", ", the dispersion curve", "ω", "(", "q", ") strongly deviates from the vacuum light line and", "stops at the frequency", "ω", "=", "ω$_{2}$", "when", "q", "≈", "1", "/λ$_{ab}$", ".", "Thus, SJPWs do not exist within the frequency gap", "ω$_{J}$", "< ω < ω", "vac", "1", ".", "On the other", "hand, as shown here, this is actually the range where the NRI can be observed (for waves", "incident from the vacuum onto the layered-superconductor boundary). Hence, some kind of", "complementarity between the NRI and surface waves is established in this paper.", "Conditions for the observation of NRI", ".— Consider a layered structure consisting of su-", "perconducting and dielectric layers with thicknesses", "s", "and", "d", ", respectively (see Fig. 1). We", "study the transverse-magnetic JPWs propagating with wave-vector", "k$_{s}$", "= (", "q,", "0", ",", "κ", "$_{s}$) and hav-", "ing the electric,", "E", "s", "=", "{", "E", "s", "$_{x}$,", "0", ", E", "s", "z", "}", ", and magnetic,", "H", "s", "=", "{", "0", ", H", "$^{s}$,", "0", "}", ", components proportional", "to exp[", "i", "(", "qx", "+", "κ", "$_{s}$z", "−", "ωt", ")]. The coordinate system is shown in Fig. 1.", "3", "ω", "vac", "1", "< ω < ω$_{2}$,", "ω$_{2}$", "=", "ω$_{J}$γ,", "(1)" ]
[ [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 120, 94, 781, 259 ], [ 145, 365, 256, 15 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 450, 780, 270 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 720, 780, 97 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 120, 829, 781, 134 ], [ 496, 978, 9, 15 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ], [ 394, 405, 507, 19 ] ]
[ [ 120, 94, 780, 15 ], [ 120, 121, 189, 15 ], [ 317, 121, 28, 15 ], [ 352, 121, 232, 15 ], [ 592, 121, 9, 15 ], [ 601, 121, 300, 15 ], [ 120, 148, 780, 15 ], [ 120, 175, 8, 15 ], [ 136, 175, 7, 15 ], [ 144, 175, 8, 15 ], [ 158, 175, 15, 15 ], [ 179, 175, 10, 15 ], [ 193, 175, 23, 15 ], [ 221, 175, 52, 15 ], [ 296, 175, 10, 15 ], [ 313, 175, 15, 15 ], [ 334, 175, 31, 15 ], [ 365, 175, 440, 15 ], [ 811, 175, 9, 15 ], [ 828, 175, 73, 15 ], [ 120, 202, 780, 15 ], [ 120, 229, 618, 15 ], [ 746, 229, 101, 15 ], [ 848, 228, 19, 8 ], [ 847, 238, 7, 8 ], [ 868, 229, 32, 15 ], [ 120, 256, 321, 15 ], [ 448, 256, 51, 15 ], [ 500, 255, 19, 8 ], [ 500, 265, 7, 8 ], [ 527, 256, 217, 15 ], [ 752, 256, 148, 15 ], [ 120, 283, 410, 15 ], [ 537, 283, 51, 15 ], [ 590, 282, 19, 8 ], [ 589, 292, 7, 8 ], [ 616, 283, 130, 15 ], [ 753, 283, 90, 15 ], [ 852, 283, 48, 15 ], [ 120, 311, 296, 15 ], [ 424, 311, 106, 15 ], [ 532, 310, 19, 8 ], [ 531, 319, 7, 8 ], [ 553, 311, 348, 15 ], [ 120, 338, 126, 15 ], [ 254, 338, 9, 15 ], [ 270, 338, 264, 15 ], [ 541, 338, 30, 15 ], [ 572, 338, 5, 15 ], [ 145, 365, 256, 15 ], [ 120, 450, 255, 15 ], [ 384, 450, 250, 15 ], [ 644, 450, 43, 15 ], [ 696, 450, 10, 15 ], [ 717, 450, 15, 15 ], [ 741, 450, 53, 15 ], [ 804, 450, 20, 26 ], [ 834, 450, 7, 15 ], [ 856, 450, 45, 15 ], [ 120, 477, 259, 15 ], [ 390, 477, 17, 15 ], [ 418, 477, 15, 15 ], [ 444, 477, 49, 15 ], [ 494, 476, 7, 8 ], [ 501, 475, 7, 10 ], [ 508, 476, 7, 8 ], [ 525, 477, 31, 15 ], [ 566, 477, 24, 15 ], [ 601, 477, 299, 15 ], [ 120, 504, 430, 15 ], [ 565, 504, 335, 15 ], [ 120, 531, 309, 15 ], [ 436, 531, 20, 15 ], [ 464, 531, 437, 15 ], [ 120, 558, 780, 15 ], [ 120, 585, 334, 15 ], [ 462, 585, 12, 15 ], [ 475, 585, 7, 15 ], [ 483, 585, 8, 15 ], [ 492, 585, 288, 15 ], [ 788, 585, 8, 15 ], [ 804, 585, 15, 15 ], [ 826, 585, 31, 15 ], [ 857, 585, 44, 15 ], [ 120, 612, 328, 15 ], [ 454, 612, 20, 15 ], [ 476, 612, 424, 15 ], [ 120, 639, 139, 15 ], [ 267, 639, 12, 15 ], [ 286, 639, 15, 15 ], [ 307, 639, 12, 15 ], [ 320, 638, 19, 8 ], [ 319, 648, 7, 8 ], [ 348, 639, 315, 15 ], [ 670, 639, 12, 15 ], [ 689, 639, 20, 26 ], [ 715, 639, 19, 15 ], [ 735, 639, 166, 15 ], [ 120, 666, 100, 15 ], [ 228, 666, 19, 15 ], [ 248, 666, 183, 15 ], [ 438, 666, 12, 15 ], [ 451, 666, 7, 15 ], [ 459, 666, 8, 15 ], [ 468, 666, 432, 15 ], [ 120, 694, 190, 15 ], [ 317, 694, 12, 15 ], [ 335, 694, 15, 15 ], [ 356, 694, 19, 15 ], [ 383, 694, 44, 15 ], [ 434, 694, 8, 15 ], [ 449, 694, 15, 26 ], [ 470, 694, 9, 15 ], [ 480, 694, 34, 15 ], [ 516, 694, 5, 15 ], [ 145, 721, 468, 15 ], [ 623, 721, 20, 15 ], [ 655, 721, 85, 15 ], [ 742, 720, 19, 8 ], [ 741, 729, 7, 8 ], [ 762, 721, 5, 15 ], [ 785, 721, 116, 15 ], [ 120, 748, 780, 15 ], [ 120, 775, 780, 15 ], [ 120, 802, 696, 15 ], [ 145, 829, 330, 15 ], [ 476, 829, 424, 15 ], [ 120, 856, 446, 15 ], [ 574, 856, 9, 15 ], [ 591, 856, 31, 15 ], [ 629, 856, 10, 15 ], [ 639, 856, 261, 15 ], [ 120, 883, 574, 15 ], [ 701, 884, 18, 13 ], [ 726, 883, 28, 15 ], [ 755, 883, 14, 15 ], [ 773, 883, 9, 15 ], [ 783, 883, 5, 15 ], [ 792, 884, 13, 10 ], [ 805, 883, 95, 15 ], [ 120, 910, 132, 15 ], [ 259, 911, 14, 13 ], [ 274, 908, 6, 10 ], [ 287, 910, 15, 15 ], [ 308, 910, 10, 26 ], [ 318, 910, 14, 15 ], [ 334, 908, 6, 10 ], [ 333, 910, 14, 15 ], [ 350, 910, 9, 15 ], [ 360, 910, 23, 15 ], [ 385, 908, 6, 10 ], [ 383, 918, 6, 10 ], [ 392, 910, 10, 26 ], [ 402, 910, 132, 15 ], [ 541, 911, 17, 13 ], [ 559, 908, 6, 10 ], [ 572, 910, 15, 15 ], [ 593, 910, 10, 26 ], [ 603, 910, 9, 15 ], [ 612, 910, 25, 15 ], [ 639, 910, 12, 15 ], [ 655, 910, 9, 15 ], [ 665, 910, 10, 26 ], [ 675, 910, 226, 15 ], [ 120, 937, 59, 15 ], [ 179, 937, 6, 15 ], [ 186, 937, 7, 15 ], [ 194, 937, 20, 15 ], [ 219, 937, 15, 15 ], [ 238, 938, 13, 10 ], [ 252, 937, 16, 15 ], [ 274, 937, 15, 26 ], [ 294, 937, 20, 15 ], [ 314, 937, 386, 15 ], [ 496, 978, 9, 15 ], [ 394, 407, 12, 15 ], [ 407, 405, 19, 8 ], [ 406, 416, 7, 8 ], [ 433, 407, 85, 15 ], [ 542, 407, 19, 15 ], [ 568, 407, 15, 15 ], [ 588, 407, 38, 15 ], [ 876, 407, 25, 15 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 2, 2, 2, 2, 2, 2, 2, 2 ]
dca29c2bc60ea196ee44b3666a8d643e31b3b943b2465c6aba780b9587bb299b
1001.1258.pdf
2
11
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3366
[ "Table of Contents", "and requires amortization of the excess net gain or loss that exceeds the corridor over the average remaining service periods of active plan", "participants. For our closed plans or plans that are primarily inactive, the average remaining life expectancy of all plan participants (including", "retirees) is used. If our actuarial losses significantly exceed this corridor in the future, significant incremental pension and postretirement costs", "could result. As of year-end 2019, the deferred losses of several of our Canadian plans, as well as those in our U.K. plan, and the deferred gains of", "our U.S. plan, exceeded the 10% corridor.", "The assumed health care cost trend rates represent the rates at which health care costs are assumed to increase and are based on actuarial", "input and consideration of historical and expected experience. We use these trends as a significant assumption in determining our postretirement", "benefit obligation and related costs. Changes in our projections of future health care costs due to general economic conditions and those specific to", "health care will impact this trend rate. An increase in the trend rate would increase our obligation and expense of our postretirement health care", "plan. We believe that our health care cost trend rate assumptions are appropriate; however, significant changes in our assumptions may materially", "affect our postretirement benefit obligations and related costs. As of December 31, 2019, the health care trend rates used were ranging ratably", "from 6.25% in 2020 to 3.57% in 2040, consistent with our health care trend rates ranging ratably from 6.5% in 2019 to 4.5% in 2037 used as of", "December 31, 2018. See Part II—Item 8 Financial Statements and Supplementary Data, ", "Note 15, \"Employee Retirement Plans and Postretirement", "Benefits\"", " for further information.", "Contingencies, environmental and litigation reserves are recorded, when probable, using our best estimate of loss. This estimate, involving", "significant judgment, is based on an evaluation of the range of loss related to such matters and where the amount and range can be reasonably", "estimated. These matters are generally resolved over a number of years and only when one or more future events occur or fail to occur. Following", "our initial determination, we regularly reassess and revise the potential liability related to any pending matters as new information becomes", "available. Unless capitalization is allowed or required by U.S. GAAP, environmental and legal costs are expensed when incurred. We disclose", "pending loss contingencies when the loss is deemed reasonably possible, which requires significant judgment. As a result of the inherent", "uncertainty of these matters, the ultimate conclusion and actual cost of settlement may materially differ from our estimates. We recognize", "contingent gains upon the determination that realization is assured beyond a reasonable doubt, regardless of the perceived probability of a", "favorable outcome prior to achieving that assurance. In the instance of gain contingencies resulting from favorable litigation, due to the numerous", "uncertainties inherent in a legal proceeding, gain contingencies resulting from legal settlements are not recognized in income until cash or other", "forms of payment are received. If significant and probable, we disclose as appropriate.", "See Part I—Item 3 Legal Proceedings and Part II—Item 8 Financial Statements and Supplementary Data, ", "Note 18, \"Commitments and", "Contingencies\"", " for a discussion of our contingencies, environmental and litigation reserves as of December 31, 2019.", "Goodwill is allocated to the reporting unit in which the business that created the goodwill resides. A reporting unit is an operating segment, or", "a business unit one level below that operating segment, for which discrete financial information is prepared and regularly reviewed by segment", "management. As of the date of completion of our 2019 impairment testing, the operations in each of the specific regions within our U.S., Canada,", "Europe and International segments are components based on the availability of discrete financial information and the regular review by segment", "management. Therefore, the components within each respective segment must be evaluated for aggregation to determine if the components have", "similar economic characteristics. As a result, in certain cases, we have aggregated components, within an operating segment, into one reporting", "unit if the specific aggregation criteria under U.S. GAAP is met. Specifically, we have concluded that the components within the U.S., Canada and", "Europe segment each meet the criteria as having similar economic characteristics and therefore have aggregated these components into the U.S.,", "Canada and Europe reporting units, respectively. Therefore, the U.S., Canada and Europe reporting units are consistent with our operating", "segments. However, for our India business, the reporting unit is one level below the International operating segment. Any change to the conclusion", "of our reporting units or the aggregation of components within our reporting units, including potential changes resulting from our revitalization", "plan, could result in a different outcome to our annual impairment test. As of the date of our annual impairment test, our significant indefinite-lived", "intangible assets included the ", "Coors ", "and ", "Miller ", "brand families in the U.S., the ", "Coors Light", " distribution rights in Canada, and the ", "Carling ", "and", "Staropramen", " brands in Europe.", "We evaluate the carrying value of our goodwill and indefinite-lived intangible assets for impairment at least annually or when an interim", "triggering event occurs that would indicate that impairment may have taken place. We identified a triggering event requiring an interim", "impairment assessment of the goodwill within our Canada and India reporting units at the end of the third quarter of 2019. Our annual impairment", "test of indefinite-lived intangible assets was performed as of October 1, the first day of the last fiscal quarter. We evaluate our other definite-lived", "intangible assets for impairment when evidence exists that", "61", "Goodwill and Intangible Asset Valuation", "Contingencies, Environmental and Litigation Reserves" ]
[ [ 24, 12, 97, 8 ], [ 24, 39, 959, 55 ], [ 24, 39, 959, 55 ], [ 24, 39, 959, 55 ], [ 24, 39, 959, 55 ], [ 24, 39, 959, 55 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 110, 969, 100 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 250, 962, 122 ], [ 24, 387, 911, 21 ], [ 24, 387, 911, 21 ], [ 24, 387, 911, 21 ], [ 24, 387, 911, 21 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 449, 969, 156 ], [ 24, 620, 967, 55 ], [ 24, 620, 967, 55 ], [ 24, 620, 967, 55 ], [ 24, 620, 967, 55 ], [ 24, 620, 967, 55 ], [ 503, 695, 16, 10 ], [ 24, 424, 291, 10 ], [ 24, 224, 394, 10 ] ]
[ [ 24, 12, 97, 8 ], [ 24, 39, 915, 10 ], [ 24, 51, 935, 10 ], [ 24, 62, 944, 10 ], [ 24, 73, 959, 10 ], [ 24, 84, 276, 10 ], [ 56, 110, 920, 10 ], [ 24, 121, 957, 10 ], [ 24, 132, 969, 10 ], [ 24, 143, 954, 10 ], [ 24, 154, 966, 10 ], [ 24, 166, 943, 10 ], [ 24, 177, 942, 10 ], [ 24, 188, 580, 10 ], [ 605, 188, 379, 10 ], [ 24, 199, 59, 10 ], [ 84, 199, 157, 10 ], [ 56, 250, 913, 10 ], [ 24, 261, 940, 10 ], [ 24, 272, 960, 10 ], [ 24, 284, 922, 10 ], [ 24, 295, 925, 10 ], [ 24, 306, 899, 10 ], [ 24, 317, 908, 10 ], [ 24, 328, 914, 10 ], [ 24, 340, 962, 10 ], [ 24, 351, 953, 10 ], [ 24, 362, 568, 10 ], [ 56, 387, 693, 10 ], [ 750, 387, 186, 10 ], [ 24, 399, 99, 10 ], [ 123, 399, 670, 10 ], [ 56, 449, 937, 10 ], [ 24, 460, 943, 10 ], [ 24, 472, 954, 10 ], [ 24, 483, 952, 10 ], [ 24, 494, 957, 10 ], [ 24, 505, 949, 10 ], [ 24, 516, 958, 10 ], [ 24, 528, 961, 10 ], [ 24, 539, 916, 10 ], [ 24, 550, 969, 10 ], [ 24, 561, 945, 10 ], [ 24, 573, 968, 10 ], [ 24, 584, 200, 10 ], [ 224, 584, 42, 10 ], [ 266, 584, 28, 10 ], [ 295, 584, 43, 10 ], [ 338, 584, 201, 10 ], [ 539, 584, 76, 10 ], [ 616, 584, 255, 10 ], [ 871, 584, 52, 10 ], [ 924, 584, 24, 10 ], [ 24, 595, 85, 10 ], [ 110, 595, 121, 10 ], [ 56, 620, 896, 10 ], [ 24, 631, 896, 10 ], [ 24, 643, 967, 10 ], [ 24, 654, 957, 10 ], [ 24, 665, 386, 10 ], [ 503, 695, 16, 10 ], [ 24, 424, 291, 10 ], [ 24, 224, 394, 10 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 7, 7 ]
3c21af01f4ecb72e06bbca9258da59332125a80a4a04094993cef40cbc43b6bc
0000024545-20-000005_20200212x10k.pdf
62
166
595
842
1,025
1,025
sec_filings
financial_reports
3367
[ "--relay-log", "--relay-log-index", "--relay-log-purge", "--relay-log-recovery", "--relay-log-space-limit", "--reload", "--remap-column", "--remove", "--remove{", "--repair", "--replace", "5826", "Section 4.5.4, “mysqldump — A Database Backup Program”", "Section 4.5.3, “mysqlcheck — A Table Maintenance Program”", "Section 23.4.4, “ndb_mgmd — The NDB Cluster Management Server Daemon”", "Section 23.2.2.4, “Installing NDB Cluster Processes as Windows Services”", "Section 23.4.4, “ndb_mgmd — The NDB Cluster Management Server Daemon”", "Section 23.4.1, “ndbd — The NDB Cluster Data Node Daemon”", "Section 5.1.7, “Server Command Options”", "Section 5.8.2.2, “Starting Multiple MySQL Instances as Windows Services”", "Section 2.3.4.8, “Starting MySQL as a Windows Service”", "Section 23.4.23, “ndb_restore — Restore an NDB Cluster Backup”", "Section 23.1.4, “What is New in NDB Cluster”", "Section 23.5.7.2, “Adding NDB Cluster Data Nodes Online: Basic procedure”", "Section 23.5.7.3, “Adding NDB Cluster Data Nodes Online: Detailed Example”", "Section 23.2.4, “Initial Startup of NDB Cluster”", "Section 23.2.2.3, “Initial Startup of NDB Cluster on Windows”", "Section 23.1.7.10, “Limitations Relating to Multiple NDB Cluster Nodes”", "Section 23.3.3, “NDB Cluster Configuration Files”", "Section 23.4.4, “ndb_mgmd — The NDB Cluster Management Server Daemon”", "Section 23.5.5, “Performing a Rolling Restart of an NDB Cluster”", "Section 17.1.6.3, “Replica Server Options and Variables”", "Section 17.2.2.3, “Startup Options and Replication Channels”", "Section 17.4.2, “Handling an Unexpected Halt of a Replica”", "Section 17.1.6.3, “Replica Server Options and Variables”", "Section 17.5.1.34, “Replication and Transaction Inconsistencies”", "Section 13.7.7.35, “SHOW REPLICA | SLAVE STATUS Statement”", "Section 5.1.19, “The Server Shutdown Process”", "Section 17.1.6.3, “Replica Server Options and Variables”", "Section 17.2.2.3, “Startup Options and Replication Channels”", "Section 17.2.2.3, “Startup Options and Replication Channels”", "Section 18.5.6, “Using MySQL Enterprise Backup with Group Replication”" ]
[ [ 140, 95, 116, 17 ], [ 140, 161, 187, 17 ], [ 140, 212, 191, 17 ], [ 140, 262, 225, 17 ], [ 140, 375, 250, 17 ], [ 140, 441, 88, 17 ], [ 140, 601, 182, 17 ], [ 140, 667, 101, 17 ], [ 140, 795, 111, 17 ], [ 140, 845, 83, 17 ], [ 140, 896, 100, 17 ], [ 60, 964, 37, 11 ], [ 140, 918, 476, 11 ], [ 140, 867, 489, 11 ], [ 140, 816, 618, 11 ], [ 140, 688, 618, 89 ], [ 140, 688, 618, 89 ], [ 140, 688, 618, 89 ], [ 140, 688, 618, 89 ], [ 140, 688, 618, 89 ], [ 140, 688, 618, 89 ], [ 140, 622, 522, 27 ], [ 140, 622, 522, 27 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 463, 618, 120 ], [ 140, 397, 480, 27 ], [ 140, 397, 480, 27 ], [ 140, 284, 526, 74 ], [ 140, 284, 526, 74 ], [ 140, 284, 526, 74 ], [ 140, 284, 526, 74 ], [ 140, 284, 526, 74 ], [ 140, 233, 448, 11 ], [ 140, 183, 480, 11 ], [ 140, 117, 573, 27 ], [ 140, 117, 573, 27 ] ]
[ [ 140, 95, 116, 17 ], [ 140, 161, 187, 17 ], [ 140, 212, 191, 17 ], [ 140, 262, 225, 17 ], [ 140, 375, 250, 17 ], [ 140, 441, 88, 17 ], [ 140, 601, 182, 17 ], [ 140, 667, 101, 17 ], [ 140, 795, 111, 17 ], [ 140, 845, 83, 17 ], [ 140, 896, 100, 17 ], [ 60, 964, 37, 11 ], [ 140, 918, 476, 11 ], [ 140, 867, 489, 11 ], [ 140, 816, 618, 11 ], [ 140, 688, 579, 11 ], [ 140, 704, 618, 11 ], [ 140, 719, 500, 11 ], [ 140, 735, 339, 11 ], [ 140, 750, 580, 11 ], [ 140, 766, 447, 11 ], [ 140, 622, 522, 11 ], [ 140, 638, 364, 11 ], [ 140, 463, 595, 11 ], [ 140, 478, 605, 11 ], [ 140, 494, 369, 11 ], [ 140, 509, 479, 11 ], [ 140, 525, 556, 11 ], [ 140, 540, 392, 11 ], [ 140, 556, 618, 11 ], [ 140, 572, 505, 11 ], [ 140, 397, 448, 11 ], [ 140, 412, 480, 11 ], [ 140, 284, 466, 11 ], [ 140, 300, 448, 11 ], [ 140, 315, 505, 11 ], [ 140, 331, 526, 11 ], [ 140, 346, 382, 11 ], [ 140, 233, 448, 11 ], [ 140, 183, 480, 11 ], [ 140, 117, 480, 11 ], [ 140, 132, 573, 11 ] ]
[ 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 7, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
1900a7183fd840a317f39ffa0ecf22405b028ebdc4428a95decc104f0e7de003
refman-8.0-en.pdf
5,855
6,228
612
792
1,025
1,025
manuals
manuals
3368
[ "All 3/8 Harken Big bullet blocks", ". All 5/16 New England fuzzy 3 strand dacron hallyards and mainsheet. Used old cheek ", "blocks for 2:1 outhauls on boom and gaff.", "Eight Optimist dinghy 48 liter airbags", " below decks (almost 800 lb. of floatation by my calculation). I'm thinking of ", "adding a belt pack manually inflatable PFD to the masthead with its rip cord extending down the mast face for ", "antiturtling protection.", "¾ inch plywood floor", " between the mast and the centerboard trunk below. Group 27 gell battery just aft of the mast. ", "Wiring run aft to a 12 V trolling motor socket mounted in the center of the transom inspection port. Additional 25 lb. of ", "trim ballast forward. The boat really slows down if she's allowed to bury her stern. Sail her level fore and aft. I used my ", "old mainsheet tackle for a boom vang. Great for sail draft control, especially with the sail reefed. Also a great help broad ", "reaching and running.", "Vang not useable", " with the forward bimini up. It's easily removed with fast pins. I removed those wire bails from the ", "sides of the mast stub (what good/purpose were they anyway?) and added 5 inch cleats port and starboard where the bails ", "were. I cleat the halyards off there now, and can store the coiled halyards hanging from the cleats, out of the cockpit. I still ", "use halyard turning blocks at the mast base. I just secure them to the cleats above.", "I", "ditched the plastic goal posts on the trailer, and replaced them with side bunk guides, which make getting the boat ", "centered easy, even in a cross wind. I changed the 2x4 trailer bunks for 2x6's which are a foot longer in the front. One of ", "the original 2x4's bowed, forcing its front end into the hull. I rewired the trailer with all LED lights. Most often, I launch ", "\"hubs dry,” with water only covering the lower part of the tires. Be sure to slowly ease the boat back into the water using ", "the winch to control the descent. For recovery, it helps to pretilt the trailer. I wedge a plastic wheel chock into the gap ", "which opens above the trailer tongue when the frame tilts.", "Positive locking seat latches", " with snap hooks to lock them. Here's my replacement seat latch: ", "You can get a similar item from Hamilton Marine for about $15 each.", "On my hatch lid, I have only a thin nut, secured with blue Loc Tite. The bolt end is ground flush with the nut using a ", "Dremel tool with a grinding disc.", "I", "used flat washers and nylon insert lock nuts on the other two screws. I also ground off any excess bolt flush with the nut ", "using the Dremel tool, so I wouldn't hang my sleeve or skin on the exposed bolt while reaching in for gear. ", "I", "used a simple bronze snap hook to secure the cam lock. I have a small lanyard tied to the snap hook, and the other end is ", "pinned under the lower part of the latch, between the two lower screws. (Not shown in my photo) ", "he green hull pix I took at the factory in order to position my bracket and ladder. The white hull is #29 with the new ", "ladder and motor mount in place. PC#29 came with a fixed mount. I replaced it with the retractable mount. As I recall, ", "T ", "71", "PostedBy: George Haycraft,Former owner ofPicnic Cat #29 ", "Installing Swim Ladder and Motor Bracket", "Weather seal under the hatch lids" ]
[ [ 84, 93, 858, 27 ], [ 84, 93, 858, 27 ], [ 84, 93, 858, 27 ], [ 84, 150, 828, 41 ], [ 84, 150, 828, 41 ], [ 84, 150, 828, 41 ], [ 84, 150, 828, 41 ], [ 84, 200, 827, 13 ], [ 84, 200, 827, 13 ], [ 84, 214, 841, 55 ], [ 84, 214, 841, 55 ], [ 84, 214, 841, 55 ], [ 84, 214, 841, 55 ], [ 84, 278, 858, 55 ], [ 84, 278, 858, 55 ], [ 84, 278, 858, 55 ], [ 84, 278, 858, 55 ], [ 84, 278, 858, 55 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 342, 845, 83 ], [ 84, 433, 679, 13 ], [ 84, 433, 679, 13 ], [ 84, 697, 482, 13 ], [ 84, 724, 819, 27 ], [ 84, 724, 819, 27 ], [ 84, 760, 851, 27 ], [ 84, 760, 851, 27 ], [ 84, 760, 851, 27 ], [ 84, 795, 856, 27 ], [ 84, 795, 856, 27 ], [ 84, 795, 856, 27 ], [ 84, 889, 856, 34 ], [ 84, 889, 856, 34 ], [ 84, 889, 856, 34 ], [ 504, 957, 17, 13 ], [ 84, 876, 486, 14 ], [ 84, 839, 485, 20 ], [ 84, 128, 264, 13 ] ]
[ [ 84, 93, 246, 13 ], [ 331, 93, 611, 13 ], [ 84, 107, 284, 13 ], [ 84, 150, 297, 13 ], [ 382, 150, 530, 13 ], [ 84, 164, 777, 13 ], [ 84, 178, 161, 13 ], [ 84, 200, 164, 13 ], [ 249, 200, 662, 13 ], [ 84, 214, 833, 13 ], [ 84, 228, 836, 13 ], [ 84, 242, 841, 13 ], [ 84, 256, 155, 13 ], [ 84, 278, 134, 13 ], [ 218, 278, 691, 13 ], [ 84, 292, 852, 13 ], [ 84, 306, 858, 13 ], [ 84, 320, 577, 13 ], [ 84, 342, 6, 13 ], [ 94, 342, 805, 13 ], [ 84, 356, 839, 13 ], [ 84, 370, 844, 13 ], [ 84, 384, 845, 13 ], [ 84, 398, 824, 13 ], [ 84, 412, 407, 13 ], [ 84, 433, 222, 13 ], [ 306, 433, 456, 13 ], [ 84, 697, 482, 13 ], [ 84, 724, 819, 13 ], [ 84, 738, 228, 13 ], [ 84, 760, 6, 13 ], [ 94, 760, 841, 13 ], [ 84, 774, 741, 13 ], [ 84, 795, 6, 13 ], [ 94, 795, 846, 13 ], [ 84, 810, 679, 13 ], [ 109, 894, 812, 13 ], [ 109, 908, 831, 13 ], [ 84, 889, 35, 34 ], [ 504, 957, 17, 13 ], [ 84, 876, 486, 14 ], [ 84, 839, 485, 20 ], [ 84, 128, 264, 13 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 7, 7, 7 ]
c0b8a9d541ea7d9c975bf0efcaec8d5be2619fa8d001f015614beb7f32249f25
Sailingmanual.pdf
78
153
612
792
1,025
1,025
manuals
manuals
3369
[ "41" ]
[ [ 503, 394, 16, 10 ] ]
[ [ 503, 394, 16, 10 ] ]
[ 4 ]
799172c9f65ad4c34aa39e557eaad88c2604252795f7c86c95d359cb43258beb
0000003570-21-000039_20210223x10k.pdf
42
145
595
842
1,025
1,025
sec_filings
financial_reports
3370
[ "Figure 1-97. ", "The blade tip speed of this helicopter is approximately ", "300 knots. If the helicopter is moving forward at 100 knots, the ", "relative windspeed on the advancing side is 400 knots. On the ", "retreating side, it is only 200 knots. This difference in speed causes ", "a dissymetry of lift.", "Figure 1-98. ", "Fully articulated rotor system.", "Figure 1-99. ", "Five-blade articulated main rotor with elastomeric ", "bearings. ", "Numerous designs and variations on the three types of main ", "rotor systems exist. Engineers continually search for ways to ", "reduce vibration and noise caused by the rotating parts of the ", "helicopter. Toward that end, the use of elastomeric bearings ", "in main rotor systems is increasing. These polymer bearings ", "have the ability to deform and return to their original shape. ", "As such, they can absorb vibration that would normally be ", "transferred by steel bearings. They also do not require regular ", "lubrication, which reduces maintenance.", "Some modern helicopter main rotors have been designed ", "with flextures. These are hubs and hub components that are ", "made out of advanced composite materials. They are designed ", "to take up the forces of blade hunting and dissymmetry of ", "down. This lead-lag, drag, or hunting movement as it is ", "called is in response to the Coriolis effect during rotational ", "speed changes. When first starting to spin, the blades lag ", "until centrifugal force is fully developed. Once rotating, a ", "reduction in speed causes the blades to lead the main rotor ", "hub until forces come into balance. Constant fluctuations in ", "rotor blade speeds cause the blades to “hunt.” They are free ", "to do so in a fully articulating system due to being mounted ", "on the vertical drag hinge. ", "One or more horizontal hinges provide for flapping on a ", "fully articulated rotor system. Also, the feathering hinge ", "allows blade pitch changes by permitting rotation about the ", "spanwise axis. Various dampers and stops can be found on ", "different designs to reduce shock and limit travel in certain ", "directions. ", "Figure 1-98", " shows a fully articulated main rotor ", "system with the features discussed. ", "lift by flexing. As such, many hinges and bearings can be ", "eliminated from the traditional main rotor system. The result ", "is a simpler rotor mast with lower maintenance due to fewer ", "moving parts. Often designs using flextures incorporate ", "elastomeric bearings. ", "[Figure 1-99]", "Ordinarily, helicopters have between two and seven main ", "rotor blades. These rotors are usually made of a composite ", "structure. The large rotating mass of the main rotor blades ", "of a helicopter produce torque. This torque increases with ", "engine power and tries to spin the fuselage in the opposite ", "direction. The tail boom and tail rotor, or antitorque rotor, ", "counteract this torque effect. ", "[Figure 1-100]", " Controlled ", "with foot pedals, the countertorque of the tail rotor must be ", "Antitorque System", "B", "l", "a", "d", "e", "r", "o", "$_{t}$a", "t", "$_{i}$o", "n", "B", "l", "a", "d", "e", "r", "o", "t", "a", "t", "i", "o", "n", "Relative wind", "Forward Flight 100 knots", "Relative wind", "Direction of Flight", "Advancing Side", "Retreating Side", "Blade tip", "speed ", "plus", "helicopter", "speed", "(400 knots)", "Blade tip", "speed ", "minus", "helicopter", "speed", "(200 knots)", "Pitch horn", "Drag hinge", "Flap hinge", "Damper", "Pitch change axis (feathering)", "1-45" ]
[ [ 124, 308, 415, 79 ], [ 124, 308, 415, 79 ], [ 124, 308, 415, 79 ], [ 124, 308, 415, 79 ], [ 124, 308, 415, 79 ], [ 124, 308, 415, 79 ], [ 553, 356, 271, 14 ], [ 553, 356, 271, 14 ], [ 554, 894, 414, 30 ], [ 554, 894, 414, 30 ], [ 554, 894, 414, 30 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 707, 413, 147 ], [ 124, 873, 415, 64 ], [ 124, 873, 415, 64 ], [ 124, 873, 415, 64 ], [ 124, 873, 415, 64 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 412, 415, 147 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 124, 578, 415, 114 ], [ 553, 391, 415, 81 ], [ 553, 391, 415, 81 ], [ 553, 391, 415, 81 ], [ 553, 391, 415, 81 ], [ 553, 391, 415, 81 ], [ 553, 391, 415, 81 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 507, 415, 131 ], [ 553, 489, 153, 17 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 123, 58, 410, 241 ], [ 552, 59, 411, 287 ], [ 552, 59, 411, 287 ], [ 552, 59, 411, 287 ], [ 552, 59, 411, 287 ], [ 552, 59, 411, 287 ], [ 928, 964, 34, 16 ] ]
[ [ 124, 309, 79, 13 ], [ 203, 308, 332, 13 ], [ 124, 325, 414, 13 ], [ 124, 341, 415, 13 ], [ 124, 358, 412, 13 ], [ 124, 375, 119, 13 ], [ 553, 357, 81, 13 ], [ 635, 356, 189, 13 ], [ 554, 894, 84, 13 ], [ 639, 894, 330, 13 ], [ 554, 910, 62, 13 ], [ 124, 707, 412, 15 ], [ 124, 724, 411, 15 ], [ 124, 740, 412, 15 ], [ 124, 757, 412, 15 ], [ 124, 773, 412, 15 ], [ 124, 790, 412, 15 ], [ 124, 806, 413, 15 ], [ 124, 823, 412, 15 ], [ 124, 840, 278, 15 ], [ 124, 873, 415, 15 ], [ 124, 889, 413, 15 ], [ 124, 906, 412, 15 ], [ 124, 922, 414, 15 ], [ 124, 412, 415, 15 ], [ 124, 429, 413, 15 ], [ 124, 446, 415, 15 ], [ 124, 462, 414, 15 ], [ 124, 479, 413, 15 ], [ 124, 495, 412, 15 ], [ 124, 512, 413, 15 ], [ 124, 528, 413, 15 ], [ 124, 545, 184, 15 ], [ 124, 578, 415, 15 ], [ 124, 595, 415, 15 ], [ 124, 611, 413, 15 ], [ 124, 628, 413, 15 ], [ 124, 644, 413, 15 ], [ 124, 661, 76, 15 ], [ 200, 661, 82, 15 ], [ 283, 661, 253, 15 ], [ 124, 677, 246, 15 ], [ 553, 391, 414, 15 ], [ 553, 407, 412, 15 ], [ 553, 424, 412, 15 ], [ 553, 441, 415, 15 ], [ 553, 457, 150, 15 ], [ 704, 457, 96, 15 ], [ 553, 507, 415, 15 ], [ 553, 524, 413, 15 ], [ 553, 541, 414, 15 ], [ 553, 557, 414, 15 ], [ 553, 574, 414, 15 ], [ 553, 590, 414, 15 ], [ 553, 607, 216, 15 ], [ 770, 607, 110, 15 ], [ 880, 607, 89, 15 ], [ 553, 623, 413, 15 ], [ 553, 489, 153, 17 ], [ 336, 246, 4, 10 ], [ 343, 245, 0, 10 ], [ 346, 244, 2, 10 ], [ 352, 243, 1, 11 ], [ 357, 241, 0, 11 ], [ 363, 239, 3, 10 ], [ 367, 237, 1, 11 ], [ 369, 233, 7, 10 ], [ 376, 232, 5, 9 ], [ 377, 228, 8, 10 ], [ 385, 225, 5, 10 ], [ 258, 140, 6, 10 ], [ 260, 138, 8, 7 ], [ 264, 135, 5, 10 ], [ 269, 131, 4, 10 ], [ 274, 128, 3, 10 ], [ 281, 125, 3, 10 ], [ 287, 122, 0, 11 ], [ 290, 121, 2, 10 ], [ 295, 120, 1, 11 ], [ 299, 119, 0, 10 ], [ 302, 118, 1, 10 ], [ 305, 117, 3, 10 ], [ 311, 117, 4, 10 ], [ 502, 158, 16, 62 ], [ 249, 275, 163, 13 ], [ 141, 158, 16, 62 ], [ 267, 64, 118, 13 ], [ 405, 108, 90, 12 ], [ 162, 108, 88, 12 ], [ 427, 151, 53, 13 ], [ 427, 164, 41, 13 ], [ 427, 177, 25, 13 ], [ 427, 189, 59, 13 ], [ 427, 202, 37, 13 ], [ 427, 215, 69, 13 ], [ 164, 151, 53, 13 ], [ 164, 164, 41, 13 ], [ 164, 177, 36, 13 ], [ 164, 189, 59, 13 ], [ 164, 202, 37, 13 ], [ 164, 215, 69, 13 ], [ 875, 133, 62, 13 ], [ 872, 195, 67, 13 ], [ 599, 193, 64, 13 ], [ 635, 263, 49, 13 ], [ 585, 77, 182, 13 ], [ 928, 964, 34, 16 ] ]
[ 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 4 ]
55ea6d0b908596a04ae42dd8d2c8cd9f82a9a3715bb930c91545d71e1fa50d76
amt_airframe_hb_vol_1.pdf
70
584
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3371
[ "Periodic inspection of the shock mounts is required, and ", "defective mounts should be replaced with the proper type. ", "The following factors to observe during the inspection are: ", "If the mount is too stiff, it may not provide adequate ", "protection against the shock of landing. If the shock mount is ", "not stiff enough, it may allow prolonged vibration following ", "an initial shock.", "Shock-absorbing materials commonly used in shock ", "mounts are usually electrical insulators. For this reason, ", "each electronic unit mounted with shock mounts must be ", "electrically bonded to a structural member of the aircraft to ", "provide a current path to ground. This is accomplished by ", "secure attachment of a tinned copper wire braid from the ", "component, across the mount, to the aircraft structure as ", "shown in ", "Figure 11-159", ". Occasional bonding is accomplished ", "with solid aluminum or copper material where a short flexible ", "strap is not possible.", "and reliability of avionics components. Rotating electrical ", "devices, switching devices, ignition systems, propeller ", "control systems, AC power lines, and voltage regulators ", "all produce potential damaging fields. Shielding wires to ", "electric components and ignition systems dissipates radio ", "frequency noise energy. Instead of radiating into space, the ", "braided conductive shielding guides unwanted current flows ", "to ground. To prevent the build-up of electrical potential, all ", "electrical components should also be bonded to the aircraft ", "structure (ground).", "Isolation is another practical method of radio frequency ", "suppression to prevent interference. This involves separating ", "the source of the noise from the input circuits of the affected ", "equipment. In some cases, noise in a receiver may be entirely ", "eliminated simply by moving the antenna lead-in wire just ", "a few inches away from a noise source. On other occasions, ", "when shielding and isolation are not effective, a filter may need ", "to be installed in the input circuit of an affected component.", "The aircraft surface can become highly charged with static ", "electricity while in flight. Measures are required to eliminate ", "the build-up and radiation of unwanted electrical charges. ", "One of the most important measures taken to eliminate ", "unwanted electrical charges which may damage or interfere ", "with avionics equipment is bonding. Charges flowing in ", "paths of variable resistance due to such causes as intermittent ", "contact from vibration or the movement of a control surface ", "produce electrical disturbances (noise) in avionics. Bonding ", "provides the necessary electric connection between metallic ", "parts of an aircraft to prevent variable resistance in the ", "airframe. It provides a low-impedance ground return which ", "minimizes interference from static electricity charges.", "Suppression of unwanted electromagnetic fields and ", "electrostatic interference is essential on all aircraft. In ", "communication radios, this is noticeable as audible noise. ", "In other components, the effects may not be audible but ", "pose a threat to proper operation. Large discharges of static ", "electricity can permanently damage the sensitive solid-state ", "microelectronics found in nearly all modern avionics.", "Many components of an aircraft are possible sources of ", "electrical interference which can deteriorate the performance ", "All metal parts of the aircraft should be bonded to prevent ", "the development of electrical potential build-up. Bonding ", "also provides the low resistance return path for single-", "wire electrical systems. Bonding jumpers and clamps are ", "examples of bonding connectors. Jumpers should be as short ", "as possible. Be sure finishes are removed in the contact area ", "of a bonding device so that metal-to-metal contact exists. ", "Resistance should not exceed .003 ohm. When a jumper ", "is used only to reduce radio frequency noise and is not ", "for current carrying purposes, a resistance of 0.01 ohm is ", "satisfactory. ", "Static dischargers, or wicks, are installed on aircraft to ", "reduce radio receiver interference. This interference is ", "caused by corona discharge emitted from the aircraft as a ", "result of precipitation static. Corona occurs in short pulses ", "11-74", "Figure 11-159. ", "A bonding jumper is used to ground an equipment ", "rack and avionics chassis around the non-conductive shock mount ", "material. ", "Static Discharge Wicks", "Shielding ", "Reducing Radio Interference", "Bonding ", "Isolation", "3. ", "Overall rigidity of the mount. ", "2. ", "Stiffness and resiliency of the material; and ", "1. ", "Deterioration of the shock-absorbing material; ", "Bonding jumper", "Shock mount" ]
[ [ 62, 56, 415, 48 ], [ 62, 56, 415, 48 ], [ 62, 56, 415, 48 ], [ 62, 190, 415, 64 ], [ 62, 190, 415, 64 ], [ 62, 190, 415, 64 ], [ 62, 190, 415, 64 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 62, 273, 416, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 56, 415, 164 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 256, 415, 131 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 491, 422, 415, 213 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 478, 416, 114 ], [ 62, 628, 415, 31 ], [ 62, 628, 415, 31 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 654, 415, 180 ], [ 491, 870, 415, 64 ], [ 491, 870, 415, 64 ], [ 491, 870, 415, 64 ], [ 491, 870, 415, 64 ], [ 62, 964, 44, 16 ], [ 62, 898, 413, 46 ], [ 62, 898, 413, 46 ], [ 62, 898, 413, 46 ], [ 62, 898, 413, 46 ], [ 491, 851, 189, 17 ], [ 62, 609, 82, 17 ], [ 62, 453, 280, 20 ], [ 491, 403, 74, 17 ], [ 491, 237, 70, 17 ], [ 77, 157, 239, 15 ], [ 77, 157, 239, 15 ], [ 77, 135, 335, 15 ], [ 77, 135, 335, 15 ], [ 77, 112, 355, 15 ], [ 77, 112, 355, 15 ], [ 60, 677, 412, 210 ], [ 60, 677, 412, 210 ] ]
[ [ 62, 56, 415, 15 ], [ 62, 73, 414, 15 ], [ 62, 90, 409, 15 ], [ 62, 190, 415, 15 ], [ 62, 207, 412, 15 ], [ 62, 223, 412, 15 ], [ 62, 240, 109, 15 ], [ 62, 273, 416, 15 ], [ 62, 289, 415, 15 ], [ 62, 306, 415, 15 ], [ 62, 323, 413, 15 ], [ 62, 339, 414, 15 ], [ 62, 356, 415, 15 ], [ 62, 372, 415, 15 ], [ 62, 389, 63, 15 ], [ 125, 389, 96, 15 ], [ 221, 389, 252, 15 ], [ 62, 405, 412, 15 ], [ 62, 422, 140, 15 ], [ 491, 56, 414, 15 ], [ 491, 73, 415, 15 ], [ 491, 90, 415, 15 ], [ 491, 106, 415, 15 ], [ 491, 123, 415, 15 ], [ 491, 139, 413, 15 ], [ 491, 156, 412, 15 ], [ 491, 172, 412, 15 ], [ 491, 189, 413, 15 ], [ 491, 205, 129, 15 ], [ 491, 256, 415, 15 ], [ 491, 272, 413, 15 ], [ 491, 289, 413, 15 ], [ 491, 305, 412, 15 ], [ 491, 322, 415, 15 ], [ 491, 338, 413, 15 ], [ 491, 355, 411, 15 ], [ 491, 372, 401, 15 ], [ 491, 422, 413, 15 ], [ 491, 438, 411, 15 ], [ 491, 455, 414, 15 ], [ 491, 472, 415, 15 ], [ 491, 488, 412, 15 ], [ 491, 505, 415, 15 ], [ 491, 521, 412, 15 ], [ 491, 538, 412, 15 ], [ 491, 554, 412, 15 ], [ 491, 571, 412, 15 ], [ 491, 587, 415, 15 ], [ 491, 604, 413, 15 ], [ 491, 621, 371, 15 ], [ 62, 478, 416, 15 ], [ 62, 495, 415, 15 ], [ 62, 511, 414, 15 ], [ 62, 528, 415, 15 ], [ 62, 545, 413, 15 ], [ 62, 561, 412, 15 ], [ 62, 578, 369, 15 ], [ 62, 628, 415, 15 ], [ 62, 645, 412, 15 ], [ 491, 654, 414, 15 ], [ 491, 670, 415, 15 ], [ 491, 687, 409, 15 ], [ 491, 703, 415, 15 ], [ 491, 720, 412, 15 ], [ 491, 736, 412, 15 ], [ 491, 753, 415, 15 ], [ 491, 770, 415, 15 ], [ 491, 786, 415, 15 ], [ 491, 803, 415, 15 ], [ 491, 819, 88, 15 ], [ 491, 870, 415, 15 ], [ 491, 886, 415, 15 ], [ 491, 903, 414, 15 ], [ 491, 919, 414, 15 ], [ 62, 964, 44, 16 ], [ 62, 898, 97, 13 ], [ 159, 898, 315, 13 ], [ 62, 914, 413, 13 ], [ 62, 931, 59, 13 ], [ 491, 851, 189, 17 ], [ 62, 609, 82, 17 ], [ 62, 453, 280, 20 ], [ 491, 403, 74, 17 ], [ 491, 237, 70, 17 ], [ 77, 157, 17, 15 ], [ 108, 157, 208, 15 ], [ 77, 135, 17, 15 ], [ 108, 135, 304, 15 ], [ 77, 112, 17, 15 ], [ 108, 112, 324, 15 ], [ 344, 737, 96, 13 ], [ 95, 760, 80, 13 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 0, 0, 0, 0, 7, 7, 7, 7, 7, 3, 3, 3, 3, 3, 3, 6, 6 ]
34ae52490a1f5434a9663def53ccb400d6853f5e5242f5de43842cc2427fe588
amt_airframe_hb_vol_2.pdf
183
564
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3372
[ "Table of Contents", "ITEM 8. FINANCIAL STATEMENTS AND SUPPLEMENTARY DATA", "CNA Financial Corporation", "Consolidated Statements of Operations", "Years ended December 31", "The accompanying Notes are an integral part of these Consolidated Financial Statements.", "54", "(In millions, except per share data)", "2018", "2017", "2016", "Revenues", "Net earned premiums", "$", "7,312", "$", "6,988", "$", "6,924", "Net investment income", "1,817", "2,034", "1,988", "Net realized investment (losses) gains:", "Other-than-temporary impairment losses", "(21", ")", "(14", ")", "(81", ")", "Other net realized investment (losses) gains", "(31)", "107", "131", "Net realized investment (losses) gains", "(52", ")", "93", "50", "Non-insurance warranty revenue (Notes A and R)", "1,007", "390", "361", "Other revenues", "50", "37", "43", "Total revenues", "10,134", "9,542", "9,366", "Claims, Benefits and Expenses", "Insurance claims and policyholders’ benefits", "5,572", "5,310", "5,283", "Amortization of deferred acquisition costs", "1,335", "1,233", "1,235", "Non-insurance warranty expense (Notes A and R)", "923", "299", "271", "Other operating expenses", "1,202", "1,229", "1,281", "Interest", "138", "161", "159", "Total claims, benefits and expenses", "9,170", "8,232", "8,229", "Income before income tax", "964", "1,310", "1,137", "Income tax expense", "(151", ")", "(411", ")", "(278", ")", "Net income", "$", "813", "$", "899", "$", "859", "Basic earnings per share", "$", "2.99", "$", "3.32", "$", "3.18", "Diluted earnings per share", "$", "2.98", "$", "3.30", "$", "3.17", "Weighted Average Outstanding Common Stock and Common Stock Equivalents", "Basic", "271.5", "271.1", "270.4", "Diluted", "272.5", "272.1", "271.1" ]
[ [ 24, 12, 115, 10 ], [ 24, 37, 585, 13 ], [ 24, 61, 195, 10 ], [ 24, 72, 283, 10 ], [ 26, 100, 159, 9 ], [ 216, 555, 591, 10 ], [ 503, 596, 16, 10 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ], [ 22, 114, 977, 431 ] ]
[ [ 24, 12, 115, 10 ], [ 24, 37, 585, 13 ], [ 24, 61, 195, 10 ], [ 24, 72, 283, 10 ], [ 26, 100, 159, 9 ], [ 216, 555, 591, 10 ], [ 503, 596, 16, 10 ], [ 26, 115, 194, 8 ], [ 671, 115, 30, 9 ], [ 798, 115, 30, 9 ], [ 925, 115, 30, 9 ], [ 26, 130, 58, 9 ], [ 36, 145, 121, 8 ], [ 630, 145, 6, 8 ], [ 704, 145, 31, 8 ], [ 757, 145, 6, 8 ], [ 831, 145, 31, 8 ], [ 883, 145, 6, 8 ], [ 957, 145, 31, 8 ], [ 36, 160, 128, 8 ], [ 704, 160, 31, 8 ], [ 831, 160, 31, 8 ], [ 957, 160, 31, 8 ], [ 36, 175, 214, 8 ], [ 52, 189, 226, 8 ], [ 717, 189, 18, 8 ], [ 735, 189, 4, 8 ], [ 844, 189, 18, 8 ], [ 862, 189, 4, 8 ], [ 970, 189, 18, 8 ], [ 988, 189, 4, 8 ], [ 52, 204, 244, 8 ], [ 717, 204, 22, 8 ], [ 841, 204, 20, 8 ], [ 968, 204, 20, 8 ], [ 36, 219, 211, 8 ], [ 717, 219, 18, 8 ], [ 735, 219, 4, 8 ], [ 848, 219, 13, 8 ], [ 975, 219, 13, 8 ], [ 36, 234, 274, 8 ], [ 704, 234, 31, 8 ], [ 841, 234, 20, 8 ], [ 968, 234, 20, 8 ], [ 36, 248, 85, 8 ], [ 721, 248, 13, 8 ], [ 848, 248, 13, 8 ], [ 975, 248, 13, 8 ], [ 26, 263, 82, 8 ], [ 697, 263, 38, 8 ], [ 831, 263, 31, 8 ], [ 957, 263, 31, 8 ], [ 26, 278, 187, 9 ], [ 36, 293, 247, 8 ], [ 704, 293, 31, 8 ], [ 831, 293, 31, 8 ], [ 957, 293, 31, 8 ], [ 36, 308, 232, 8 ], [ 704, 308, 31, 8 ], [ 831, 308, 31, 8 ], [ 957, 308, 31, 8 ], [ 36, 323, 275, 8 ], [ 714, 323, 20, 8 ], [ 841, 323, 20, 8 ], [ 968, 323, 20, 8 ], [ 36, 337, 143, 8 ], [ 704, 337, 31, 8 ], [ 831, 337, 31, 8 ], [ 957, 337, 31, 8 ], [ 36, 352, 43, 8 ], [ 714, 352, 20, 8 ], [ 841, 352, 20, 8 ], [ 968, 352, 20, 8 ], [ 26, 367, 196, 8 ], [ 704, 367, 31, 8 ], [ 831, 367, 31, 8 ], [ 957, 367, 31, 8 ], [ 26, 382, 143, 8 ], [ 714, 382, 20, 8 ], [ 831, 382, 31, 8 ], [ 957, 382, 31, 8 ], [ 26, 396, 109, 8 ], [ 710, 396, 25, 8 ], [ 735, 396, 4, 8 ], [ 837, 396, 25, 8 ], [ 862, 396, 4, 8 ], [ 963, 396, 25, 8 ], [ 988, 396, 4, 8 ], [ 26, 411, 70, 9 ], [ 630, 410, 6, 8 ], [ 714, 410, 20, 8 ], [ 760, 409, 3, 10 ], [ 841, 410, 20, 8 ], [ 886, 409, 3, 10 ], [ 968, 410, 20, 8 ], [ 26, 442, 152, 9 ], [ 630, 441, 6, 8 ], [ 711, 441, 24, 8 ], [ 760, 440, 3, 10 ], [ 838, 441, 24, 8 ], [ 886, 440, 3, 10 ], [ 964, 441, 24, 8 ], [ 26, 473, 164, 9 ], [ 630, 472, 6, 8 ], [ 711, 472, 24, 8 ], [ 760, 471, 3, 10 ], [ 838, 472, 24, 8 ], [ 886, 471, 3, 10 ], [ 964, 472, 24, 8 ], [ 24, 504, 485, 9 ], [ 24, 518, 29, 8 ], [ 704, 518, 31, 8 ], [ 831, 518, 31, 8 ], [ 957, 518, 31, 8 ], [ 24, 535, 40, 8 ], [ 704, 535, 31, 8 ], [ 831, 535, 31, 8 ], [ 957, 535, 31, 8 ] ]
[ 5, 7, 7, 7, 7, 9, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
4fd4fc3ac1a0166531f72ee7a591e9f067b9fd418bdfb830f3f0874d9368d462
0000021175-19-000022_20190213x10k.pdf
53
148
595
842
1,025
1,025
sec_filings
financial_reports
3373
[ "L ", "CSR Initiatives in Business Processes", "Astellas is strongly committed to respecting human rights in every stage of its business processes. Furthermore, ", "we endeavor to ensure compliance with the Pharmaceutical Affairs Act of Japan and other relevant laws and ", "regulations throughout our value chain, from research and development to the provision of product information.", "clInIcAl DEVEloPmEnT (P54)", "GlP", "GcP", "GmP", "N ", "Protection of human rights, privacy and ", "confidentiality of personal information of ", "research subjects, and assurance of reliability", "in clinical trials", "N ", "Ensuring transparency in relationships with ", "medical institutions in clinical trials", "N ", "Disclosure of study information and publication ", "of study results", "PRocUREmEnT (P57)", "The Astellas", "Value Chain", "Par tners", "Suppliers", "Alliance Partners", "Contract Research Organizations", "TEchnoloGy & mAnUFAcTURInG (P56)", "N ", "Measures to prevent", "medical", "malpractice and to improve the ", "distinguishability of pharmaceuticals", "N ", "Introducing universal design to ", "product packaging", "Promote CSR throughout the", "value chain in collaboration with ", "business partners", "N ", "Ethical considerations in research on human subjects and ", "specimens derived from humans", "N ", "Ethical considerations in animal testing", "N ", "Biosafety control", "N ", "Handling", "of intellectual property", "RESEARch (P54)", "QUAlITy AnD RElIABIlITy ASSURAncE (REGUlAToRy AFFAIRS (RA), QUAlITy ASSURAncE (QA),", "Astellas Pharma Inc. ", "_ Annual Report 2014", "52" ]
[ [ 97, 87, 462, 25 ], [ 97, 87, 462, 25 ], [ 97, 153, 830, 55 ], [ 97, 153, 830, 55 ], [ 97, 153, 830, 55 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 2, 222, 1018, 746 ], [ 39, 982, 292, 15 ], [ 39, 982, 292, 15 ], [ 39, 982, 292, 15 ] ]
[ [ 97, 87, 29, 25 ], [ 127, 90, 432, 20 ], [ 97, 153, 830, 14 ], [ 97, 173, 804, 14 ], [ 97, 194, 819, 14 ], [ 670, 420, 222, 15 ], [ 522, 442, 35, 18 ], [ 736, 442, 37, 18 ], [ 734, 576, 41, 18 ], [ 675, 231, 15, 11 ], [ 691, 232, 236, 11 ], [ 692, 246, 238, 11 ], [ 692, 260, 267, 11 ], [ 692, 274, 83, 11 ], [ 675, 290, 15, 11 ], [ 691, 290, 255, 11 ], [ 692, 304, 200, 11 ], [ 675, 320, 15, 11 ], [ 691, 321, 280, 11 ], [ 692, 335, 89, 11 ], [ 704, 656, 153, 15 ], [ 108, 496, 250, 40 ], [ 108, 538, 243, 40 ], [ 108, 823, 176, 40 ], [ 352, 820, 68, 13 ], [ 479, 820, 122, 13 ], [ 353, 853, 241, 13 ], [ 586, 604, 292, 15 ], [ 730, 751, 15, 11 ], [ 746, 751, 116, 11 ], [ 887, 751, 27, 11 ], [ 747, 765, 187, 11 ], [ 747, 779, 211, 11 ], [ 730, 795, 15, 11 ], [ 746, 796, 184, 11 ], [ 747, 810, 111, 11 ], [ 271, 721, 223, 14 ], [ 271, 735, 250, 14 ], [ 271, 750, 136, 14 ], [ 239, 269, 15, 11 ], [ 255, 270, 344, 11 ], [ 256, 284, 193, 11 ], [ 239, 300, 15, 11 ], [ 255, 300, 228, 11 ], [ 239, 316, 15, 11 ], [ 255, 317, 98, 11 ], [ 239, 333, 15, 11 ], [ 255, 333, 41, 11 ], [ 357, 333, 84, 11 ], [ 357, 420, 121, 15 ], [ 465, 548, 550, 15 ], [ 97, 985, 115, 11 ], [ 212, 984, 118, 11 ], [ 39, 982, 21, 15 ] ]
[ 7, 7, 9, 9, 9, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 6, 4, 4, 4 ]
adf6f77d660d4e06272f4082125f5e8c60bd6beeb55ce7aae62195d3d8bda6d7
TSX_4503_2014.pdf
53
172
595
841
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3374
[ "In this article, we study the thermalizability of a system consisting of two atoms in a circular,", "transversely harmonic waveguide in the multimode regime. While showing some signatures of the", "quantum-chaotic behavior, the system fails to reach a thermal equilibrium in a relaxation from", "an initial state, even when the interaction between the atoms is infinitely strong. We relate this", "phenomenon to the previously addressed unattainability of a complete quantum chaos in the", "ˇ", "Seba", "billiard [P.", "ˇ", "Seba, Phys. Rev. Lett.,", "64", ", 1855 (1990)], and we conjecture the absence of a complete", "thermalization to be a generic property of integrable quantum systems perturbed by a non-integrable", "but well localized perturbation.", "PACS numbers: 67.85.-d, 37.10.Gh, 05.45.Mt, 05.70.Ln", "Introduction", ".– The ultracold quantum gases have been", "long proven to be an ideal testbench for studying the", "fundamental properties of quantum systems. One of the", "most interesting and frequently addressed topics is the", "behavior of quantum systems in the vicinity of an inte-", "grable point.", "Experimental results already include the", "suppression of relaxation of the momentum distribution", "[1]", "and the modified decay of coherence [2].", "Note that", "the fully developed quantum chaos with ultracold atoms", "has been investigated in experiments [3].", "Traditionally, the underlying integrable system is rep-", "resented by the Lieb-Liniger gas [4] that is well suited", "to describe the dynamics of Van-der-Waals interacting", "bosons in a monomode atomic guide (see [5] for a re-", "view). The nontrivial integrals of motion there are inti-", "mately related to both the one-dimensional character of", "the atomic motion and to the effectively zero value of the", "two-body interaction range. The causes for lifting inte-", "grability include the virtual excitation of the transverse", "modes during the collision [6] and the coupling between", "two parallel weakly interacting Lieb-Liniger gases [2].", "One would expect that in the", "multimode regime", ", when", "the motion becomes substantially multidimensional, no", "remnants of the former integrals of motion will survive.", "However, in this article we show that for the case of only", "two interacting atoms a strong separation between the", "transverse and longitudinal degrees of freedom remains,", "even in the case of the infinitely strong interaction be-", "tween the atoms. We attribute this effect to the short-", "range nature of the interaction.", "For our system we study both the degree of the eigen-", "state thermalization and the actual thermalization in an", "expansion from a class of realistic initial states.", "The", "eigenstate thermalization [7–9] – the suppression of the", "eigenstate-by-eigenstate variance of quantum expecta-", "tion values of simple observables – provides an ultimate", "The system", ".–", "Consider", "two", "short-range-interacting", "atoms in a circular, transversally harmonic waveguide.", "In this case the center-of-mass and the relative motion", "can be separated. Note that the harmonic approximation", "for the transverse confinement has been proven to model", "real life atom waveguides with high accuracy. Predictions", "of the analogous model involving an infinite waveguide", "[16, 17] has been confirmed by a direct experiment-theory", "comparison of the energies of the quasi-one-dimensional", "dimers [18] and numerical calculations involving anhar-", "We relate the absence of thermalization in our system", "to the previously addressed unattainability of a complete", "quantum chaos in the", "ˇ", "Seba billiard – flat two-dimensional", "rectangular billiard with a zero-range scatterer in the", "middle [11].", "Similarly to our system, the", "ˇ", "Seba billiard", "does show some signatures of the quantum-chaotic be-", "havior, although both the level statistics [12–14] and the", "momentum distributions in individual eigenstates [15]", "show substantial deviations from the quantum chaos pre-", "dictions.", "Both the", "ˇ", "Seba billiard (first suggested and", "solved in Ref. [11]) and our system allow for an exact", "analytic solution, in spite of the absence of a complete", "set of integrals of motion.", "upper bound for a possible deviation of the relaxed value", "of an observable from its thermodynamical expectation,", "for any initial state in principle. However, recently a new", "direction of research has emerged: quantum quench in", "many-body interacting systems [1, 2, 9, 10]. In this class", "of problems, the initial state is inevitably decomposed", "into a large superposition of the eigenstates of the Hamil-", "tonian governing the dynamics, and the discrepancy be-", "tween the result of the relaxation and thermal values is", "expected to be diminished. In our article we show that", "in the case of two short-range-interacting atoms in a har-", "monic waveguide, a complete thermalization can never", "be reached under either scenario.", "arXiv:1001.0225v1 [physics.atom-ph] 1 Jan 2010", "Restricted Thermalization for Two Interacting Atoms in a Multimode Harmonic", "Waveguide", "V.", "A. Yurovsky", "School of Chemistry, Tel Aviv University, 69978 Tel Aviv, Israel", "M.", "Olshanii", "Department of Physics, University of Massachusetts Boston, Boston MA 02125, USA", "(Dated: October 27, 2018)" ]
[ [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 216, 667, 106 ], [ 182, 337, 341, 9 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 376, 410, 152 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 534, 410, 167 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 707, 410, 136 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 90, 849, 410, 90 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 787, 411, 152 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 581, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 530, 376, 410, 198 ], [ 30, 217, 30, 527 ], [ 117, 69, 796, 31 ], [ 117, 69, 796, 31 ], [ 455, 120, 121, 12 ], [ 455, 120, 121, 12 ], [ 289, 135, 452, 10 ], [ 470, 165, 90, 12 ], [ 470, 165, 90, 12 ], [ 220, 180, 590, 10 ], [ 426, 193, 179, 11 ] ]
[ [ 197, 216, 651, 11 ], [ 182, 229, 667, 11 ], [ 182, 243, 667, 11 ], [ 182, 256, 667, 11 ], [ 182, 270, 630, 11 ], [ 818, 267, 7, 11 ], [ 817, 270, 31, 11 ], [ 182, 283, 71, 11 ], [ 259, 280, 7, 11 ], [ 258, 283, 161, 11 ], [ 426, 284, 17, 7 ], [ 443, 283, 405, 11 ], [ 182, 297, 667, 11 ], [ 182, 310, 212, 11 ], [ 182, 337, 341, 9 ], [ 107, 376, 88, 11 ], [ 196, 376, 304, 12 ], [ 90, 391, 410, 12 ], [ 90, 407, 410, 12 ], [ 90, 422, 410, 12 ], [ 90, 438, 410, 12 ], [ 90, 453, 94, 12 ], [ 197, 453, 303, 12 ], [ 90, 469, 410, 12 ], [ 90, 484, 14, 12 ], [ 118, 484, 298, 12 ], [ 428, 484, 72, 12 ], [ 90, 500, 410, 12 ], [ 90, 515, 296, 12 ], [ 107, 534, 393, 12 ], [ 90, 549, 410, 12 ], [ 90, 564, 410, 12 ], [ 90, 580, 410, 12 ], [ 90, 595, 410, 12 ], [ 90, 611, 410, 12 ], [ 90, 626, 410, 12 ], [ 90, 642, 410, 12 ], [ 90, 657, 410, 12 ], [ 90, 673, 410, 12 ], [ 90, 688, 389, 12 ], [ 107, 707, 213, 12 ], [ 325, 707, 127, 11 ], [ 453, 707, 47, 12 ], [ 90, 722, 410, 12 ], [ 90, 738, 410, 12 ], [ 90, 753, 410, 12 ], [ 90, 769, 410, 12 ], [ 90, 784, 410, 12 ], [ 90, 799, 410, 12 ], [ 90, 815, 410, 12 ], [ 90, 830, 229, 12 ], [ 107, 849, 393, 12 ], [ 90, 864, 410, 12 ], [ 90, 880, 365, 12 ], [ 472, 880, 28, 12 ], [ 90, 895, 410, 12 ], [ 90, 911, 410, 12 ], [ 90, 926, 410, 12 ], [ 547, 788, 88, 11 ], [ 636, 787, 12, 12 ], [ 661, 787, 64, 12 ], [ 736, 787, 26, 12 ], [ 774, 787, 167, 12 ], [ 530, 803, 410, 12 ], [ 530, 818, 410, 12 ], [ 530, 833, 410, 12 ], [ 530, 849, 410, 12 ], [ 530, 864, 410, 12 ], [ 530, 880, 410, 12 ], [ 530, 895, 410, 12 ], [ 530, 911, 411, 12 ], [ 530, 926, 410, 12 ], [ 547, 581, 393, 12 ], [ 530, 597, 410, 12 ], [ 530, 612, 153, 12 ], [ 689, 609, 8, 12 ], [ 688, 612, 253, 12 ], [ 530, 628, 410, 12 ], [ 530, 643, 86, 12 ], [ 629, 643, 210, 12 ], [ 848, 640, 8, 12 ], [ 847, 643, 93, 12 ], [ 530, 659, 410, 12 ], [ 530, 674, 410, 12 ], [ 530, 690, 410, 12 ], [ 530, 705, 410, 12 ], [ 530, 721, 61, 12 ], [ 609, 721, 68, 12 ], [ 687, 717, 8, 12 ], [ 687, 721, 254, 12 ], [ 530, 736, 410, 12 ], [ 530, 752, 410, 12 ], [ 530, 767, 187, 12 ], [ 530, 376, 410, 12 ], [ 530, 391, 410, 12 ], [ 530, 407, 410, 12 ], [ 530, 422, 410, 12 ], [ 530, 438, 410, 12 ], [ 530, 453, 410, 12 ], [ 530, 469, 410, 12 ], [ 530, 484, 410, 12 ], [ 530, 500, 410, 12 ], [ 530, 515, 410, 12 ], [ 530, 530, 410, 12 ], [ 530, 546, 410, 12 ], [ 530, 562, 241, 12 ], [ 30, 217, 30, 527 ], [ 117, 69, 796, 13 ], [ 462, 87, 105, 13 ], [ 455, 120, 15, 12 ], [ 485, 120, 91, 12 ], [ 289, 135, 452, 10 ], [ 470, 165, 18, 12 ], [ 504, 165, 56, 12 ], [ 220, 180, 590, 10 ], [ 426, 193, 179, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 5, 10, 10, 9, 9, 9, 9, 9, 9, 9 ]
5d4ac41ef381154650dac212abaf0231788bba28c2402d3c151309ac75b518a4
1001.0225.pdf
0
7
612
792
1,025
1,025
arxiv_two_columns
scientific_articles
3375
[ "TOSHIBA CORPORATION", "31", "MANAGEMENT’S DISCUSSION AND ANALYSIS", "GEOGRAPHIC SEGMENTS", "Note: Geographic segment information for the fiscal year ended March 31, 2001", "has been reclassified to conform with the fiscal year ended March 31, 2002.", "Thousands of", "Millions of yen", "U.S. dollars", "Year ended March 31", "2003", "2002", "2001", "2003", "Net sales:", "Japan", "Unaffiliated customers", "¥", "3,773,309", "¥ 3,716,437", "¥ 4,168,795 ", "$ 31,444,242", "Intersegment", "1,169,802", "999,914", "1,004,448", "9,748,350", "Total", "4,943,111", "4,716,351", "5,173,243", "41,192,592", "North America", "Unaffiliated customers", "784,683", "728,595", "738,294 ", "6,539,025", "Intersegment", "20,052", "86,334", "77,994", "167,100", "Total", "804,735", "814,929", "816,288", "6,706,125", "Asia", "Unaffiliated customers", "563,639", "470,518", "508,888 ", "4,696,992", "Intersegment", "521,620", "429,904", "299,224", "4,346,833", "Total", "1,085,259", "900,422", "808,112", "9,043,825", "Europe", "Unaffiliated customers", "477,870", "426,089", "484,721 ", "3,982,250", "Intersegment", "13,957", "13,026", "14,269 ", "116,308", "Total", "491,827", "439,115", "498,990", "4,098,558", "Other", "Unaffiliated customers", "56,277", "52,394", "50,659 ", "468,975", "Intersegment", "1,533", "5,220", "2,819", "12,775", "Total", "57,810", "57,614", "53,478", "481,750", "Eliminations", "(1,726,964)", "(1,534,398)", "(1,398,754)", "(14,391,367)", "Consolidated", "¥", "5,655,778", "¥ 5,394,033 ", "¥ 5,951,357 ", "$ 47,131,483", "Operating income (loss):", "Japan", "¥", "89,780", "¥", "(166,231)", "¥", "193,258", "$", "748,167", "North America", "11,722", "19,189", "6,642", "97,683", "Asia", "24,540", "22,844", "31,246", "204,500", "Europe", "(3,197)", "(128)", "5,493 ", "(26,642)", "Other", "(286)", "14", "655", "(2,383)", "Eliminations", "(7,017)", "10,737", "(5,161)", "(58,475)", "Consolidated", "¥", "115,542", "¥", "(113,575)", "¥", "232,133 ", "$", "962,850", "Indentifiable assets:", "Japan", "¥", "4,403,984", "¥ 4,430,716", "¥ 4,783,739", "$ 36,699,867", "North America", "218,782", "360,366", "413,777", "1,823,183", "Asia", "416,726", "434,112", "323,183", "3,472,717", "Europe", "202,575", "186,900", "205,960", "1,688,125", "Other", "30,057", "36,061", "34,276", "250,475", "Corporate and Eliminations", "(33,188)", "(40,373)", "(36,371)", "(276,567)", "Consolidated", "¥", "5,238,936", "¥ 5,407,782", "¥ 5,724,564", "$ 43,657,800" ]
[ [ 737, 61, 136, 7 ], [ 913, 61, 12, 9 ], [ 308, 61, 202, 8 ], [ 103, 112, 188, 10 ], [ 103, 963, 714, 8 ], [ 103, 963, 714, 8 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ], [ 103, 134, 841, 821 ] ]
[ [ 737, 61, 136, 7 ], [ 913, 61, 12, 9 ], [ 308, 61, 202, 8 ], [ 103, 112, 188, 10 ], [ 103, 963, 361, 8 ], [ 669, 963, 148, 8 ], [ 852, 134, 61, 7 ], [ 603, 143, 64, 7 ], [ 857, 143, 52, 7 ], [ 103, 160, 121, 8 ], [ 507, 160, 27, 8 ], [ 622, 160, 27, 8 ], [ 736, 160, 27, 8 ], [ 869, 160, 27, 8 ], [ 103, 177, 70, 10 ], [ 117, 195, 41, 10 ], [ 132, 213, 151, 10 ], [ 475, 213, 9, 10 ], [ 538, 213, 16, 10 ], [ 589, 213, 79, 10 ], [ 708, 213, 83, 10 ], [ 833, 213, 88, 10 ], [ 132, 231, 88, 10 ], [ 488, 231, 67, 10 ], [ 614, 231, 54, 10 ], [ 720, 231, 67, 10 ], [ 854, 231, 67, 10 ], [ 146, 253, 33, 10 ], [ 488, 253, 67, 10 ], [ 602, 253, 67, 10 ], [ 720, 253, 67, 10 ], [ 845, 253, 75, 10 ], [ 117, 275, 97, 10 ], [ 132, 293, 151, 10 ], [ 500, 293, 54, 10 ], [ 614, 293, 54, 10 ], [ 733, 293, 58, 10 ], [ 854, 293, 67, 10 ], [ 132, 311, 88, 10 ], [ 509, 311, 46, 10 ], [ 623, 311, 46, 10 ], [ 741, 311, 46, 10 ], [ 866, 311, 54, 10 ], [ 146, 333, 33, 10 ], [ 500, 333, 54, 10 ], [ 614, 333, 54, 10 ], [ 733, 333, 54, 10 ], [ 854, 333, 67, 10 ], [ 117, 354, 28, 10 ], [ 132, 372, 151, 10 ], [ 500, 372, 54, 10 ], [ 614, 372, 54, 10 ], [ 733, 372, 58, 10 ], [ 854, 372, 67, 10 ], [ 132, 391, 88, 10 ], [ 500, 391, 54, 10 ], [ 614, 391, 54, 10 ], [ 733, 391, 54, 10 ], [ 854, 391, 67, 10 ], [ 146, 412, 33, 10 ], [ 488, 412, 67, 10 ], [ 614, 412, 54, 10 ], [ 733, 412, 54, 10 ], [ 854, 412, 67, 10 ], [ 117, 434, 48, 10 ], [ 132, 452, 151, 10 ], [ 500, 452, 54, 10 ], [ 614, 452, 54, 10 ], [ 733, 452, 58, 10 ], [ 854, 452, 67, 10 ], [ 132, 470, 88, 10 ], [ 509, 470, 46, 10 ], [ 623, 470, 46, 10 ], [ 741, 470, 50, 10 ], [ 866, 470, 54, 10 ], [ 146, 492, 33, 10 ], [ 500, 492, 54, 10 ], [ 614, 492, 54, 10 ], [ 733, 492, 54, 10 ], [ 854, 492, 67, 10 ], [ 117, 514, 37, 10 ], [ 132, 532, 151, 10 ], [ 509, 532, 46, 10 ], [ 623, 532, 46, 10 ], [ 741, 532, 50, 10 ], [ 866, 532, 54, 10 ], [ 132, 550, 88, 10 ], [ 517, 550, 37, 10 ], [ 631, 550, 37, 10 ], [ 750, 550, 37, 10 ], [ 875, 550, 46, 10 ], [ 146, 572, 33, 10 ], [ 509, 572, 46, 10 ], [ 623, 572, 46, 10 ], [ 741, 572, 46, 10 ], [ 866, 572, 54, 10 ], [ 117, 594, 81, 10 ], [ 483, 594, 75, 10 ], [ 598, 594, 74, 10 ], [ 717, 594, 74, 10 ], [ 841, 594, 83, 10 ], [ 117, 615, 89, 10 ], [ 475, 615, 9, 10 ], [ 538, 615, 16, 10 ], [ 589, 615, 83, 10 ], [ 708, 615, 83, 10 ], [ 833, 615, 88, 10 ], [ 103, 648, 175, 10 ], [ 117, 666, 41, 10 ], [ 475, 666, 13, 10 ], [ 512, 666, 42, 10 ], [ 589, 666, 13, 10 ], [ 615, 666, 57, 10 ], [ 708, 666, 13, 10 ], [ 737, 666, 50, 10 ], [ 833, 666, 8, 10 ], [ 866, 666, 54, 10 ], [ 117, 684, 97, 10 ], [ 509, 684, 46, 10 ], [ 623, 684, 46, 10 ], [ 750, 684, 37, 10 ], [ 875, 684, 46, 10 ], [ 117, 702, 28, 10 ], [ 509, 702, 46, 10 ], [ 623, 702, 46, 10 ], [ 741, 702, 46, 10 ], [ 866, 702, 54, 10 ], [ 117, 720, 48, 10 ], [ 513, 720, 46, 10 ], [ 640, 720, 32, 10 ], [ 750, 720, 41, 10 ], [ 870, 720, 54, 10 ], [ 117, 738, 37, 10 ], [ 525, 738, 33, 10 ], [ 652, 738, 16, 10 ], [ 762, 738, 25, 10 ], [ 879, 738, 46, 10 ], [ 117, 756, 81, 10 ], [ 513, 756, 46, 10 ], [ 623, 756, 46, 10 ], [ 746, 756, 45, 10 ], [ 870, 756, 54, 10 ], [ 117, 778, 89, 10 ], [ 475, 778, 13, 10 ], [ 504, 778, 50, 10 ], [ 589, 778, 13, 10 ], [ 615, 778, 57, 10 ], [ 708, 778, 13, 10 ], [ 737, 778, 54, 10 ], [ 833, 778, 8, 10 ], [ 866, 778, 54, 10 ], [ 103, 809, 144, 10 ], [ 117, 827, 41, 10 ], [ 475, 827, 9, 10 ], [ 538, 827, 16, 10 ], [ 589, 827, 79, 10 ], [ 708, 827, 79, 10 ], [ 833, 827, 88, 10 ], [ 117, 845, 97, 10 ], [ 500, 845, 54, 10 ], [ 614, 845, 54, 10 ], [ 733, 845, 54, 10 ], [ 854, 845, 67, 10 ], [ 117, 863, 28, 10 ], [ 500, 863, 54, 10 ], [ 614, 863, 54, 10 ], [ 733, 863, 54, 10 ], [ 854, 863, 67, 10 ], [ 117, 881, 48, 10 ], [ 500, 881, 54, 10 ], [ 614, 881, 54, 10 ], [ 733, 881, 54, 10 ], [ 854, 881, 67, 10 ], [ 117, 899, 37, 10 ], [ 509, 899, 46, 10 ], [ 623, 899, 46, 10 ], [ 741, 899, 46, 10 ], [ 866, 899, 54, 10 ], [ 117, 921, 183, 10 ], [ 504, 921, 54, 10 ], [ 619, 921, 53, 10 ], [ 738, 921, 53, 10 ], [ 862, 921, 62, 10 ], [ 117, 943, 89, 10 ], [ 475, 943, 9, 10 ], [ 538, 943, 16, 10 ], [ 589, 943, 79, 10 ], [ 708, 943, 79, 10 ], [ 833, 943, 88, 10 ] ]
[ 5, 5, 5, 7, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
0dbf11a067170c21f238b3db672ad8540a137f55ad53bbef5745669bd686807a
OTC_TOSYY_2003.pdf
32
64
611
792
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3376
[ "longevity", "As a result, we sacrificed income for the sake of improving", "the risk posture of the Company. Our research indicates", "our bond portfolio remains very short relative to many", "other banks. Clearly, we could improve near-term", "earnings, at any time, by simply extending maturities,", "but we have elected to keep the portfolio short in", "duration at this time. We have been very patient and", "disciplined in our approach to investing our liquidity. ", "Our conviction to run a well-managed commercial bank", "is evident in many ways. One is to adhere to the highest", "standards of corporate governance and financial", "disclosure. We have been very open and forthright in", "our communications with investors. We are proud to", "certify the financial statements we file", "with ", "the ", "Securities ", "and ", "Exchange", "Commission. Our management team feels", "strongly that honesty and integrity are", "critical elements of our foundation.", "To further assist us in cementing this", "foundation, on July 1, 2002, we officially", "became a member of the Federal Reserve", "System. ", "This ", "decision ", "was ", "due, ", "in", "significant part, to our interest in ensuring", "we have the insight and expertise of the", "very capable examiners associated with", "this agency. We are delighted to have", "become a member of the Federal Reserve", "System, and we look forward to gaining", "insight and wisdom from our affiliation with", "this agency.", "We are an organization focused on continuous", "improvement, ", "methodical ", "in ", "our ", "approach ", "to", "investment and disciplined in building our foundation", "for growth. While patience may mean sacrificing near-term", "benefits for long-term stability and gains, this is an", "approach consistent with our culture. As the French", "philosopher, Joseph Marie de Maistre, once said, “To", "know how to wait is the great secret of success.” ", "GROWTH", "While the oak tree is many times associated with", "patience, it also bears the characteristic of growing", "quickly. For example, under favorable soil conditions,", "a live oak may experience a rapid first year growth rate", "of up to four feet. Likewise, IBERIABANK Corporation", "demonstrated exceptional growth over the last few", "years both internally and externally.", "The level of our internal growth is evident in our", "financial results for the year just completed. During a", "period ", "when ", "many ", "banks ", "experienced ", "margin", "compression, our tax-equivalent net interest margin", "improved from 4.11% in 2001 to 4.49% in 2002, or 38", "basis points. Net interest income, on a tax-equivalent", "basis, increased over 11% in 2002 compared to 2001.", "Likewise, total revenues, on a tax-equivalent basis, ", "$0.79", "2Q", "01", "1Q01", "4Q00", "3Q00", "2Q", "00", "1Q00", "4Q01", "3Q01", "Fully-Diluted EPS", "Reported EPS", "IBES* Est. EPS", "$0.63", "$0.48", "$0.57", "$0.57", "$0.59", "$0.51", "$0.56", "$0.62", "$0.59", "$0.58", "$0.56", "$0.56", "$0.53", "$0.50", "$0.46", "$.044", "$0.48", "$0.52", "$0.56", "$0.60", "$0.64", "$0.68", "$0.72", "$0.76 ", "$0.40", "$0.72", "$0.72", "$0.75", "$0.73", "$0.76", "$0.75", "$0.76", "1Q02", "2Q02", "3Q02", "4Q02", "$0.58", "$0.73", "Growth Features", "Profitability – Quarterly EP", "S", "* I/B/E/S International is a source of analysts’ earnings", "expectations data.", "gained nearly 14% over the same period. Net income", "gre", "w 27% during 2002 and fully diluted earnings per share", "(“EPS”) climbed 28%, including the favorable impact of", "FAS 142. We reported record operating earnings and we", "have met or exceeded average analyst expectations for", "fully diluted EPS in each of the last 12 quarters.", "Total loans increased over 9% between December 31, 2001", "and December 31, 2002, led by a 20% increase in", "commercial loans. Commercial loan growth was most", "evident in our New Orleans franchise, where commercial", "loans jumped 76% during the year. Growth in the New", "Orleans market continues to exceed our expectations.", "Tangible book value per share climbed nearly 10% between", "year-ends 2001 and 2002. Over the same period, total", "assets expanded by 10%, which is the fastest asset growth", "we experienced since 1998.", "6" ]
[ [ 66, 32, 51, 436 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 94, 350, 133 ], [ 182, 251, 350, 81 ], [ 182, 251, 350, 81 ], [ 182, 251, 350, 81 ], [ 182, 251, 350, 81 ], [ 182, 251, 350, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 338, 266, 81 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 443, 266, 203 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 670, 350, 133 ], [ 182, 841, 122, 14 ], [ 182, 877, 350, 46 ], [ 182, 877, 350, 46 ], [ 182, 877, 350, 46 ], [ 552, 94, 350, 63 ], [ 552, 94, 350, 63 ], [ 552, 94, 350, 63 ], [ 552, 94, 350, 63 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 552, 181, 353, 133 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 474, 343, 429, 267 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 633, 350, 98 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 552, 756, 350, 168 ], [ 509, 985, 6, 8 ] ]
[ [ 66, 32, 51, 436 ], [ 182, 94, 349, 11 ], [ 182, 111, 349, 11 ], [ 182, 129, 349, 11 ], [ 182, 146, 350, 11 ], [ 182, 164, 349, 11 ], [ 182, 181, 349, 11 ], [ 182, 199, 349, 11 ], [ 182, 216, 330, 11 ], [ 182, 251, 350, 11 ], [ 182, 268, 350, 11 ], [ 182, 286, 350, 11 ], [ 182, 303, 350, 11 ], [ 182, 321, 350, 11 ], [ 182, 338, 266, 11 ], [ 182, 356, 32, 11 ], [ 227, 356, 25, 11 ], [ 264, 356, 69, 11 ], [ 346, 356, 28, 11 ], [ 386, 356, 62, 11 ], [ 182, 373, 266, 11 ], [ 182, 391, 266, 11 ], [ 182, 408, 224, 11 ], [ 182, 443, 266, 11 ], [ 182, 461, 266, 11 ], [ 182, 478, 266, 11 ], [ 182, 496, 55, 11 ], [ 247, 496, 29, 11 ], [ 287, 496, 57, 11 ], [ 355, 496, 27, 11 ], [ 393, 496, 32, 11 ], [ 436, 496, 12, 11 ], [ 182, 513, 266, 11 ], [ 182, 531, 266, 11 ], [ 182, 548, 266, 11 ], [ 182, 566, 266, 11 ], [ 182, 583, 266, 11 ], [ 182, 600, 266, 11 ], [ 182, 618, 266, 11 ], [ 182, 635, 75, 11 ], [ 182, 670, 350, 11 ], [ 182, 688, 95, 11 ], [ 289, 688, 77, 11 ], [ 377, 688, 16, 11 ], [ 405, 688, 25, 11 ], [ 442, 688, 64, 11 ], [ 518, 688, 14, 11 ], [ 182, 705, 350, 11 ], [ 182, 723, 349, 11 ], [ 182, 740, 350, 11 ], [ 182, 758, 350, 11 ], [ 182, 775, 350, 11 ], [ 182, 793, 307, 11 ], [ 182, 841, 122, 14 ], [ 182, 877, 350, 11 ], [ 182, 895, 350, 11 ], [ 182, 912, 350, 11 ], [ 552, 94, 350, 11 ], [ 552, 111, 350, 11 ], [ 552, 129, 350, 11 ], [ 552, 146, 230, 11 ], [ 552, 181, 350, 11 ], [ 552, 199, 350, 11 ], [ 552, 216, 46, 11 ], [ 610, 216, 38, 11 ], [ 659, 216, 38, 11 ], [ 708, 216, 42, 11 ], [ 761, 216, 84, 11 ], [ 856, 216, 46, 11 ], [ 552, 234, 350, 11 ], [ 552, 251, 350, 11 ], [ 552, 268, 349, 11 ], [ 552, 286, 350, 11 ], [ 552, 303, 353, 11 ], [ 878, 369, 7, 13 ], [ 695, 564, 4, 9 ], [ 699, 557, 4, 8 ], [ 667, 558, 0, 16 ], [ 635, 557, 0, 16 ], [ 606, 557, 0, 16 ], [ 568, 564, 4, 9 ], [ 572, 557, 4, 8 ], [ 542, 559, 0, 16 ], [ 760, 557, 0, 16 ], [ 727, 558, 0, 16 ], [ 475, 448, 9, 52 ], [ 563, 403, 58, 5 ], [ 563, 411, 62, 5 ], [ 752, 438, 7, 13 ], [ 537, 505, 7, 13 ], [ 629, 464, 7, 13 ], [ 661, 464, 7, 13 ], [ 733, 451, 7, 13 ], [ 567, 490, 7, 13 ], [ 599, 468, 7, 13 ], [ 761, 444, 7, 13 ], [ 721, 452, 7, 13 ], [ 691, 453, 7, 14 ], [ 669, 468, 7, 13 ], [ 637, 468, 7, 13 ], [ 607, 483, 7, 13 ], [ 576, 495, 7, 13 ], [ 545, 508, 7, 13 ], [ 491, 517, 25, 5 ], [ 491, 501, 25, 5 ], [ 491, 484, 25, 5 ], [ 491, 467, 25, 5 ], [ 492, 450, 25, 5 ], [ 492, 432, 25, 5 ], [ 492, 416, 25, 5 ], [ 492, 398, 25, 5 ], [ 491, 382, 27, 5 ], [ 492, 534, 25, 5 ], [ 784, 401, 7, 13 ], [ 792, 401, 7, 13 ], [ 815, 389, 7, 13 ], [ 844, 395, 7, 13 ], [ 845, 383, 7, 13 ], [ 853, 387, 7, 13 ], [ 886, 383, 7, 13 ], [ 792, 558, 0, 16 ], [ 823, 558, 0, 16 ], [ 851, 558, 0, 16 ], [ 884, 557, 0, 16 ], [ 699, 453, 7, 14 ], [ 824, 396, 7, 13 ], [ 679, 376, 90, 6 ], [ 648, 384, 144, 6 ], [ 793, 384, 7, 6 ], [ 597, 580, 284, 8 ], [ 605, 591, 95, 8 ], [ 552, 633, 349, 11 ], [ 552, 651, 20, 11 ], [ 573, 651, 329, 10 ], [ 552, 669, 350, 10 ], [ 552, 686, 350, 10 ], [ 552, 704, 350, 10 ], [ 552, 721, 284, 10 ], [ 552, 756, 350, 10 ], [ 552, 773, 350, 10 ], [ 552, 791, 350, 10 ], [ 552, 808, 350, 10 ], [ 552, 825, 350, 10 ], [ 552, 843, 350, 10 ], [ 552, 860, 350, 10 ], [ 552, 878, 350, 10 ], [ 552, 895, 350, 10 ], [ 552, 912, 174, 11 ], [ 509, 985, 6, 8 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
4079232a7f3a712aa8b3d905175c3017f1d3b8373e16e37bcfb87eff4c96fbc5
NASDAQ_IBKC_2002.pdf
8
68
612
792
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3377
[ "Directors’ Declaration", "for the year ended 30 September 2001", "GrainCorp Limited and Controlled Entities ", "The Directors declare that in their opinion, the concise", "financial report of the consolidated entity for the year", "ended 30 September 2001 as set out on pages 43 to 55", "complies with Accounting Standard AASB 1039: Concise", "Financial Reports.", "The financial statements and specific disclosures included", "in this concise financial report have been derived from the", "full financial report for the year ended 30 September 2001.", "The concise financial report cannot be expected to provide", "as full an understanding of the financial performance,", "financial position and financing and investing activities ", "of the consolidated entity as the full financial report, which", "as indicated in note 6, is available on request.", "This declaration is made in accordance with a resolution ", "of the Directors.", "Sydney", "27", "November 2001", "R.", "L. Greentree", "Chairman", "Directors’ Declaration ", "fora (en an", "56", "GrainCorp", "2001 Annual Report" ]
[ [ 70, 48, 264, 26 ], [ 517, 52, 210, 10 ], [ 517, 77, 267, 10 ], [ 70, 153, 403, 70 ], [ 70, 153, 403, 70 ], [ 70, 153, 403, 70 ], [ 70, 153, 403, 70 ], [ 70, 153, 403, 70 ], [ 70, 235, 415, 40 ], [ 70, 235, 415, 40 ], [ 70, 235, 415, 40 ], [ 70, 288, 417, 70 ], [ 70, 288, 417, 70 ], [ 70, 288, 417, 70 ], [ 70, 288, 417, 70 ], [ 70, 288, 417, 70 ], [ 70, 370, 406, 25 ], [ 70, 370, 406, 25 ], [ 70, 488, 53, 10 ], [ 70, 503, 134, 10 ], [ 70, 503, 134, 10 ], [ 70, 451, 106, 25 ], [ 70, 451, 106, 25 ], [ 70, 451, 106, 25 ], [ 70, 138, 142, 10 ], [ 73, 418, 245, 23 ], [ 25, 993, 242, 10 ], [ 25, 993, 242, 10 ], [ 25, 993, 242, 10 ] ]
[ [ 70, 48, 264, 26 ], [ 517, 52, 210, 10 ], [ 517, 77, 267, 10 ], [ 70, 153, 385, 10 ], [ 70, 168, 379, 10 ], [ 70, 183, 390, 10 ], [ 70, 198, 403, 10 ], [ 70, 213, 126, 10 ], [ 70, 235, 412, 10 ], [ 70, 250, 414, 10 ], [ 70, 266, 415, 10 ], [ 70, 288, 417, 10 ], [ 70, 303, 381, 10 ], [ 70, 318, 394, 10 ], [ 70, 333, 417, 10 ], [ 70, 348, 324, 10 ], [ 70, 370, 406, 10 ], [ 70, 385, 113, 10 ], [ 70, 488, 53, 10 ], [ 70, 503, 16, 10 ], [ 91, 503, 113, 10 ], [ 70, 451, 14, 10 ], [ 89, 451, 87, 10 ], [ 70, 466, 69, 10 ], [ 70, 138, 142, 10 ], [ 73, 418, 244, 21 ], [ 25, 993, 16, 10 ], [ 98, 993, 57, 7 ], [ 159, 993, 108, 7 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 0, 0, 0, 7, 6, 4, 4, 4 ]
e7a1d30a0f8edebf4571728f9e4c114462f4ea298fa6404cb4314310308f74c2
ASX_GNC_2001.pdf
57
62
595
842
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3378
[ "FIRST COMMONWEALTH FINANCIAL CORPORATION AND SUBSIDIARIES", "NOTESTO CONSOLIDATED FINANCIAL STATEMENTS", "(Dollar Amounts in Thousands)", "2002. The Corporation may be required to issue additional ", "shares to satisfy common share purchases related to the ", "employee stock ownership plan described in NOTE 22. The ", "dilutive effective of stock options outstanding on average ", "shares outstanding in the diluted earnings per share reported ", "on the income statement were 384,778, 332,404 and 232,579 ", "shares at December 31, 2003, 2002 and 2001, respectively.", "The income tax provision consists of:", "Treasury shares consisting of 552,781 and 447,001 were ", "reissued during 2003 and 2002 upon exercise of stock ", "options. Treasury shares consisting of 17,663 and 67,484 were ", "reissued in 2003 and 2002, respectively, to fund the business ", "combination with SCC and SFA as described in NOTE 5.", "During 2003, 1,179,037 common shares were issued to fund ", "the business combination with PFC, which is also described ", "in NOTE 5.", "Temporary differences between financial statement carrying ", "amounts and tax bases of assets and liabilities that represent ", "significant portions of the deferred tax assets (liabilities) at ", "December 31, 2003 and 2002, were as follows:", "The Corporation incurred restructuring charges of $6,140 ", "during 2002 in accordance with EITF 94-3. These ", "restructuring charges were comprised of the following: ", "$4,652 of employee separation costs consisting of severance ", "packages for 95 employees from various affiliates of the ", "Corporation including all levels of staff from the executive ", "management level to back office support staff, $1,068 related ", "to realignment of the various Boards of Directors and Board ", "committees and $420 primarily related to the write-off of ", "obsolete signage and supplies. These amounts are included as ", "restructuring charges, as a component of Other Expenses on ", "the Consolidated Statements of Income.", "NOTE 20—", "Restructuring Charges", "These restructuring charges resulted from the merger of ", "the charters of the Corporation’s two commercial banks ", "(First Commonwealth Bank and Southwest Bank) and ", "the adoption of a new common brand and identity for all ", "financial services subsidiaries.", "Actual termination benefits paid and charged against the total ", "severance liability were $2,823 and $1,263 during 2003 and ", "2002, respectively, leaving a remaining unpaid liability for ", "severance costs of $566 at December 31, 2003. No additional ", "severance accruals or adjustments were recorded during 2003 ", "related to the 2002 restructuring.", "The total tax provision for financial reporting differs from the ", "amount computed by applying the statutory income tax rate ", "to income before taxes. The differences are as follows:", "33", "2003", "2002 ", "2001", "Amount ", " % of Pretax Income", "Amount ", "Amount", "% of Pretax Income", "Amount ", "Amount", "% of Pretax Income", "Tax at statutory rate", "$", "23,293 ", "35.0 ", "$", "18,353 ", "35.0 ", "$", "22,905 ", "35.0", "Increase (decrease) resulting from:", "Income from bank owned", "life insurance ", "(1,520)", "(2.3)", "(1,649)", "(3.1) ", "(1,616)", "(2.5)", "Other nontaxable income", "(7,332)", "(11.0)", "(6,216)", "(11.9) ", "(5,521)", "(8.4)", "State income taxes ", "-0- ", "0.0 ", "1 ", "0.0", "55 ", "0.1", "Other", "(1,190)", "(1.8)", "(1,578)", "(3.0) ", " (569)", "(0.9)", "Total tax provision", "$", " 13,251", "19.9 ", "$", "8,911 ", "17.0 ", "$", "15,254 ", "23.3", "2003", "2002", "Deferred tax assets:", "Allowance for credit losses", "$", "13,107 ", "$", "12,074", "Postretirement benefits other than pensions", "1,040", "1,036", "Basis difference in assets acquired", "4,710 ", "-0-", "Severance expense", "250 ", "1,186", "Other", "1,140 ", "948", "Total deferred tax assets", "20,247", "15,244", "Deferred tax liabilities:", "Accumulated accretion of bond discount", "(124)", "(327)", "Unrealized gain on securities available ", "for sale", "(8,166)", "(13,920)", "Lease financing deduction", "(6,439)", "(9,272)", "Loan origination fees and costs", "(1,562)", "(1,774)", "Basis difference in assets acquired", "-0-", "(337)", "Pension expense", "(399)", "Accumulated depreciation", "(1,343)", "(578)", "Other", "(574)", "(574)", "Total deferred tax (liabilities)", "(18,208)", "(27,181)", "Net deferred tax asset (liability)", "$", "2,039 ", "$ (11,937)", "2003", "2002", "2001", "Current tax provision for", "income exclusive of ", "securities transactions:", "Federal", "$", "13,438", "$", "9,279", "$", "14,865", "State", "-0-", "1", "55", "Securities transactions ", " 2,048 ", "225", "1,165", "Total current tax provision", "15,486 ", "9,505", "16,085", "Deferred tax provision (benefit)", "(2,235)", "(594)", "(831)", "Total tax provision", "$", " 13,251 ", "$", "8,911", "$", "15,254", "NOTE 21—", "Income Taxes" ]
[ [ 476, 43, 467, 52 ], [ 476, 43, 467, 52 ], [ 476, 43, 467, 52 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 80, 107, 414, 111 ], [ 527, 131, 252, 17 ], [ 80, 224, 417, 80 ], [ 80, 224, 417, 80 ], [ 80, 224, 417, 80 ], [ 80, 224, 417, 80 ], [ 80, 224, 417, 80 ], [ 80, 309, 410, 48 ], [ 80, 309, 410, 48 ], [ 80, 309, 410, 48 ], [ 527, 307, 408, 64 ], [ 527, 307, 408, 64 ], [ 527, 307, 408, 64 ], [ 527, 307, 408, 64 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 391, 418, 188 ], [ 80, 368, 235, 17 ], [ 80, 368, 235, 17 ], [ 80, 585, 392, 80 ], [ 80, 585, 392, 80 ], [ 80, 585, 392, 80 ], [ 80, 585, 392, 80 ], [ 80, 585, 392, 80 ], [ 80, 670, 418, 95 ], [ 80, 670, 418, 95 ], [ 80, 670, 418, 95 ], [ 80, 670, 418, 95 ], [ 80, 670, 418, 95 ], [ 80, 670, 418, 95 ], [ 527, 685, 419, 48 ], [ 527, 685, 419, 48 ], [ 527, 685, 419, 48 ], [ 927, 974, 16, 13 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 79, 783, 868, 132 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 376, 421, 288 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 525, 153, 421, 133 ], [ 527, 107, 173, 17 ], [ 527, 107, 173, 17 ] ]
[ [ 476, 43, 467, 17 ], [ 557, 63, 387, 13 ], [ 731, 78, 213, 17 ], [ 80, 107, 397, 17 ], [ 80, 123, 377, 17 ], [ 80, 138, 407, 17 ], [ 80, 154, 390, 17 ], [ 80, 170, 409, 17 ], [ 80, 185, 414, 17 ], [ 80, 201, 396, 17 ], [ 527, 131, 252, 17 ], [ 80, 224, 377, 17 ], [ 80, 239, 360, 17 ], [ 80, 255, 417, 17 ], [ 80, 270, 405, 17 ], [ 80, 286, 379, 17 ], [ 80, 309, 410, 17 ], [ 80, 325, 407, 17 ], [ 80, 340, 78, 17 ], [ 527, 307, 408, 17 ], [ 527, 322, 407, 17 ], [ 527, 338, 400, 17 ], [ 527, 353, 317, 17 ], [ 80, 391, 390, 17 ], [ 80, 406, 340, 17 ], [ 80, 422, 374, 17 ], [ 80, 437, 410, 17 ], [ 80, 453, 383, 17 ], [ 80, 468, 400, 17 ], [ 80, 484, 416, 17 ], [ 80, 500, 409, 17 ], [ 80, 515, 389, 17 ], [ 80, 531, 418, 17 ], [ 80, 546, 408, 17 ], [ 80, 562, 268, 17 ], [ 80, 368, 82, 17 ], [ 162, 368, 153, 17 ], [ 80, 585, 386, 17 ], [ 80, 600, 385, 17 ], [ 80, 616, 375, 17 ], [ 80, 632, 392, 17 ], [ 80, 647, 209, 17 ], [ 80, 670, 418, 17 ], [ 80, 686, 408, 17 ], [ 80, 701, 399, 17 ], [ 80, 717, 417, 17 ], [ 80, 732, 418, 17 ], [ 80, 748, 220, 17 ], [ 527, 685, 419, 17 ], [ 527, 700, 405, 17 ], [ 527, 716, 368, 17 ], [ 927, 974, 16, 13 ], [ 358, 783, 26, 14 ], [ 581, 784, 30, 14 ], [ 830, 784, 26, 14 ], [ 293, 796, 50, 14 ], [ 371, 796, 114, 14 ], [ 517, 797, 47, 14 ], [ 517, 797, 43, 14 ], [ 594, 797, 106, 14 ], [ 755, 797, 47, 14 ], [ 755, 797, 43, 14 ], [ 844, 797, 99, 14 ], [ 80, 809, 106, 14 ], [ 269, 809, 6, 14 ], [ 303, 809, 40, 14 ], [ 401, 809, 26, 14 ], [ 499, 809, 4, 14 ], [ 533, 809, 27, 14 ], [ 631, 809, 26, 14 ], [ 733, 809, 6, 14 ], [ 765, 809, 40, 14 ], [ 879, 809, 23, 14 ], [ 80, 822, 181, 14 ], [ 98, 835, 138, 14 ], [ 117, 848, 75, 14 ], [ 305, 848, 39, 14 ], [ 404, 848, 25, 14 ], [ 538, 848, 23, 14 ], [ 633, 848, 29, 14 ], [ 767, 848, 39, 14 ], [ 881, 848, 25, 14 ], [ 98, 861, 135, 14 ], [ 305, 861, 39, 14 ], [ 398, 861, 31, 14 ], [ 539, 861, 23, 14 ], [ 627, 861, 35, 14 ], [ 767, 861, 39, 14 ], [ 881, 861, 25, 14 ], [ 98, 874, 103, 14 ], [ 328, 874, 18, 14 ], [ 408, 874, 20, 14 ], [ 555, 874, 6, 14 ], [ 638, 874, 13, 14 ], [ 788, 874, 16, 14 ], [ 885, 874, 16, 14 ], [ 98, 887, 26, 14 ], [ 305, 887, 39, 14 ], [ 404, 887, 25, 14 ], [ 538, 887, 23, 14 ], [ 633, 887, 29, 14 ], [ 774, 887, 32, 14 ], [ 881, 887, 25, 14 ], [ 117, 900, 101, 14 ], [ 269, 900, 6, 14 ], [ 299, 900, 40, 14 ], [ 401, 900, 26, 14 ], [ 499, 900, 3, 14 ], [ 539, 900, 21, 14 ], [ 631, 900, 26, 14 ], [ 733, 900, 6, 14 ], [ 765, 900, 40, 14 ], [ 879, 900, 23, 14 ], [ 812, 376, 26, 14 ], [ 909, 377, 26, 14 ], [ 527, 389, 72, 14 ], [ 552, 402, 114, 14 ], [ 787, 402, 4, 14 ], [ 819, 402, 28, 14 ], [ 899, 402, 3, 14 ], [ 921, 402, 18, 14 ], [ 556, 415, 207, 14 ], [ 813, 415, 30, 14 ], [ 926, 415, 13, 14 ], [ 553, 428, 153, 14 ], [ 813, 428, 33, 14 ], [ 937, 428, 6, 14 ], [ 551, 441, 65, 14 ], [ 824, 441, 23, 14 ], [ 926, 441, 13, 14 ], [ 548, 454, 15, 14 ], [ 813, 454, 33, 14 ], [ 931, 454, 8, 14 ], [ 577, 467, 101, 14 ], [ 820, 467, 23, 14 ], [ 921, 467, 17, 14 ], [ 527, 493, 91, 14 ], [ 556, 506, 184, 14 ], [ 819, 506, 29, 14 ], [ 931, 506, 12, 14 ], [ 558, 519, 200, 14 ], [ 569, 532, 28, 14 ], [ 809, 531, 39, 14 ], [ 919, 532, 24, 14 ], [ 553, 545, 103, 14 ], [ 809, 544, 39, 14 ], [ 924, 545, 19, 14 ], [ 553, 558, 132, 14 ], [ 809, 557, 39, 14 ], [ 925, 558, 18, 14 ], [ 553, 571, 150, 14 ], [ 832, 570, 15, 14 ], [ 931, 571, 12, 14 ], [ 550, 584, 57, 14 ], [ 930, 584, 13, 14 ], [ 553, 597, 104, 14 ], [ 823, 596, 25, 14 ], [ 931, 597, 12, 14 ], [ 548, 609, 15, 14 ], [ 819, 609, 29, 14 ], [ 931, 609, 12, 14 ], [ 577, 622, 128, 14 ], [ 802, 622, 45, 14 ], [ 920, 622, 23, 14 ], [ 527, 648, 143, 14 ], [ 787, 648, 3, 14 ], [ 825, 648, 22, 14 ], [ 908, 648, 35, 14 ], [ 715, 154, 26, 14 ], [ 833, 154, 12, 14 ], [ 911, 154, 26, 14 ], [ 527, 167, 133, 14 ], [ 537, 180, 111, 14 ], [ 537, 193, 121, 14 ], [ 556, 206, 31, 14 ], [ 695, 205, 6, 14 ], [ 720, 205, 36, 14 ], [ 802, 206, 3, 14 ], [ 833, 206, 14, 14 ], [ 896, 206, 3, 14 ], [ 922, 206, 16, 14 ], [ 552, 219, 18, 14 ], [ 745, 218, 15, 14 ], [ 845, 219, 2, 14 ], [ 934, 219, 4, 14 ], [ 527, 232, 123, 14 ], [ 723, 231, 36, 14 ], [ 840, 232, 8, 14 ], [ 927, 232, 12, 14 ], [ 557, 244, 131, 14 ], [ 720, 244, 40, 14 ], [ 832, 244, 14, 14 ], [ 922, 244, 17, 14 ], [ 527, 257, 160, 14 ], [ 722, 257, 39, 14 ], [ 835, 257, 13, 14 ], [ 931, 257, 12, 14 ], [ 557, 270, 91, 14 ], [ 695, 270, 6, 14 ], [ 716, 270, 43, 14 ], [ 802, 270, 3, 14 ], [ 832, 270, 14, 14 ], [ 896, 270, 3, 14 ], [ 922, 270, 17, 14 ], [ 527, 107, 82, 17 ], [ 610, 108, 91, 17 ] ]
[ 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7, 7 ]
32cdf4df7dbd6562cff083e1dd957f767527758b79196152f14a91b300e1e4f8
NYSE_FCF_2003.pdf
34
64
612
792
1,025
1,025
ann_reports_00_04_fancy
financial_reports
3379
[ "Detection of weak signals in high-dimensional", "complex-valued data", "Alexei Onatski", "∗", "March 19, 2018", "This paper considers the problem of detecting a few signals in high-", "dimensional complex-valued Gaussian data satisfying Johnstone’s (2001)", "spiked covariance model", ".", "We focus on the difficult case where signals are", "weak in the sense that the sizes of the corresponding covariance spikes are", "below the", "phase transition threshold", "studied in Baik et al (2005). We derive", "a simple analytical expression for the maximal possible asymptotic proba-", "bility of correct detection holding the asymptotic probability of false detec-", "tion fixed. To accomplish this derivation, we establish what we believe to", "be a new formula for the", "Harish-Chandra/Itzykson-Zuber (HCIZ) integral", "∫", "U", "(", "p", "$_{)}$e", "tr", "(", "AUB", "¯", "U", "′", ")", "(", "dU", "), where", "A", "has a deficient rank", "r < p", ". The formula links", "the HCIZ integral over", "U", "(", "p", ") to an HCIZ integral over a potentially much", "smaller unitary group", "U", "(", "r", "). We show that the formula generalizes to the", "integrals over orthogonal and symplectic groups. In the most general form,", "it expresses the hypergeometric function", "$_{0}$F", "(", "α", ")", "0", "of two", "p", "×", "p", "matrix arguments", "as a repeated contour integral of the hypergeometric function", "$_{0}$F", "(", "α", ")", "0", "of two", "r", "×", "r", "matrix arguments.", "1", "∗", "University of Cambridge, [email protected].", "arXiv:1207.7098v1", "[math.ST]", "30", "Jul 2012", "Abstract" ]
[ [ 214, 172, 632, 80 ], [ 214, 172, 632, 80 ], [ 454, 290, 161, 22 ], [ 454, 290, 161, 22 ], [ 451, 338, 158, 18 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 229, 450, 601, 459 ], [ 525, 949, 9, 15 ], [ 203, 912, 329, 12 ], [ 203, 912, 329, 12 ], [ 30, 250, 30, 454 ], [ 30, 250, 30, 454 ], [ 30, 250, 30, 454 ], [ 30, 250, 30, 454 ], [ 490, 418, 80, 9 ] ]
[ [ 214, 172, 632, 26 ], [ 387, 225, 285, 26 ], [ 454, 292, 152, 18 ], [ 607, 290, 8, 22 ], [ 451, 338, 158, 18 ], [ 257, 450, 574, 14 ], [ 229, 479, 600, 14 ], [ 229, 508, 192, 14 ], [ 422, 508, 5, 14 ], [ 440, 508, 390, 14 ], [ 229, 537, 601, 14 ], [ 229, 566, 76, 14 ], [ 311, 566, 202, 14 ], [ 522, 566, 308, 14 ], [ 229, 595, 601, 14 ], [ 229, 624, 601, 14 ], [ 229, 653, 601, 14 ], [ 229, 682, 206, 14 ], [ 444, 682, 386, 14 ], [ 229, 710, 8, 42 ], [ 238, 719, 8, 10 ], [ 248, 719, 5, 10 ], [ 254, 719, 7, 10 ], [ 261, 711, 17, 14 ], [ 279, 708, 10, 10 ], [ 290, 706, 7, 14 ], [ 297, 708, 32, 10 ], [ 332, 705, 7, 10 ], [ 330, 708, 9, 10 ], [ 341, 708, 3, 6 ], [ 345, 706, 7, 14 ], [ 356, 711, 7, 14 ], [ 363, 711, 21, 14 ], [ 387, 711, 64, 14 ], [ 457, 711, 13, 14 ], [ 476, 711, 154, 14 ], [ 635, 711, 42, 14 ], [ 678, 711, 152, 14 ], [ 229, 740, 184, 14 ], [ 422, 740, 11, 24 ], [ 438, 740, 7, 14 ], [ 445, 740, 9, 14 ], [ 455, 740, 376, 14 ], [ 229, 769, 175, 14 ], [ 412, 769, 11, 24 ], [ 429, 769, 7, 14 ], [ 436, 769, 8, 14 ], [ 445, 769, 386, 14 ], [ 229, 798, 601, 14 ], [ 229, 827, 318, 14 ], [ 552, 827, 19, 14 ], [ 575, 822, 5, 10 ], [ 580, 822, 9, 10 ], [ 589, 822, 5, 10 ], [ 572, 834, 7, 10 ], [ 596, 827, 47, 14 ], [ 649, 827, 9, 14 ], [ 660, 827, 14, 24 ], [ 676, 827, 9, 14 ], [ 690, 827, 141, 14 ], [ 229, 856, 500, 14 ], [ 737, 856, 19, 14 ], [ 759, 852, 5, 10 ], [ 765, 852, 9, 10 ], [ 774, 852, 5, 10 ], [ 757, 863, 7, 10 ], [ 781, 856, 50, 14 ], [ 229, 885, 8, 14 ], [ 242, 885, 14, 24 ], [ 261, 885, 8, 14 ], [ 275, 885, 147, 14 ], [ 525, 949, 9, 15 ], [ 203, 913, 6, 6 ], [ 210, 912, 321, 12 ], [ 30, 250, 13, 454 ], [ 44, 250, 7, 454 ], [ 52, 250, 1, 454 ], [ 54, 250, 5, 454 ], [ 490, 418, 80, 9 ] ]
[ 10, 10, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 1, 1, 5, 5, 5, 5, 7 ]
bae73abc580b237d292a9a7d0b9507ddf709ee3409e5bae8fefd07c073ca2b54
1207.7098.pdf
0
42
612
792
1,025
1,025
arxiv_doublespaced
scientific_articles
3380
[ "However, the last column of", "∇", "$^{2}$G", "is", "The combination of (83) and (84) yields (85).", "∇", "$^{2}$G$_{·}$$_{N}$$_{+1}$", "=", "", "", "", "", "∂", "$^{2}$G", "∂ω$_{1}$∂µ", "∂", "$^{2}$G", "∂ω$_{2}$∂µ", "...", "∂", "$^{2}$G", "∂ω$_{N}$ ∂µ", "∂", "$^{2}$G", "∂µ", "2", "", "", "", "", "=", "1", "µ", "2", "[", "∑", "N", "i", "$_{=1}$θ$_{i}$", "e$^{ω}$", "i", "µ", "]", "2", "", "", "", "", "θ$_{1}$e$^{ω$_{1}$}$", "µ", "∑", "N", "i", "$_{=1}$θ$_{i}$", "(", "ω$_{i}$", "−", "ω$_{1}$", ")", "e$^{ω}$", "i", "µ", "θ$_{2}$e$^{ω$_{2}$}$", "µ", "N", "i", "$_{=1}$θ$_{i}$", "(", "ω$_{i}$", "−", "ω$_{2}$", ")", "e$^{ω}$", "i", "µ", "...", "θ$_{N}$e$^{ω}$", "N", "µ", "∑", "N", "i", "$_{=1}$θ$_{i}$", "(", "ω$_{i}$", "−", "ω$_{N}$", ")", "e$^{ω}$", "i", "µ", "1", "µ", "∑", "N", "i", "$_{=1}$θ$_{i}$", "e$^{ω}$", "i", "µ", "∑", "N", "i", "$_{=1}$θ$_{i}$", "ω", "2", "$_{i}$e$^{ω}$", "i", "µ", "−", "1", "µ", "[", "∑", "N", "i", "$_{=1}$θ$_{i}$", "ω$_{i}$e$^{ω}$", "i", "µ", "]", "2", "", "", "", "", "(84)", "N", "∑", "k", "=1", "ω$_{k}$", "µ", "∇", "$^{2}$G$_{·}$$_{,k}$", "+", "∇", "$^{2}$G$_{·}$$_{N}$$_{+1}$", "=", "", "", "", "", "0", "0", "...", "0", "0", "", "", "", "", "(85)", "det", "∇", "$^{2}$G", "=", "det", "[", "∇", "$^{2}$G$_{·}$$_{,}$$_{1}$", "∇", "$^{2}$G$_{·}$$_{,}$$_{2}$", "...", "∇", "$^{2}$G$_{·}$$_{,N}$", "∇", "$^{2}$G$_{·}$$_{,N}$$_{+1}$", "]", "=", "det", "∇", "$^{2}$G$_{·}$$_{,}$$_{1}$", "∇", "$^{2}$G$_{·}$$_{,}$$_{2}$", "...", "∇", "$^{2}$G$_{·}$$_{,N}$", "∑", "N", "k", "=1", "ω$_{k}$", "µ", "∇", "$^{2}$G$_{·}$$_{,k}$", "+", "∇", "$^{2}$G$_{·}$$_{N}$$_{+1}$", "]", "=", "det", "[", "∇", "$^{2}$G$_{·}$$_{,}$$_{1}$", "∇", "$^{2}$G$_{·}$$_{,}$$_{2}$", "...", "∇", "$^{2}$G$_{·}$$_{,N}$", "0", "]", "=", "0", "(86)", "49", "Because both", "∂", "$^{2}$G", "∂µ", "2", "and", "det", "∇", "$^{2}$G", "are nonnegative,", "G", "is a convex function.", "(9)", "is a convex optimization problem because both the objective function and the feasible set", "are convex.", "Therefore," ]
[ [ 120, 123, 286, 14 ], [ 120, 123, 286, 14 ], [ 120, 123, 286, 14 ], [ 120, 123, 286, 14 ], [ 120, 451, 367, 14 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 169, 161, 734, 289 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 372, 490, 532, 143 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 191, 683, 712, 110 ], [ 503, 959, 18, 14 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 824, 576, 20 ], [ 120, 868, 783, 40 ], [ 120, 868, 783, 40 ], [ 120, 868, 783, 40 ], [ 120, 641, 81, 14 ] ]
[ [ 120, 123, 222, 14 ], [ 349, 123, 15, 14 ], [ 364, 123, 22, 14 ], [ 393, 123, 13, 14 ], [ 120, 451, 367, 14 ], [ 169, 217, 15, 14 ], [ 184, 217, 57, 14 ], [ 259, 217, 14, 14 ], [ 290, 161, 12, 42 ], [ 290, 186, 12, 42 ], [ 290, 236, 12, 42 ], [ 290, 262, 12, 42 ], [ 322, 164, 7, 9 ], [ 330, 164, 18, 9 ], [ 314, 174, 41, 9 ], [ 322, 190, 7, 9 ], [ 330, 190, 18, 9 ], [ 314, 201, 41, 9 ], [ 328, 219, 15, 14 ], [ 322, 243, 7, 9 ], [ 330, 243, 18, 9 ], [ 312, 253, 45, 9 ], [ 322, 269, 7, 9 ], [ 330, 269, 18, 9 ], [ 323, 280, 16, 9 ], [ 340, 279, 6, 6 ], [ 369, 161, 12, 42 ], [ 369, 186, 12, 42 ], [ 369, 236, 12, 42 ], [ 369, 262, 12, 42 ], [ 259, 355, 14, 14 ], [ 354, 345, 9, 14 ], [ 292, 372, 10, 14 ], [ 303, 371, 7, 10 ], [ 314, 366, 8, 42 ], [ 322, 371, 19, 42 ], [ 342, 369, 11, 9 ], [ 342, 379, 4, 9 ], [ 346, 372, 35, 14 ], [ 383, 372, 18, 14 ], [ 402, 367, 4, 7 ], [ 397, 374, 7, 7 ], [ 410, 366, 8, 42 ], [ 419, 363, 7, 10 ], [ 432, 298, 12, 42 ], [ 432, 323, 12, 42 ], [ 432, 365, 12, 42 ], [ 432, 400, 12, 42 ], [ 535, 303, 41, 14 ], [ 566, 305, 7, 7 ], [ 584, 302, 19, 42 ], [ 603, 300, 11, 9 ], [ 603, 310, 4, 9 ], [ 608, 303, 35, 14 ], [ 647, 303, 7, 14 ], [ 654, 303, 16, 14 ], [ 676, 303, 14, 14 ], [ 695, 303, 18, 14 ], [ 715, 303, 7, 14 ], [ 725, 303, 18, 14 ], [ 743, 298, 4, 7 ], [ 738, 305, 7, 7 ], [ 535, 329, 41, 14 ], [ 566, 331, 7, 7 ], [ 603, 326, 11, 9 ], [ 603, 337, 4, 9 ], [ 608, 329, 35, 14 ], [ 647, 329, 7, 14 ], [ 654, 329, 16, 14 ], [ 676, 329, 14, 14 ], [ 695, 329, 18, 14 ], [ 715, 329, 7, 14 ], [ 725, 329, 18, 14 ], [ 743, 324, 4, 7 ], [ 738, 331, 7, 7 ], [ 636, 356, 15, 14 ], [ 527, 382, 40, 14 ], [ 568, 377, 9, 7 ], [ 566, 384, 7, 7 ], [ 586, 381, 19, 42 ], [ 605, 379, 11, 9 ], [ 605, 389, 4, 9 ], [ 610, 382, 35, 14 ], [ 650, 382, 7, 14 ], [ 657, 382, 16, 14 ], [ 679, 382, 14, 14 ], [ 697, 382, 23, 14 ], [ 722, 382, 7, 14 ], [ 733, 382, 18, 14 ], [ 751, 377, 4, 7 ], [ 746, 384, 7, 7 ], [ 455, 406, 7, 10 ], [ 454, 417, 8, 9 ], [ 468, 408, 19, 42 ], [ 487, 405, 11, 9 ], [ 487, 416, 4, 9 ], [ 492, 409, 35, 14 ], [ 528, 409, 18, 14 ], [ 547, 404, 4, 7 ], [ 542, 411, 7, 7 ], [ 558, 408, 19, 42 ], [ 578, 405, 11, 9 ], [ 578, 416, 4, 9 ], [ 583, 409, 35, 14 ], [ 619, 409, 11, 14 ], [ 631, 406, 7, 10 ], [ 631, 409, 26, 14 ], [ 658, 404, 4, 7 ], [ 653, 411, 7, 7 ], [ 670, 409, 14, 14 ], [ 691, 406, 7, 10 ], [ 690, 417, 8, 9 ], [ 704, 403, 8, 42 ], [ 713, 408, 19, 42 ], [ 732, 405, 11, 9 ], [ 732, 416, 4, 9 ], [ 737, 409, 35, 14 ], [ 773, 409, 35, 14 ], [ 810, 404, 4, 7 ], [ 805, 411, 7, 7 ], [ 818, 403, 8, 42 ], [ 827, 399, 7, 10 ], [ 843, 298, 12, 42 ], [ 843, 323, 12, 42 ], [ 843, 365, 12, 42 ], [ 843, 400, 12, 42 ], [ 871, 355, 32, 14 ], [ 378, 532, 11, 9 ], [ 372, 543, 26, 42 ], [ 372, 567, 7, 9 ], [ 380, 566, 18, 10 ], [ 403, 537, 19, 14 ], [ 408, 556, 10, 14 ], [ 426, 546, 15, 14 ], [ 441, 546, 37, 14 ], [ 484, 546, 14, 14 ], [ 502, 546, 15, 14 ], [ 517, 546, 57, 14 ], [ 580, 546, 14, 14 ], [ 599, 490, 12, 42 ], [ 599, 515, 12, 42 ], [ 599, 565, 12, 42 ], [ 599, 591, 12, 42 ], [ 623, 495, 9, 14 ], [ 623, 522, 9, 14 ], [ 620, 548, 15, 14 ], [ 623, 574, 9, 14 ], [ 623, 601, 9, 14 ], [ 643, 490, 12, 42 ], [ 643, 515, 12, 42 ], [ 643, 565, 12, 42 ], [ 643, 591, 12, 42 ], [ 871, 546, 32, 14 ], [ 191, 688, 25, 14 ], [ 219, 688, 15, 14 ], [ 234, 688, 22, 14 ], [ 273, 688, 14, 14 ], [ 304, 688, 25, 14 ], [ 333, 683, 8, 42 ], [ 350, 690, 15, 14 ], [ 365, 690, 37, 14 ], [ 420, 690, 15, 14 ], [ 435, 690, 37, 14 ], [ 489, 690, 15, 14 ], [ 521, 690, 15, 14 ], [ 537, 690, 41, 14 ], [ 597, 690, 15, 14 ], [ 612, 690, 60, 14 ], [ 682, 683, 8, 42 ], [ 273, 719, 14, 14 ], [ 304, 719, 25, 14 ], [ 350, 720, 15, 14 ], [ 365, 720, 37, 14 ], [ 420, 720, 15, 14 ], [ 435, 720, 37, 14 ], [ 489, 720, 15, 14 ], [ 521, 720, 15, 14 ], [ 537, 720, 41, 14 ], [ 597, 720, 19, 42 ], [ 616, 717, 11, 9 ], [ 616, 728, 7, 9 ], [ 624, 727, 18, 10 ], [ 648, 717, 15, 9 ], [ 652, 728, 8, 9 ], [ 667, 720, 15, 14 ], [ 682, 720, 37, 14 ], [ 725, 720, 14, 14 ], [ 743, 720, 15, 14 ], [ 759, 720, 56, 14 ], [ 825, 713, 8, 42 ], [ 273, 749, 14, 14 ], [ 304, 749, 25, 14 ], [ 333, 743, 8, 42 ], [ 350, 751, 15, 14 ], [ 365, 751, 37, 14 ], [ 420, 751, 15, 14 ], [ 435, 751, 37, 14 ], [ 489, 751, 15, 14 ], [ 521, 751, 15, 14 ], [ 537, 751, 41, 14 ], [ 597, 751, 9, 14 ], [ 614, 743, 8, 42 ], [ 273, 779, 14, 14 ], [ 304, 779, 9, 14 ], [ 871, 779, 32, 14 ], [ 503, 959, 18, 14 ], [ 120, 827, 101, 14 ], [ 230, 824, 7, 9 ], [ 238, 824, 18, 9 ], [ 231, 835, 16, 9 ], [ 248, 834, 6, 6 ], [ 265, 827, 28, 14 ], [ 301, 827, 25, 14 ], [ 329, 827, 15, 14 ], [ 344, 827, 22, 14 ], [ 373, 827, 130, 14 ], [ 510, 827, 14, 14 ], [ 531, 827, 165, 14 ], [ 148, 868, 19, 14 ], [ 183, 868, 721, 14 ], [ 120, 895, 89, 14 ], [ 120, 641, 81, 14 ] ]
[ 9, 9, 9, 9, 9, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
dc62cf16bee76006d8f375c714e2bda36ee6bc90c20d500e2dee7980f7fdc19c
1509.07155.pdf
50
57
612
792
1,025
1,025
arxiv_doublespaced
scientific_articles
3381
[ "Race and Registration Information ", "To register for RAAM, go to the RAAM website and click on ", "Register Now", ". ", "Once you have registered, you will receive a confirmation email. Then you will need to ", "log in to the RAAM Records System (RRS) to enter the details. The complete ", "instructions for the RRS are below. You can also find a link for the RRS Login at the top ", "right side of the RAAM website home page. ", "RAAM and RAW race details are contained in the following documents: ", "", "Race Divisions ", "", "Time Cutoffs and Checkpoints ", "", "What’s Included in your Entry Fee ", "", "Policies on Fees and Refunds ", "Each of these documents can be found on the website under Race Resources.", "RRS Documentation ", "This section contains instructions and information for entering data in the RRS. If you ", "have any questions or need any help, please contact us. ", "Questions About and Help with the RRS ", "[email protected]", "The RRS address is https://www.raceacrossamerica.org/racer-login.html", "What you can do ", "With the RRS you are able to: ", "", "Add or change Team members and Team information ", "", "Provide complete information for each Racer ", "", "Provide complete information about your Crew Chief and Crew ", "", "Enter a biography for each Racer ", "", "Enter information about your team and your team’s goals, purpose or the charity ", "you are supporting. ", "", "Submit Racer and Team photos ", "", "Provide information about charities you are supporting. ", "", "Electronically sign the Racer Agreement and Release Waivers ", "", "Reserve bicycle and vehicle inspection times ", "", "Reserve Photo times ", "", "Reserve Banquet space ", "", "Make payments online ", "GEAR 2020 ", "Page 12 " ]
[ [ 311, 94, 408, 22 ], [ 150, 141, 627, 17 ], [ 150, 141, 627, 17 ], [ 150, 141, 627, 17 ], [ 150, 176, 720, 70 ], [ 150, 176, 720, 70 ], [ 150, 176, 720, 70 ], [ 150, 176, 720, 70 ], [ 150, 266, 591, 17 ], [ 180, 283, 157, 17 ], [ 180, 283, 157, 17 ], [ 180, 301, 282, 17 ], [ 180, 301, 282, 17 ], [ 180, 319, 314, 17 ], [ 180, 319, 314, 17 ], [ 180, 337, 272, 17 ], [ 180, 337, 272, 17 ], [ 150, 373, 709, 18 ], [ 394, 411, 242, 22 ], [ 150, 451, 697, 35 ], [ 150, 451, 697, 35 ], [ 150, 505, 352, 35 ], [ 150, 505, 352, 35 ], [ 150, 541, 582, 17 ], [ 150, 577, 150, 17 ], [ 150, 594, 247, 17 ], [ 180, 612, 467, 17 ], [ 180, 612, 467, 17 ], [ 180, 630, 398, 17 ], [ 180, 630, 398, 17 ], [ 180, 648, 548, 17 ], [ 180, 648, 548, 17 ], [ 180, 666, 301, 17 ], [ 180, 666, 301, 17 ], [ 180, 684, 682, 35 ], [ 180, 684, 682, 35 ], [ 180, 684, 682, 35 ], [ 180, 719, 288, 17 ], [ 180, 719, 288, 17 ], [ 180, 737, 481, 17 ], [ 180, 737, 481, 17 ], [ 180, 755, 535, 17 ], [ 180, 755, 535, 17 ], [ 180, 773, 396, 17 ], [ 180, 773, 396, 17 ], [ 180, 791, 200, 17 ], [ 180, 791, 200, 17 ], [ 180, 809, 221, 17 ], [ 180, 809, 221, 17 ], [ 180, 826, 218, 17 ], [ 180, 826, 218, 17 ], [ 462, 906, 104, 35 ], [ 462, 906, 104, 35 ] ]
[ [ 311, 94, 408, 22 ], [ 150, 141, 501, 17 ], [ 652, 141, 115, 17 ], [ 768, 141, 9, 17 ], [ 150, 176, 708, 17 ], [ 150, 194, 631, 17 ], [ 150, 212, 720, 17 ], [ 150, 230, 361, 17 ], [ 150, 266, 591, 17 ], [ 180, 284, 7, 15 ], [ 211, 283, 127, 17 ], [ 180, 302, 7, 15 ], [ 211, 301, 252, 17 ], [ 180, 320, 7, 15 ], [ 211, 319, 284, 17 ], [ 180, 338, 7, 15 ], [ 211, 337, 241, 17 ], [ 150, 373, 709, 18 ], [ 394, 411, 242, 22 ], [ 150, 451, 697, 17 ], [ 150, 469, 447, 17 ], [ 150, 505, 352, 17 ], [ 150, 523, 281, 17 ], [ 150, 541, 582, 17 ], [ 150, 577, 150, 17 ], [ 150, 594, 247, 17 ], [ 180, 613, 7, 15 ], [ 211, 612, 437, 17 ], [ 180, 631, 7, 15 ], [ 211, 630, 368, 17 ], [ 180, 649, 7, 15 ], [ 211, 648, 518, 17 ], [ 180, 667, 7, 15 ], [ 211, 666, 271, 17 ], [ 180, 684, 7, 15 ], [ 211, 684, 651, 17 ], [ 211, 701, 160, 17 ], [ 180, 720, 7, 15 ], [ 211, 719, 258, 17 ], [ 180, 738, 7, 15 ], [ 211, 737, 451, 17 ], [ 180, 756, 7, 15 ], [ 211, 755, 505, 17 ], [ 180, 774, 7, 15 ], [ 211, 773, 366, 17 ], [ 180, 792, 7, 15 ], [ 211, 791, 170, 17 ], [ 180, 809, 7, 15 ], [ 211, 809, 191, 17 ], [ 180, 827, 7, 15 ], [ 211, 826, 188, 17 ], [ 462, 906, 104, 17 ], [ 480, 923, 69, 17 ] ]
[ 7, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 9, 9, 7, 7, 9, 7, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4, 4 ]
c87d12486b01190401c7d016ffbbc04c0d82edc9c4c3f8489e76eb9e43cf5a33
2020 RAAM GEAR_FINAL.pdf
12
66
612
792
1,025
1,025
manuals
manuals
3382
[ "The following table provides a reconciliation of benefit obligations, plan assets, and unfunded status related to our", "qualified defined benefit pension plans and our retiree medical and life insurance plans:", "(In millions)", "Qualified Defined Benefit", "Pension Plans", "Retiree Medical and", "Life Insurance Plans", "2011", "2010", "2011", "2010", "Change in benefit obligation", "Beginning balance", "$ 35,773", "$ 32,817", "$ 3,046", "$ 2,938", "Service cost", "974", "903", "32", "36", "Interest cost", "1,918", "1,876", "162", "166", "Benefits paid", "(1,685)", "(1,592)", "(363)", "(352)", "Actuarial losses (gains)", "3,632", "2,032", "(28)", "105", "Plan amendments", "4", "94", "11", "—", "Divestitures/curtailments", "(a)", "—", "(357)", "—", "(10)", "Medicare Part D subsidy", "—", "—", "2", "18", "Participants’ contributions", "—", "—", "161", "145", "Ending balance", "$ 40,616", "$ 35,773", "$ 3,023", "$ 3,046", "Change in plan assets", "Beginning balance at fair value", "$ 25,345", "$ 22,154", "$ 1,833", "$ 1,630", "Actual return on plan assets", "1,349", "2,886", "114", "86", "Benefits paid", "(1,685)", "(1,592)", "(363)", "(352)", "Our contributions", "2,285", "2,240", "—", "311", "Divestitures and other", "(a)", "(2)", "(343)", "2", "(5)", "Medicare Part D subsidy", "—", "—", "2", "18", "Participants’ contributions", "—", "—", "161", "145", "Ending balance at fair value", "$ 27,292", "$ 25,345", "$ 1,749", "$ 1,833", "Unfunded status of the plans", "$(13,324)", "$(10,428)", "$(1,274)", "$(1,213)", "Amounts recognized in the Balance Sheets", "Prepaid pension asset", "$", "178", "$", "179", "$—", "$—", "Accrued postretirement benefit liabilities", "(13,502)", "(10,607)", "(1,274)", "(1,213)", "Accumulated other comprehensive loss (pre-tax) related to:", "Net actuarial losses", "15,698", "12,263", "648", "684", "Prior service cost (credit)", "377", "455", "(10)", "(37)", "(a)", "Primarily reflects the transfer of assets and liabilities associated with the 2010 sale of EIG (Note 14). An expense of $109 million was", "recognized in connection with this settlement, which reduced the gain on sale.", "The accumulated benefit obligation (ABO) for all qualified defined benefit pension plans was $35.7 billion and", "$31.4 billion at December 31, 2011 and 2010. Certain key information related to those plans where ABO was in excess of", "plan assets as of December 31, 2011 and 2010 is as follows:", "We also sponsor nonqualified defined benefit plans to provide benefits in excess of qualified plan limits. The aggregate", "liabilities for these plans at December 31, 2011 and 2010 were $907 million and $850 million, which also represent the", "plans’ unfunded status. We have set aside certain assets totaling $283 million and $338 million as of December 31, 2011 and", "2010 in a Rabbi Trust which we expect to be used to pay obligations under our nonqualified defined benefit plans. In", "accordance with GAAP, those assets may not be used to offset the amount of the benefit obligation similar to the", "postretirement benefit plans in the table above. The unrecognized net actuarial losses at December 31, 2011 and 2010 were", "$476 million and $447 million, and the unrecognized prior service costs were not material. The expense associated with these", "plans totaled $104 million in 2011, $85 million in 2010, and $76 million in 2009. We also sponsor a small number of other", "70", "(In millions)", "2011", "2010", "Projected benefit obligation", "$40,478", "$35,640", "Accumulated benefit obligation", "35,516", "31,291", "Fair value of plan assets", "26,976", "25,033" ]
[ [ 77, 42, 869, 27 ], [ 77, 42, 869, 27 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 72, 88, 874, 525 ], [ 77, 630, 869, 25 ], [ 77, 630, 869, 25 ], [ 77, 630, 869, 25 ], [ 77, 679, 869, 43 ], [ 77, 679, 869, 43 ], [ 77, 679, 869, 43 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 77, 836, 869, 123 ], [ 503, 980, 17, 11 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ], [ 79, 741, 867, 66 ] ]
[ [ 112, 42, 835, 11 ], [ 77, 57, 606, 11 ], [ 77, 120, 85, 11 ], [ 552, 90, 177, 11 ], [ 591, 103, 99, 11 ], [ 789, 90, 141, 11 ], [ 787, 103, 143, 11 ], [ 575, 120, 34, 11 ], [ 671, 120, 34, 11 ], [ 798, 120, 34, 11 ], [ 886, 120, 34, 11 ], [ 94, 150, 208, 11 ], [ 112, 166, 128, 11 ], [ 561, 166, 61, 11 ], [ 658, 166, 61, 11 ], [ 789, 166, 53, 11 ], [ 876, 166, 53, 11 ], [ 129, 181, 83, 11 ], [ 597, 181, 25, 11 ], [ 694, 181, 25, 11 ], [ 825, 181, 17, 11 ], [ 912, 181, 17, 11 ], [ 129, 197, 84, 11 ], [ 584, 197, 38, 11 ], [ 681, 197, 38, 11 ], [ 816, 197, 25, 11 ], [ 904, 197, 25, 11 ], [ 129, 212, 91, 11 ], [ 579, 212, 50, 11 ], [ 675, 212, 50, 11 ], [ 810, 212, 37, 11 ], [ 898, 212, 37, 11 ], [ 129, 228, 162, 11 ], [ 584, 228, 38, 11 ], [ 681, 228, 38, 11 ], [ 819, 228, 28, 11 ], [ 904, 228, 25, 11 ], [ 129, 244, 122, 11 ], [ 615, 244, 8, 11 ], [ 702, 244, 17, 11 ], [ 825, 244, 17, 11 ], [ 904, 244, 17, 11 ], [ 129, 259, 173, 11 ], [ 306, 259, 12, 7 ], [ 597, 259, 17, 11 ], [ 688, 259, 37, 11 ], [ 816, 259, 17, 11 ], [ 907, 259, 28, 11 ], [ 129, 275, 171, 11 ], [ 597, 275, 17, 11 ], [ 694, 275, 17, 11 ], [ 833, 275, 8, 11 ], [ 912, 275, 17, 11 ], [ 129, 291, 182, 11 ], [ 597, 291, 17, 11 ], [ 694, 291, 17, 11 ], [ 816, 291, 25, 11 ], [ 904, 291, 25, 11 ], [ 112, 310, 106, 11 ], [ 561, 310, 61, 11 ], [ 658, 310, 61, 11 ], [ 789, 310, 53, 11 ], [ 876, 310, 53, 11 ], [ 94, 341, 158, 11 ], [ 112, 356, 215, 11 ], [ 561, 356, 61, 11 ], [ 658, 356, 61, 11 ], [ 789, 356, 53, 11 ], [ 876, 356, 53, 11 ], [ 129, 372, 191, 11 ], [ 584, 372, 38, 11 ], [ 681, 372, 38, 11 ], [ 816, 372, 25, 11 ], [ 912, 372, 17, 11 ], [ 129, 388, 91, 11 ], [ 579, 388, 50, 11 ], [ 675, 388, 50, 11 ], [ 810, 388, 37, 11 ], [ 898, 388, 37, 11 ], [ 129, 403, 122, 11 ], [ 584, 403, 38, 11 ], [ 681, 403, 38, 11 ], [ 816, 403, 17, 11 ], [ 904, 403, 25, 11 ], [ 129, 419, 152, 11 ], [ 284, 419, 12, 7 ], [ 609, 419, 20, 11 ], [ 688, 419, 37, 11 ], [ 833, 419, 8, 11 ], [ 915, 419, 20, 11 ], [ 129, 435, 171, 11 ], [ 597, 435, 17, 11 ], [ 694, 435, 17, 11 ], [ 833, 435, 8, 11 ], [ 912, 435, 17, 11 ], [ 129, 450, 182, 11 ], [ 597, 450, 17, 11 ], [ 694, 450, 17, 11 ], [ 816, 450, 25, 11 ], [ 904, 450, 25, 11 ], [ 112, 470, 193, 11 ], [ 561, 470, 61, 11 ], [ 658, 470, 61, 11 ], [ 789, 470, 53, 11 ], [ 876, 470, 53, 11 ], [ 112, 491, 197, 11 ], [ 561, 491, 67, 11 ], [ 658, 491, 67, 11 ], [ 789, 491, 58, 11 ], [ 876, 491, 58, 11 ], [ 94, 521, 311, 11 ], [ 112, 537, 148, 11 ], [ 561, 537, 8, 11 ], [ 597, 537, 25, 11 ], [ 658, 537, 8, 11 ], [ 694, 537, 25, 11 ], [ 789, 537, 63, 11 ], [ 876, 537, 63, 11 ], [ 112, 553, 283, 11 ], [ 570, 553, 58, 11 ], [ 666, 553, 58, 11 ], [ 797, 553, 50, 11 ], [ 885, 553, 50, 11 ], [ 112, 568, 411, 11 ], [ 129, 584, 134, 11 ], [ 576, 584, 47, 11 ], [ 672, 584, 47, 11 ], [ 816, 584, 25, 11 ], [ 904, 584, 25, 11 ], [ 129, 600, 175, 11 ], [ 597, 600, 25, 11 ], [ 694, 600, 25, 11 ], [ 819, 600, 28, 11 ], [ 907, 600, 28, 11 ], [ 77, 630, 11, 6 ], [ 108, 630, 838, 10 ], [ 108, 645, 485, 10 ], [ 112, 679, 835, 11 ], [ 77, 695, 869, 11 ], [ 77, 711, 415, 11 ], [ 112, 836, 835, 11 ], [ 77, 852, 869, 11 ], [ 77, 868, 869, 11 ], [ 77, 884, 869, 11 ], [ 77, 900, 869, 11 ], [ 77, 916, 869, 11 ], [ 77, 931, 869, 11 ], [ 77, 947, 869, 11 ], [ 503, 980, 17, 11 ], [ 94, 744, 85, 11 ], [ 794, 744, 34, 11 ], [ 884, 744, 34, 11 ], [ 94, 764, 191, 11 ], [ 783, 764, 56, 11 ], [ 874, 764, 56, 11 ], [ 94, 779, 218, 11 ], [ 792, 779, 47, 11 ], [ 882, 779, 47, 11 ], [ 94, 795, 167, 11 ], [ 792, 795, 47, 11 ], [ 882, 795, 47, 11 ] ]
[ 9, 9, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
044330dcebf6586301fa666889733aa7abcb655a0188efff5ac8ec2185bb4fb8
NYSE_LMT_2011.pdf
77
110
594
774
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3383
[ "May 3, 2012 ", "12 ", "US 2012/0108878 Al ", "least one water-soluble polar organic amphipathic solvent ", "providing at least one dry or liquid activator and a reactive ", "oxygen species; mixing the solution, the dry activator, the one ", "liquid activator, and the reactive oxygen species to form a ", "decontamination mixture; and physically associating the ", "decontamination mixture with the toxant. Each solvent can be ", "a polar aprotic solvent, a polar-protic solvent, or combina›", "tions thereof. More specifically, the polar organic amphip›", "athic solvent can be a nitrile, a ketone, an aldehyde, a car›", "boxylic acid, an amide, a furan, an alkanol, a polyol, or ", "combinations thereof. ", "[0126] ", "The volume fraction of water in the solution can ", "range from about 25% to about 75%, and the pH of the ", "solution is less than or equal to about 8.5. Alternatively, the ", "pH can be maintained at less than or equal to about 8.0. The ", "invention is active against all agents as pH values between ", "about 7 .0 to about 10.5; the buffer capacity is more effective ", "at pH values between about 8.0 to about 9.0. However, for ", "maximum active life, the preferred embodiment is main›", "tained a pH values from about 8.0 to about 8.5. The pH can ", "further be maintained at a pH of about 8.5. In one embodi›", "ment, the invention relates to a system for decontaminating ", "chemical and biological agents comprising a polar organic ", "amphipathic solvent; an activator; and a reactive oxygen spe›", "cies; whereupon mixing, the amounts of the water-soluble ", "polar organic amphipathic solvent, the activator and the reac›", "tive oxygen species are sufficient to maintain a pH ofless than ", "or equal to about 8.5 and to produce an amount of singlet ", "oxygen molecules or percarboxylate anions to decontaminate ", "a threat load of toxant. Alternatively, the pH can be main›", "tained at less than or equal to about 8.0 The invention is active ", "against all agents as pH values between about 7 .0 to about ", "10.5; the buffer capacity is more effective at pH values ", "between about 8.0 to about 9.0. However, for maximum ", "active life, the preferred embodiment is maintained a pH ", "values from about 8.0 to about 8.5. The pH can further be ", "maintained at a pH of about 8.5. ", "[0127] ", "As used herein, the term \"nitrile\" refers to any mol›", "ecule or organic compound or solvent that contains a -C N ", "functional group in which the carbon atom and the nitrogen ", "atom are triple bonded together. Examples of nitriles include, ", "but are not limited to acetonitrile and rose nitrile. The prefix ", "cyano- is used in chemical nomenclature to indicate the pres›", "ence of a nitrile group in a molecule. The term \"ketone\" or ", "\"aldehyde\" refers to any molecule or organic compound or ", "solvent that contains a ", "----CHx ", "O functional group in which ", "the carbon atom and the oxygen atom are double bonded ", "together. The term \"alkanol\" refers to any organic compound ", "or solvent containing a single -OH group in its chemical ", "structure. Examples of alkanols include, but are not limited ", "to, straight chain alcohols, such as methanol, ethanol, pro›", "panol, isopropanol, butanol and hexanol. The term \"polyol\" ", "refers to any organic solvent or solute containing at least two ", "-OH groups in its chemical structure. In polymer chemistry, ", "polyols are compounds with multiple hydroxyl functional ", "groups available for organic reactions. ", "[0128] ", "The term \"polyol\" includes, but is not limited to: (i) ", "dials (e.g., ethylene glycol, polyethylene glycol, propylene ", "glycol, polypropylene glycol, and any of the isomers of pro›", "panediol, butanediol or pentanediol); (ii) trials, which are ", "organic compounds containing three hydroxyl groups ( e.g., ", "the trihydric alcohol 1,2,3-propane-triol, CHiOH)CH(OH) ", "CHiOH), (glycerol); and (iii) polyols, includinghigherorder ", "polyols, which include any organic compound having more ", "than two -OH groups (e.g., polyethylene glycol, polypro›", "pylene glycol, and poly(tetramethylene ether) glycol and the ", "sugar polyols. ", "[0129] ", "The main use of polymeric polyols is as reactants to ", "make other polymers. For example, polymeric polyols can be ", "reacted with isocyanates to make polyurethanes, which use ", "consumes most polyether polyols. Common polyether dials ", "are polyethylene glycol, polypropylene glycol, and poly(tet›", "ramethylene ether) glycol. The preferred polyols of the ", "present invention are low molecular weight dials and trials ", "based on simple carbon chains, and the polyols known col›", "lectively ", "as ", "polyoxyethylene-polyoxypropylene ", "block ", "co-polymers. These compounds have low vapor pressures, ", "high boiling points, low freezing points, high valued flash ", "points, and low viscosities, especially under dynamic shear. ", "These compounds can also readily solubilize both amphip›", "athic organophosphates and sources of the reactive oxygen ", "species and chemical activators. ", "[0130] ", "The solvents used fortoxant hydrolysis can be polar, ", "aprotic and/or polar, protic solvents, or a combination thereof, ", "or polar, protic solvents individually. The use of these sol›", "vents can promote certain types of nucleophilic attack and ", "thereby enhance the oxidation and hydrolysis or perhydroly›", "sis of phosphate ester and blister agents, as well as of phos›", "pholipids, proteins, and DNA or RNA. ", "[0131] ", "In certain embodiments of the invention, hydrolysis ", "or perhydrolysis of toxants can be enhanced by using reactive ", "oxygen species, including, but not limited to hydrogen per›", "oxide and peroxyacetic acid. These two compounds represent ", "entirely different groups of chemical compounds. A peroxide ", "is a compound containing an oxygen-oxygen single bond, ", "while peroxy acids ( also known as peroxyacids and peracids) ", "are acids in which an acidic -OH group has been replaced by ", "an -00 ", "H group. Peroxides and peroxy acid have the general ", "structures: ", "[0132] ", "Peroxides tend to decompose easily and can some›", "times initiate explosive reactions. Peroxy acids are generally ", "not very stable in solution and decompose to ordinary oxy›", "acids and oxygen. One novel discovery of the present inven›", "tion is that dry sources of the peroxides, and separately, dry ", "sources of the peroxy acids, such as TAED, are stable when ", "dissolved in the organic/aqueous solutions of the invention, ", "and require activation for maximum efficacy and speed ", "against chemical and biological agents, including, but not ", "limited to, aromatic hydrocarbons, mustards, environmental ", "mutagens, organophosphate pesticides, nerve agents and bac›", "teria. ", "[0133] ", "Hydrogen peroxide decontaminates chemical war›", "fare agents (CWAs) more efficiently in alkaline solutions that ", "generate Hoo-. In some instances, the alkaline perhydrolysis ", "process is considerably faster than analogous alkaline ", "hydrolysis or neutral oxidation processes. This is attributed to ", "an increased nucleophilicity of HOO-due to the presence of ", "a lone pair of electrons on the oxygen atom adjacent to the ", "nucleophilic centre. This phenomenon is referred to as the ", "’a-effect’. Although not fully understood, a-effects are his-", "R-0-0-R’ ", "Peroxides ", "Peroxy acids " ]
[ [ 776, 73, 107, 12 ], [ 497, 92, 20, 12 ], [ 129, 73, 181, 12 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 140, 366, 138 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 285, 366, 333 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 623, 366, 242 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 129, 871, 366, 100 ], [ 520, 140, 365, 35 ], [ 520, 140, 365, 35 ], [ 520, 140, 365, 35 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 180, 366, 191 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 376, 365, 87 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 468, 365, 126 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 701, 365, 151 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 520, 858, 368, 113 ], [ 550, 621, 237, 56 ], [ 550, 621, 237, 56 ], [ 550, 621, 237, 56 ] ]
[ [ 776, 73, 107, 12 ], [ 497, 92, 20, 12 ], [ 129, 73, 181, 12 ], [ 129, 140, 364, 9 ], [ 129, 153, 365, 9 ], [ 129, 166, 365, 9 ], [ 129, 179, 364, 9 ], [ 129, 192, 365, 9 ], [ 129, 205, 365, 9 ], [ 129, 218, 360, 9 ], [ 129, 231, 360, 9 ], [ 129, 244, 360, 9 ], [ 129, 257, 366, 9 ], [ 129, 269, 134, 9 ], [ 130, 285, 40, 10 ], [ 184, 285, 311, 9 ], [ 129, 298, 365, 9 ], [ 130, 311, 364, 9 ], [ 129, 324, 365, 9 ], [ 129, 337, 365, 9 ], [ 129, 349, 364, 9 ], [ 129, 363, 364, 9 ], [ 129, 375, 361, 9 ], [ 129, 388, 365, 9 ], [ 129, 401, 360, 9 ], [ 129, 414, 365, 9 ], [ 129, 427, 364, 9 ], [ 129, 440, 360, 9 ], [ 129, 453, 365, 9 ], [ 129, 466, 360, 9 ], [ 129, 479, 366, 9 ], [ 129, 491, 365, 9 ], [ 129, 504, 365, 9 ], [ 129, 518, 360, 9 ], [ 129, 530, 365, 9 ], [ 129, 543, 365, 9 ], [ 130, 556, 363, 9 ], [ 129, 569, 365, 9 ], [ 129, 582, 364, 9 ], [ 129, 595, 366, 9 ], [ 129, 608, 196, 9 ], [ 130, 623, 40, 10 ], [ 184, 623, 305, 9 ], [ 129, 636, 363, 9 ], [ 129, 649, 365, 9 ], [ 129, 662, 364, 9 ], [ 129, 675, 365, 9 ], [ 129, 688, 360, 9 ], [ 129, 700, 366, 9 ], [ 129, 714, 366, 9 ], [ 130, 727, 134, 9 ], [ 264, 727, 48, 9 ], [ 323, 727, 172, 9 ], [ 129, 740, 365, 9 ], [ 129, 752, 366, 9 ], [ 129, 765, 364, 9 ], [ 130, 778, 365, 9 ], [ 129, 791, 361, 9 ], [ 129, 804, 365, 9 ], [ 129, 817, 364, 9 ], [ 129, 830, 364, 9 ], [ 129, 843, 364, 9 ], [ 129, 856, 232, 9 ], [ 130, 871, 40, 10 ], [ 184, 871, 308, 9 ], [ 129, 884, 365, 9 ], [ 129, 897, 360, 9 ], [ 129, 910, 365, 9 ], [ 129, 923, 363, 9 ], [ 129, 936, 365, 9 ], [ 129, 949, 366, 9 ], [ 129, 962, 365, 9 ], [ 520, 140, 361, 9 ], [ 520, 153, 365, 9 ], [ 521, 166, 86, 9 ], [ 521, 180, 40, 10 ], [ 575, 180, 308, 9 ], [ 520, 193, 366, 9 ], [ 520, 206, 365, 9 ], [ 520, 219, 364, 9 ], [ 520, 232, 360, 9 ], [ 520, 245, 365, 9 ], [ 520, 258, 365, 9 ], [ 520, 271, 360, 9 ], [ 520, 284, 55, 9 ], [ 588, 284, 15, 9 ], [ 617, 284, 218, 9 ], [ 848, 284, 38, 9 ], [ 520, 297, 364, 9 ], [ 520, 309, 364, 9 ], [ 520, 322, 363, 9 ], [ 520, 335, 360, 9 ], [ 520, 348, 365, 9 ], [ 521, 361, 194, 9 ], [ 521, 376, 40, 10 ], [ 575, 376, 308, 9 ], [ 520, 389, 363, 9 ], [ 520, 402, 360, 9 ], [ 520, 415, 365, 9 ], [ 520, 428, 361, 9 ], [ 521, 440, 360, 9 ], [ 520, 454, 234, 9 ], [ 521, 468, 40, 10 ], [ 575, 468, 309, 9 ], [ 520, 481, 364, 9 ], [ 520, 494, 360, 9 ], [ 520, 507, 365, 9 ], [ 520, 520, 365, 9 ], [ 520, 533, 364, 9 ], [ 520, 546, 365, 9 ], [ 520, 559, 364, 9 ], [ 520, 572, 62, 9 ], [ 574, 572, 311, 9 ], [ 521, 585, 64, 9 ], [ 521, 701, 40, 10 ], [ 575, 701, 305, 9 ], [ 520, 714, 364, 9 ], [ 520, 727, 360, 9 ], [ 520, 740, 360, 9 ], [ 520, 753, 364, 9 ], [ 521, 766, 365, 9 ], [ 520, 779, 363, 9 ], [ 520, 792, 365, 9 ], [ 520, 805, 365, 9 ], [ 520, 818, 364, 9 ], [ 520, 831, 361, 9 ], [ 520, 843, 33, 9 ], [ 521, 858, 40, 10 ], [ 575, 858, 305, 9 ], [ 520, 871, 365, 9 ], [ 520, 884, 364, 9 ], [ 520, 897, 365, 9 ], [ 520, 910, 363, 9 ], [ 520, 923, 368, 9 ], [ 520, 936, 365, 9 ], [ 520, 949, 365, 9 ], [ 521, 961, 359, 9 ], [ 550, 653, 101, 8 ], [ 573, 669, 48, 7 ], [ 704, 668, 62, 7 ] ]
[ 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 6, 6, 6 ]
1daeced71fe80833fcd5b5edd8f07439c5f29a1f90194a99d632d1a700b830de
20120108878_AdobeOCR.pdf
25
46
612
792
1,025
1,025
patents_superacid_pags
patents
3384
[ "PART IV ", "ITEM 15 Exhibits and Financial Statement Schedules", "JETBLUE AIRWAYS CORPORATION", " - ", "2013 Annual Report", "71", "2.1", "Membership Interest Purchase Agreement among Harris Corporation and Thales Avionics In-Flight Systems, LLC and In-Flight ", "Liquidating, LLC and Glenn S. Latta and Jeffrey A. Frisco and Andreas de Greef and JetBlue Airways Corporation, dated as of ", "September 9, 2002 relating to the interests in LiveTV, LLC—incorporated by reference to Exhibit 2.1 to our Current Report on", "Form 8-K dated September 27, 2002.", "3.2(a)", "Amended and Restated Certificate of Incorporation of JetBlue Airways Corporation—incorporated by reference to Exhibit 3.5 to our ", "Quarterly Report on Form 10-Q for the quarter ended June 30, 2008.", "3.2(b)", "Certificate of Amendment of Certificate of Incorporation, dated May 20, 2010—incorporated by reference to Exhibit 3.2(b) to our ", "Quarterly Report on Form 10-Q for the quarter ended June 30, 2010.", "3.3(e)", "Fifth Amended and Restated Bylaws of JetBlue Airways Corporation—incorporated by reference to Exhibit 3.6 of our Quarterly ", "Report on Form 10-Q for the quarter ended June 30, 2008.", "3.3(f)", "Fifth Amended and Restated Bylaws of JetBlue Airways Corporation (consolidated amendments as of November 12, 2009)—", "incorporated by reference to Exhibit 3.3(f) to our Annual Report on Form 10-K for the year ended December 31, 2009.", "3.3(g)", "Amended Consolidated Fifth Amended and Restated Bylaws of JetBlue Airways Corporation—incorporated by reference to", "Exhibit 3.1 to our Current Report on Form 8-K dated April 11, 2011.", "3.3(h)", "Amended Consolidated Fifth Amended and Restated Bylaws of JetBlue Airways Corporation—incorporated by reference to", "Exhibit 3.1 to our Current Report on Form 8-K dated September 18, 2012.", "3.4", "Certificate of Designation of Series A Participating Preferred Stock dated April 1, 2002—incorporated by reference to Exhibit 3.2 to ", "our Current Report on Form 8-K dated July 10, 2003.", "4.1", "Specimen Stock Certificate—incorporated by reference to Exhibit 4.1 to the Registration Statement on Form S-1, as amended", "(File No. 333-82576).", "4.2", "Amended and Restated Registration Rights Agreement, dated as of August 10, 2000, by and among JetBlue Airways Corporation ", "and the Stockholders named therein—incorporated by reference to Exhibit 4.2 to the Registration Statement on Form S-1, as ", "amended (File No. 333-82576).", "4.2(a)", "Amendment No. 1, dated as of June 30, 2003, to Amended and Restated Registration Rights Agreement, dated as of August 10, ", "2000, by and among JetBlue Airways Corporation and the Stockholders named therein—incorporated by reference to Exhibit 4.2 ", "to the Registration Statement on Form S-3, filed on July 3, 2003, as amended on July 10, 2003 (File No. 333-106781).", "4.2(b)", "Amendment No. 2, dated as of October 6, 2003, to Amended and Restated Registration Rights Agreement, dated as of", "August 10, 2000, by and among JetBlue Airways Corporation and the Stockholders named therein—incorporated by reference to ", "Exhibit 4.9 to the Registration Statement on Form S-3, filed on October 7, 2003 (File No. 333-109546).", "4.2(c)", "Amendment No. 3, dated as of October 4, 2004, to Amended and Restated Registration Rights Agreement, dated as of", "August 10, 2000, by and among JetBlue Airways Corporation and the Stockholders named therein—incorporated by reference", "to Exhibit 4.1 to our Current Report on Form 8-K/A dated October 4, 2004.", "4.2(d)", "Amendment No. 4, dated as of June 22, 2006, to Amended and Restated Registration Rights Agreement, dated as of August 10, ", "2000, by and among JetBlue Airways Corporation and the Stockholders named therein—incorporated by reference to Exhibit 4.19 ", "to our Registration Statement on Form S-3 ARS, filed on June 30, 2006 (File No. 333-135545).", "4.4", "Summary of Rights to Purchase Series A Participating Preferred Stock—incorporated by reference to Exhibit 4.4 to the Registration ", "Statement on Form S-1, as amended (File No. 333-82576).", "4.5", "Stockholder Rights Agreement—incorporated by reference to Exhibit 4.3 to our Annual Report on Form 10-K for the year ended ", "December 31, 2002.", "4.5(a)", "Amendment to the Stockholder Rights Agreement, dated as of January 17, 2008, by and between JetBlue Airways Corporation ", "and Computershare Trust Company, N.A.—incorporated by reference to Exhibit 4.5(a) to our Current Report on Form 8-K dated ", "January 23, 2008.", "4.7", "Form of Three-Month LIBOR plus 0.375% JetBlue Airways Pass Through Certificate Series 2004-1G-1-O—incorporated by ", "reference to Exhibit 4.1 to our Current Report on Form 8-K dated March 24, 2004.", "4.7(a)", "Form of Three-Month LIBOR plus 0.420% JetBlue Airways Pass Through Certificate Series 2004-1G-2-O—incorporated by ", "reference to Exhibit 4.2 to our Current Report on Form 8-K dated March 24, 2004.", "4.7(b)", "Form of Three-Month LIBOR plus 4.250% JetBlue Airways Pass Through Certificate Series 2004-1C-O—incorporated by reference ", "to Exhibit 4.3 to our Current Report on Form 8-K dated March 24, 2004.", "4.7(c)", "Pass Through Trust Agreement, dated as of March 24, 2004, between JetBlue Airways Corporation and Wilmington Trust ", "Company, as Pass Through Trustee, made with respect to the formation of JetBlue Airways Pass Through Trust, Series ", "2004-1G-1-O and the issuance of Three-Month LIBOR plus 0.375% JetBlue Airways Pass Through Trust, Series 2004-1G-1-O, ", "Pass Through Certificates—incorporated by reference to Exhibit 4.4 to our Current Report on Form 8-K dated March 24, 2004 (1).", "4.7(d)", "Revolving Credit Agreement (2004-1G-1), dated as of March 24, 2004, between Wilmington Trust Company, as Subordination ", "Agent, as agent and trustee for the JetBlue Airways 2004-1G-1 Pass Through Trust, as Borrower, and Landesbank Hessen-", "Thüringen Girozentrale, as Primary Liquidity Provider—incorporated by reference to Exhibit 4.5 to our Current Report on Form 8-K ", "dated March 24, 2004.", "4.7(e)", "Revolving Credit Agreement (2004-1G-2), dated as of March 24, 2004, between Wilmington Trust Company, as Subordination ", "Agent, as agent and trustee for the JetBlue Airways 2004-1G-2 Pass Through Trust, as Borrower, and Landesbank Hessen-", "Thüringen Girozentrale, as Primary Liquidity Provider—incorporated by reference to Exhibit 4.6 to our Current Report on Form 8-K ", "dated March 24, 2004.", "EXHIBIT INDEX" ]
[ [ 622, 24, 343, 29 ], [ 622, 24, 343, 29 ], [ 606, 997, 377, 12 ], [ 606, 997, 377, 12 ], [ 606, 997, 377, 12 ], [ 606, 997, 377, 12 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 106, 884, 812 ], [ 73, 87, 98, 12 ] ]
[ [ 894, 24, 71, 14 ], [ 622, 41, 335, 13 ], [ 606, 997, 218, 12 ], [ 824, 997, 12, 12 ], [ 837, 997, 116, 12 ], [ 969, 997, 14, 12 ], [ 77, 108, 19, 12 ], [ 174, 108, 749, 12 ], [ 174, 121, 748, 12 ], [ 174, 134, 739, 12 ], [ 174, 146, 225, 12 ], [ 77, 161, 33, 12 ], [ 174, 161, 780, 12 ], [ 174, 174, 409, 12 ], [ 77, 189, 33, 12 ], [ 174, 189, 761, 12 ], [ 174, 201, 409, 12 ], [ 77, 216, 33, 12 ], [ 174, 216, 751, 12 ], [ 174, 229, 352, 12 ], [ 77, 244, 29, 12 ], [ 174, 244, 742, 12 ], [ 174, 257, 698, 12 ], [ 77, 272, 33, 12 ], [ 174, 272, 729, 12 ], [ 174, 284, 402, 12 ], [ 77, 299, 33, 12 ], [ 174, 299, 729, 12 ], [ 174, 312, 442, 12 ], [ 77, 327, 19, 12 ], [ 174, 327, 775, 12 ], [ 174, 340, 317, 12 ], [ 77, 355, 19, 12 ], [ 174, 355, 747, 12 ], [ 174, 367, 125, 12 ], [ 77, 382, 19, 12 ], [ 174, 382, 774, 12 ], [ 174, 395, 745, 12 ], [ 174, 408, 185, 12 ], [ 77, 423, 33, 12 ], [ 174, 423, 770, 12 ], [ 174, 435, 768, 12 ], [ 174, 448, 702, 12 ], [ 77, 463, 33, 12 ], [ 174, 463, 710, 12 ], [ 174, 475, 771, 12 ], [ 174, 488, 608, 12 ], [ 77, 503, 33, 12 ], [ 174, 503, 710, 12 ], [ 174, 516, 751, 12 ], [ 174, 528, 446, 12 ], [ 77, 543, 33, 12 ], [ 174, 543, 770, 12 ], [ 174, 556, 776, 12 ], [ 174, 568, 561, 12 ], [ 77, 584, 19, 12 ], [ 174, 584, 779, 12 ], [ 174, 596, 351, 12 ], [ 77, 611, 19, 12 ], [ 174, 611, 760, 12 ], [ 174, 624, 123, 12 ], [ 77, 639, 33, 12 ], [ 174, 639, 759, 12 ], [ 174, 651, 759, 12 ], [ 174, 664, 108, 12 ], [ 77, 679, 19, 12 ], [ 174, 679, 733, 12 ], [ 174, 692, 487, 12 ], [ 77, 707, 33, 12 ], [ 174, 707, 733, 12 ], [ 174, 719, 487, 12 ], [ 77, 734, 33, 12 ], [ 174, 734, 779, 12 ], [ 174, 747, 429, 12 ], [ 77, 762, 33, 12 ], [ 174, 762, 721, 12 ], [ 174, 775, 707, 12 ], [ 174, 787, 758, 12 ], [ 174, 800, 769, 12 ], [ 77, 815, 33, 12 ], [ 174, 815, 749, 12 ], [ 174, 827, 733, 12 ], [ 174, 840, 771, 12 ], [ 174, 853, 136, 12 ], [ 77, 868, 33, 12 ], [ 174, 868, 749, 12 ], [ 174, 880, 733, 12 ], [ 174, 893, 771, 12 ], [ 174, 905, 136, 12 ], [ 73, 87, 98, 12 ] ]
[ 5, 5, 4, 4, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 7 ]
63fd5f6adf735c7f491fafa87381b4afd9fe6fd415e1ee0c86c4e4d282319cdf
NASDAQ_JBLU_2013.pdf
76
96
594
774
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3385
[ "By derogation to article II.19.2, invoices must be submitted electronically via e-Prior following ", "configuration.", "Invoices must contain the following information: ", "Without prejudice to the art II.11 of the GENERAL CONDITIONS, contract amendments will be ", "electronically signed by the delegated EFSA Finance Unit responsible in the following cases: ", "In accordance with article II.18.i the contractor is obliged to notify EFSA of any change to their legal, ", "financial, technical, organisational or ownership situation which is likely to substantially affect the ", "Implementation of the contract ", "or substantially modify the conditions under which the contract was ", "initially awarded. This includes but is not limited to notifying EFSA of changes which may have affected ", "the original declaration on honour on exclusion criteria; declaration on honour on selection criteria or ", "the status of the contractor in the Early Detection and Exclusion System (EDES).", "By derogation to article II.6.3, in the event that a third party brings an action against EFSA in ", "connection with alleged breach of intellectual property rights, the contractor will be liable for the whole ", "amount of consequential loss or damages caused to EFSA as a consequence of an absent or incorrect ", "declaration on pre-existing rights. ", "13 ", "I.15.3 Liability for alleged breach of intellectual property rights ", "I.15.2", "Obligation to notify EFSA of changes", "I.15.1", "Signature of amendments ", "I.15 OTHER SPECIAL CONDITIONS ", "1)", "Your contact at EFSA (name, title, telephone, number, email address); ", "2)", "The reference number of the contract, with the requested amount in euro; ", "3)", "The mention “the payment should be made into the following bank account” and the following ", "information: beneficiary, bank name and address, bank account number; ", "4)", "Detailed billing information; ", "5)", " Each PDF file should only contain one invoice. Any other supporting documents should be ", "scanned and saved separately to the PDF invoice. ", "-", "Price revision;", "-", "Change of bank account; ", "-", "Change of legal entity, and also in case of new name, or where the change of legal entity ", "results from a merge or universal succession. This excludes change of legal entity ", "involving: ", "* assignment of contract to a new entity, total or partial, including the payments or;", "* change of legal entity where a new institutional DoI has to be assessed" ]
[ [ 73, 87, 884, 29 ], [ 73, 87, 884, 29 ], [ 73, 132, 426, 14 ], [ 73, 341, 883, 29 ], [ 73, 341, 883, 29 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 565, 884, 88 ], [ 73, 701, 884, 58 ], [ 73, 701, 884, 58 ], [ 73, 701, 884, 58 ], [ 73, 701, 884, 58 ], [ 976, 973, 30, 16 ], [ 73, 671, 620, 14 ], [ 73, 534, 476, 14 ], [ 73, 534, 476, 14 ], [ 73, 312, 380, 14 ], [ 73, 312, 380, 14 ], [ 73, 280, 336, 14 ], [ 102, 161, 657, 14 ], [ 102, 161, 657, 14 ], [ 102, 176, 690, 14 ], [ 102, 176, 690, 14 ], [ 102, 191, 854, 29 ], [ 102, 191, 854, 29 ], [ 102, 191, 854, 29 ], [ 102, 220, 284, 14 ], [ 102, 220, 284, 14 ], [ 102, 235, 854, 29 ], [ 102, 235, 854, 29 ], [ 102, 235, 854, 29 ], [ 122, 385, 185, 14 ], [ 122, 385, 185, 14 ], [ 122, 400, 285, 14 ], [ 122, 400, 285, 14 ], [ 122, 415, 835, 44 ], [ 122, 415, 835, 44 ], [ 122, 415, 835, 44 ], [ 122, 415, 835, 44 ], [ 219, 459, 732, 14 ], [ 219, 474, 635, 14 ] ]
[ [ 73, 87, 884, 14 ], [ 73, 102, 119, 14 ], [ 73, 132, 426, 14 ], [ 73, 341, 883, 14 ], [ 73, 356, 801, 14 ], [ 73, 565, 884, 14 ], [ 73, 580, 884, 14 ], [ 73, 595, 279, 14 ], [ 354, 595, 602, 14 ], [ 73, 610, 884, 14 ], [ 73, 625, 884, 14 ], [ 73, 639, 701, 14 ], [ 73, 701, 883, 14 ], [ 73, 716, 883, 14 ], [ 73, 730, 884, 14 ], [ 73, 745, 300, 14 ], [ 976, 973, 30, 16 ], [ 73, 671, 620, 14 ], [ 73, 534, 56, 14 ], [ 197, 534, 352, 14 ], [ 73, 312, 58, 14 ], [ 197, 312, 256, 14 ], [ 73, 280, 336, 14 ], [ 102, 161, 19, 14 ], [ 128, 161, 632, 14 ], [ 102, 176, 19, 14 ], [ 127, 176, 664, 14 ], [ 102, 191, 22, 14 ], [ 139, 191, 817, 14 ], [ 133, 206, 642, 14 ], [ 102, 220, 19, 14 ], [ 128, 220, 258, 14 ], [ 102, 235, 21, 14 ], [ 133, 235, 824, 14 ], [ 133, 250, 436, 14 ], [ 122, 385, 7, 14 ], [ 184, 385, 123, 14 ], [ 122, 400, 7, 14 ], [ 184, 400, 223, 14 ], [ 122, 415, 7, 14 ], [ 183, 415, 774, 14 ], [ 183, 430, 773, 14 ], [ 183, 445, 91, 14 ], [ 219, 459, 732, 14 ], [ 219, 474, 635, 14 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 7, 7, 7, 7, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3 ]
b55643980b656672d9340b6c5a95f9517653301da2e6530d82bf963d806c4581
EN-Annex 2 - draft FWC Service Contract.pdf
12
52
595
841
1,025
1,025
eu_tenders
government_tenders
3386
[ "resident of the province shall question its correctness and bring the matter to the", "attention of the provincial governor, in which case the provincial govern", "or, the", "provincial treasurer, and the president of the township in which the property lies", "shall form a board of assessors to determine its value. This board shall be", "empowered to call and examine witnesses, and after giving the owner and his", "witnesses, if", " any, opportunity to be heard, shall fix the value of the property", "alleged to be incorrectly valued. Its decision shall be final.", "THSaEC", "[1397-50.]", "S", "ECTION ", "2352", ".", "Failure to Declare — Determination of Value by Board.", "— ", "Any property owner who fails to declare the value of his property within the", "period fixed in the last preceding section, or that of the property of any resident of", "the province less than", " eighteen years of age within his control, shall immediately", "be warned by the councilor of his barrio that, unless he makes his declaration", "before the thirty-first day of January, he will be subject to a fine of five pesos, and,", "should he fail to make the ", "declaration within the period specified, the fine shall be", "adjudged against him by the township court, and shall be collected by the treasurer;", "or, in lieu of the payment thereof, he shall be compelled to work it out on public", "works within the township at ", "a rate per day to be fixed for each township by the", "provincial board, with the approval of the Department head first had. In the event", "of his not making his declaration before January thirty-first, the value of his", "property shall be fixed by the board of a", "ssessors provided for in the last preceding", "section.", "IEDHAT", "[1397-51.]", "S", "ECTION ", "2353", ".", "List of Taxpayers. — ", "On the basis of the declaration", "made and of the findings of the board of assessors, if any, the secretary shall", "prepare, on or before February fifteenth of each year, a list of the persons from", "whom the real-property tax ", "is due, with the amount due from each. This list shall", "be kept open to public inspection in his office.", "[1397-54; 1689-3.]", "S", "ECTION ", "2354", ".", "Notice to Taxpayers. — ", "All persons from whom such tax", "is due shall be notified by the councilors of their respective barrios to appear", "before the secretary and learn the amount of such tax, which shall be stated to them", "verbally by the secret", "ary, if they cannot read. In case of residents temporarily", "absent from the province, and nonresidents of the province, it shall be sufficient if", "a written notice be deposited, postage paid, in the post office, addressed to the", "owner, at his last known plac", "e of residence, or if no place of residence be known", "then to the barrio and municipality in which the property is situate.", "Copyright 2012", "CD Technologies Asia, Inc. and Accesslaw, Inc.", "Philippine Law Encyclopedia 2011", "695" ]
[ [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 140, 102, 745, 137 ], [ 202, 253, 87, 19 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 140, 285, 745, 273 ], [ 202, 573, 87, 19 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 140, 605, 745, 98 ], [ 202, 718, 157, 19 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 140, 751, 745, 157 ], [ 123, 925, 305, 9 ], [ 123, 925, 305, 9 ], [ 469, 925, 158, 9 ], [ 880, 925, 17, 9 ] ]
[ [ 140, 102, 744, 20 ], [ 140, 121, 684, 20 ], [ 824, 121, 60, 20 ], [ 140, 141, 744, 20 ], [ 140, 160, 744, 20 ], [ 140, 180, 744, 20 ], [ 140, 199, 115, 20 ], [ 255, 199, 629, 20 ], [ 140, 218, 521, 20 ], [ 675, 229, 24, 6 ], [ 202, 253, 87, 19 ], [ 202, 286, 12, 20 ], [ 214, 286, 87, 20 ], [ 301, 286, 44, 20 ], [ 346, 286, 5, 20 ], [ 371, 285, 512, 20 ], [ 140, 305, 25, 20 ], [ 168, 305, 716, 20 ], [ 140, 325, 744, 20 ], [ 140, 344, 200, 20 ], [ 340, 344, 545, 20 ], [ 140, 363, 744, 20 ], [ 140, 383, 744, 20 ], [ 140, 402, 241, 20 ], [ 381, 402, 503, 20 ], [ 140, 422, 744, 20 ], [ 140, 441, 744, 20 ], [ 140, 461, 274, 20 ], [ 415, 461, 469, 20 ], [ 140, 480, 744, 20 ], [ 140, 499, 744, 20 ], [ 140, 519, 365, 20 ], [ 505, 519, 379, 20 ], [ 140, 538, 68, 20 ], [ 223, 549, 25, 6 ], [ 202, 573, 87, 19 ], [ 202, 606, 12, 20 ], [ 214, 606, 87, 20 ], [ 301, 606, 44, 20 ], [ 346, 606, 5, 20 ], [ 371, 605, 213, 20 ], [ 585, 606, 299, 20 ], [ 140, 625, 744, 20 ], [ 140, 645, 745, 20 ], [ 140, 664, 254, 20 ], [ 395, 664, 489, 20 ], [ 140, 683, 413, 20 ], [ 202, 718, 157, 19 ], [ 202, 751, 12, 20 ], [ 214, 751, 87, 20 ], [ 301, 751, 44, 20 ], [ 346, 751, 5, 20 ], [ 371, 751, 218, 20 ], [ 590, 751, 294, 20 ], [ 140, 770, 744, 20 ], [ 140, 790, 745, 20 ], [ 140, 809, 204, 20 ], [ 344, 809, 540, 20 ], [ 140, 828, 744, 20 ], [ 140, 848, 744, 20 ], [ 140, 867, 268, 20 ], [ 408, 867, 476, 20 ], [ 140, 887, 594, 20 ], [ 123, 925, 70, 9 ], [ 208, 925, 220, 9 ], [ 469, 925, 158, 9 ], [ 880, 925, 17, 9 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 4, 4 ]
3e565bed77eb75b45c1d4879537e86e06e261d8746f06131ed1b87b31caf0c22
19161231-Act-2657.pdf
694
884
595
841
1,025
1,025
philippine_laws
laws_and_regulations
3387
[ "Critical Accounting Estimates and Judgments", "The Corporation makes estimates and assumptions concerning the future that will, by definition, seldom equal actual results. The following are the ", "estimates and judgments applied by management that most significantly affect the Corporation's financial statements. These estimates and", "judgments have a risk of causing a material adjustment to the carrying values of financial assets and financial liabilities within the next financial year.", "2013 ANNUAL REPORT ", "67", "Areaof Significance", "Critical Estimate", "Critical Judgment", "Capital assets, projects under", "development and intangible assets –", "carrying values", "Fair value estimates are required in the ", "determination of the net assets acquired ", "in a business combination and in the ", "impairment assessment for our capital ", "assets and the assignment of amounts to ", "the asset retirement obligations, as well ", "as assessing capitalization criteria for ", "project development costs.", "•", "Estimates are based on assumptions that are sensitive to change, which ", "may have a significant impact on the valuations performed.", "•", "Impairment reviews of the carrying value of capital and other long-lived", "assets along with the asset retirement obligations require management to ", "estimate fair value based on future cash flows, discount rates and business ", "performance.", "•", "Initial fair value of net ", "assets", "•", "Estimated useful lives and ", "residual value", "•", "Estimated future cash ", "flows", "•", "Expected settlement date", "and amount", "•", "Discount rate", "•", "Decision criteria for ", "capitalization of ", "development costs", "Retirement benefits", "The present value of defined benefit ", "pension obligations is dependent on", "actuarial calculations, which include a ", "number of assumptions.", "•", "Assumptions include the discount rate, which is used to calculate the", "present value of the estimated future cash outflows that will be required to", "meet the pension obligations. In determining the discount rate to use, the", "Corporation considers market yields of high quality corporate bonds,", "denominated in UK pounds sterling, that have times to maturity", "approximating the terms of the pension liability.", "•", "Future cash flows and", "discount rate", "Deferred income taxes", "Estimates in the determination of ", "deferred income taxes affect asset and ", "liability balances.", "•", "The determination of the deferred income tax balances of the Corporation", "requires management to make estimates of the reversal of existing", "temporary differences between the accounting and tax bases of assets and", "liabilities in future periods.", "•", "Timing of reversal of ", "temporary differences", "•", "Tax rates", "•", "Current and future taxable ", "income", "Financial instrument fair value ", "measurements", "When observable prices are not available,", "fair values are determined by using ", "valuation techniques that refer to ", "observable market data. This is ", "specifically related to Capstone's ", "financial instruments.", "•", "Management's valuation techniques include comparisons with similar ", "instruments where market observable prices exist, discounted cash flow", "analysis, option pricing models and other valuation techniques commonly ", "used by market participants. ", "•", "For embedded derivatives, fair values are determined from valuation ", "techniques using non-observable market data or transaction processes. ", "A number of factors such as bid-offer spread, credit profile and model ", "uncertainty are taken into account, as appropriate.", "•", "Interest rate", "•", "Natural gas rate", "•", "Direct customer rate", "Accounts receivable", "The allowance for doubtful accounts for ", "Bristol Water is calculated based on an ", "assessment of expected cash flows. ", "Collective impairment losses on ", "receivables with similar credit risk are ", "calculated using a statistical model.", "•", "The probability of failing to recover accounts receivable is determined by", "considering past experience, adjusted for changes in external factors. The", "accuracy of the impairment calculation would therefore be affected by", "unexpected changes to the economic situation, and to changes in customer", "behavior. To the extent that the failure to recover debts in arrears alters by", "5%, the provision for impairment would increase or decrease by $528.", "•", "Probability of a failure to", "recover accounts", "receivable when they fall", "into arrears", "Accounting for investments in non-", "wholly owned subsidiaries", "When Capstone owns a partial interest in ", "an entity, significant judgment is required ", "to determine the proper accounting ", "treatment. Capstone consolidates upon ", "evaluating its ability to control a ", "subsidiary.", "•", "No critical estimates are involved in determining control.", "•", "Determine how relevant", "activities are directed ", "(either through voting ", "rights or contracts)", "•", "Determine if Capstone has ", "substantive or protective", "rights", "•", "Determine Capstone's ", "ability to influence returns" ]
[ [ 90, 98, 317, 11 ], [ 90, 120, 832, 43 ], [ 90, 120, 832, 43 ], [ 90, 120, 832, 43 ], [ 784, 971, 149, 8 ], [ 784, 971, 149, 8 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ], [ 88, 182, 845, 600 ] ]
[ [ 90, 98, 317, 11 ], [ 90, 120, 832, 9 ], [ 90, 137, 789, 9 ], [ 90, 154, 832, 9 ], [ 784, 971, 120, 8 ], [ 921, 971, 12, 7 ], [ 93, 182, 112, 9 ], [ 328, 182, 94, 9 ], [ 763, 182, 101, 9 ], [ 93, 197, 168, 9 ], [ 93, 208, 206, 9 ], [ 93, 219, 85, 9 ], [ 93, 234, 214, 9 ], [ 93, 245, 223, 9 ], [ 93, 256, 197, 9 ], [ 93, 267, 211, 9 ], [ 93, 277, 225, 9 ], [ 93, 288, 218, 9 ], [ 93, 299, 204, 9 ], [ 93, 310, 147, 9 ], [ 328, 197, 11, 9 ], [ 348, 197, 385, 9 ], [ 343, 208, 318, 9 ], [ 328, 223, 11, 9 ], [ 348, 223, 380, 9 ], [ 343, 234, 403, 9 ], [ 343, 245, 406, 9 ], [ 343, 256, 73, 9 ], [ 763, 197, 11, 9 ], [ 783, 197, 115, 9 ], [ 778, 208, 34, 9 ], [ 763, 223, 11, 9 ], [ 783, 223, 139, 9 ], [ 778, 234, 73, 9 ], [ 763, 249, 11, 9 ], [ 783, 249, 118, 9 ], [ 778, 260, 29, 9 ], [ 763, 274, 11, 9 ], [ 783, 274, 136, 9 ], [ 778, 285, 64, 9 ], [ 763, 300, 11, 9 ], [ 783, 300, 68, 9 ], [ 763, 315, 11, 9 ], [ 783, 315, 105, 9 ], [ 778, 326, 89, 9 ], [ 778, 336, 103, 9 ], [ 93, 353, 114, 9 ], [ 93, 367, 200, 9 ], [ 93, 378, 194, 9 ], [ 93, 389, 204, 9 ], [ 93, 400, 130, 9 ], [ 328, 353, 11, 9 ], [ 348, 353, 366, 9 ], [ 343, 364, 407, 9 ], [ 343, 374, 396, 9 ], [ 343, 385, 371, 9 ], [ 343, 396, 342, 9 ], [ 343, 407, 258, 9 ], [ 763, 353, 11, 9 ], [ 783, 353, 115, 9 ], [ 778, 364, 71, 9 ], [ 93, 423, 129, 9 ], [ 93, 437, 184, 9 ], [ 93, 448, 214, 9 ], [ 93, 459, 90, 9 ], [ 328, 423, 11, 9 ], [ 348, 423, 399, 9 ], [ 343, 433, 363, 9 ], [ 343, 444, 406, 9 ], [ 343, 455, 142, 9 ], [ 763, 423, 11, 9 ], [ 783, 423, 110, 9 ], [ 778, 433, 121, 9 ], [ 763, 448, 10, 9 ], [ 782, 448, 46, 9 ], [ 763, 463, 11, 9 ], [ 783, 463, 142, 9 ], [ 778, 474, 39, 9 ], [ 93, 490, 174, 9 ], [ 93, 501, 84, 9 ], [ 93, 516, 224, 9 ], [ 93, 526, 192, 9 ], [ 93, 537, 184, 9 ], [ 93, 548, 170, 9 ], [ 93, 559, 181, 9 ], [ 93, 570, 115, 9 ], [ 328, 490, 11, 9 ], [ 348, 490, 370, 9 ], [ 343, 501, 390, 9 ], [ 343, 512, 397, 9 ], [ 343, 523, 156, 9 ], [ 328, 537, 11, 9 ], [ 348, 537, 368, 9 ], [ 343, 548, 389, 9 ], [ 343, 563, 381, 9 ], [ 343, 574, 272, 9 ], [ 763, 490, 11, 9 ], [ 783, 490, 63, 9 ], [ 763, 505, 11, 9 ], [ 783, 505, 82, 9 ], [ 763, 519, 11, 9 ], [ 783, 519, 108, 9 ], [ 93, 588, 114, 9 ], [ 93, 603, 220, 9 ], [ 93, 614, 212, 9 ], [ 93, 625, 196, 9 ], [ 93, 636, 174, 9 ], [ 93, 646, 206, 9 ], [ 93, 657, 190, 9 ], [ 328, 588, 11, 9 ], [ 348, 588, 389, 9 ], [ 343, 599, 401, 9 ], [ 343, 610, 382, 9 ], [ 343, 621, 407, 9 ], [ 343, 632, 406, 9 ], [ 343, 643, 379, 9 ], [ 763, 588, 11, 9 ], [ 783, 588, 129, 9 ], [ 778, 599, 93, 9 ], [ 778, 610, 134, 9 ], [ 778, 621, 63, 9 ], [ 93, 674, 198, 9 ], [ 93, 685, 148, 9 ], [ 93, 699, 226, 9 ], [ 93, 710, 226, 9 ], [ 93, 721, 197, 9 ], [ 93, 732, 216, 9 ], [ 93, 743, 175, 9 ], [ 93, 754, 56, 9 ], [ 328, 674, 11, 9 ], [ 348, 674, 300, 9 ], [ 763, 674, 11, 9 ], [ 783, 674, 126, 9 ], [ 778, 685, 119, 9 ], [ 778, 695, 122, 9 ], [ 778, 706, 104, 9 ], [ 763, 721, 11, 9 ], [ 783, 721, 142, 9 ], [ 778, 732, 135, 9 ], [ 778, 743, 31, 9 ], [ 763, 758, 11, 9 ], [ 783, 758, 119, 9 ], [ 778, 768, 142, 9 ] ]
[ 7, 9, 9, 9, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
60dccf9a4285794703bac86662ad84305f8b114d0df700560112dfb9d302953f
TSX_CSE_2013.pdf
68
108
612
792
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3388
[ "that the projection onto the", "SU", "(3)", "generators has a unit norm (", "∑", "$_{i}$a", "2", "i", "= 1), we can indentify a", "unique combination which minimizes the combined bound from top and", "B", "constraints.", "Taking", "into account the projected LHC sensitivity on", "t", "→", "u", "i", "decays, we can expect to reach bounds of", "O", "(600 GeV) on the scale Λ$_{t}$ [22], in the absence of a NP signal.", "A very reasonable, although quite pessimistic, set up which avoids the new physics flavor prob-", "lem is the so-called Minimal Flavor Violation (MFV) hypothesis. Under this assumption, flavor-", "violating interactions are linked to the known structure of Yukawa couplings also beyond the SM.", "As a result, non-standard contributions in FCNC transitions turn out to be suppressed to a level", "consistent with experiments even for Λ", "∼", "few TeV. One of the most interesting aspects of the", "MFV hypothesis is that it can naturally be implemented within the generic effective Lagrangian", "in Eq. (3.1). Furthermore, SM extensions where the flavor hierarchy is generated at a scale much", "higher than other dynamical scales tend to flow to the MFV class of models in the infra-red.", "The MFV hypothesis consists of two ingredients [23]: (i) a", "flavor symmetry", "and (ii) a set of", "symmetry-breaking terms", ".", "The symmetry is nothing but the large global symmetry of the SM", "Lagrangian in absence of Yukawa couplings shown in Eq. (2.7). Since this global symmetry, and", "particularly the SU(3) subgroups controlling quark flavor-changing transitions, is already broken", "within the SM, we cannot promote it to be an exact symmetry of the NP model. Some breaking", "would appear at the quantum level because of the SM Yukawa interactions. The most restrictive", "assumption we can make to", "protect", "in a consistent way quark-flavor mixing beyond the SM is to", "assume that", "Y", "d", "and", "Y", "u", "are the only sources of flavor symmetry breaking also in the NP model. To", "implement and interpret this hypothesis in a consistent way, we can assume that", "SU", "(3)", "3", "q", "is a good", "symmetry and promote", "Y", "u,d", "to be non-dynamical fields (spurions) with non-trivial transformation", "properties under", "SU", "(3)", "3", "$_{q}$:", "If the breaking of the symmetry occurs at very high energy scales, at low-energies we would only be", "sensitive to the background values of the", "Y", ",", "i.e.", "to the ordinary SM Yukawa couplings. Employing", "the effective-theory language, an effective theory satisfies the criterion of Minimal Flavor Violation", "in the quark sector", "1", "if all higher-dimensional operators, constructed from SM and", "Y", "fields, are", "IV.", "MINIMAL FLAVOR VIOLATION", "Y", "u", "∼", "(3", ",", "¯", "3", ",", "1)", ",", "Y", "d", "∼", "(3", ",", "1", ",", "¯", "3)", ".", "(4.1)", "1", "The notion of MFV can be extended also to the letpon sector. However, in this case there is not a unique way", "12" ]
[ [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 85, 780, 113 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 271, 781, 198 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 481, 781, 277 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 819, 781, 93 ], [ 120, 227, 340, 11 ], [ 120, 227, 340, 11 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 356, 778, 544, 27 ], [ 124, 941, 777, 13 ], [ 124, 941, 777, 13 ], [ 492, 979, 18, 14 ] ]
[ [ 120, 95, 228, 14 ], [ 356, 95, 24, 14 ], [ 383, 95, 18, 14 ], [ 416, 95, 232, 14 ], [ 649, 85, 19, 43 ], [ 668, 95, 18, 14 ], [ 686, 93, 7, 10 ], [ 686, 102, 4, 10 ], [ 702, 95, 199, 14 ], [ 120, 121, 590, 14 ], [ 718, 121, 13, 14 ], [ 741, 121, 91, 14 ], [ 846, 121, 54, 14 ], [ 120, 148, 373, 14 ], [ 501, 148, 6, 14 ], [ 515, 148, 18, 24 ], [ 540, 148, 10, 14 ], [ 550, 145, 4, 10 ], [ 563, 148, 337, 14 ], [ 120, 174, 14, 24 ], [ 135, 174, 493, 14 ], [ 145, 271, 755, 14 ], [ 120, 297, 780, 14 ], [ 120, 323, 780, 14 ], [ 120, 350, 780, 14 ], [ 120, 376, 320, 14 ], [ 449, 376, 14, 24 ], [ 471, 376, 429, 14 ], [ 120, 402, 780, 14 ], [ 120, 428, 780, 14 ], [ 120, 455, 741, 14 ], [ 145, 481, 480, 14 ], [ 633, 482, 130, 13 ], [ 771, 481, 129, 14 ], [ 120, 508, 201, 13 ], [ 321, 507, 5, 14 ], [ 341, 507, 559, 14 ], [ 120, 534, 780, 14 ], [ 120, 560, 780, 14 ], [ 120, 586, 780, 14 ], [ 120, 613, 780, 14 ], [ 120, 639, 223, 14 ], [ 350, 639, 53, 13 ], [ 411, 639, 490, 14 ], [ 120, 665, 95, 14 ], [ 221, 665, 10, 14 ], [ 236, 663, 7, 10 ], [ 249, 665, 29, 14 ], [ 283, 665, 10, 14 ], [ 298, 663, 8, 10 ], [ 312, 665, 588, 14 ], [ 120, 692, 640, 14 ], [ 766, 692, 24, 14 ], [ 793, 692, 23, 14 ], [ 816, 689, 7, 10 ], [ 816, 698, 6, 10 ], [ 830, 692, 71, 14 ], [ 120, 718, 185, 14 ], [ 311, 718, 10, 14 ], [ 326, 715, 19, 10 ], [ 352, 718, 549, 14 ], [ 120, 744, 131, 14 ], [ 258, 744, 24, 14 ], [ 285, 744, 23, 14 ], [ 308, 742, 7, 10 ], [ 308, 744, 13, 14 ], [ 120, 819, 781, 14 ], [ 120, 845, 322, 14 ], [ 448, 845, 10, 14 ], [ 462, 845, 5, 14 ], [ 473, 846, 25, 13 ], [ 504, 845, 397, 14 ], [ 120, 871, 780, 14 ], [ 120, 898, 156, 14 ], [ 276, 895, 7, 10 ], [ 292, 898, 500, 14 ], [ 800, 898, 10, 14 ], [ 823, 898, 78, 14 ], [ 120, 227, 27, 11 ], [ 166, 227, 294, 11 ], [ 356, 781, 10, 14 ], [ 371, 778, 8, 10 ], [ 385, 781, 14, 24 ], [ 404, 781, 16, 14 ], [ 420, 781, 5, 14 ], [ 428, 778, 9, 14 ], [ 428, 781, 9, 14 ], [ 437, 781, 5, 14 ], [ 445, 781, 16, 14 ], [ 468, 781, 5, 14 ], [ 513, 781, 10, 14 ], [ 527, 778, 7, 10 ], [ 540, 781, 14, 24 ], [ 560, 781, 16, 14 ], [ 576, 781, 5, 14 ], [ 584, 781, 9, 14 ], [ 593, 781, 5, 14 ], [ 601, 778, 9, 14 ], [ 601, 781, 16, 14 ], [ 624, 781, 5, 14 ], [ 864, 781, 37, 14 ], [ 124, 941, 6, 5 ], [ 141, 942, 759, 11 ], [ 492, 979, 18, 14 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 7, 7, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 2, 1, 1, 4 ]
c407458da59ec8a6cea04c801c248dce34534cf04138aa8de35fe4dcd57898e5
1002.0900.pdf
11
33
612
792
1,025
1,025
arxiv_mediumspaced
scientific_articles
3389
[ "5981", "Section 27.12.13.1, “The data_locks Table”", "Section 27.12.21.1, “The error_log Table”", "Section 27.12.5.1, “The events_stages_current Table”", "Section 27.12.5.2, “The events_stages_history Table”", "Section 27.12.5.3, “The events_stages_history_long Table”", "Section 27.12.6.1, “The events_statements_current Table”", "Section 27.12.6.2, “The events_statements_history Table”", "Section 27.12.6.3, “The events_statements_history_long Table”", "Section 27.12.7.1, “The events_transactions_current Table”", "Section 27.12.7.2, “The events_transactions_history Table”", "Section 27.12.7.3, “The events_transactions_history_long Table”", "Section 27.12.4.1, “The events_waits_current Table”", "Section 27.12.4.2, “The events_waits_history Table”", "Section 27.12.4.3, “The events_waits_history_long Table”", "Section 27.12.3.2, “The file_instances Table”", "Section 27.12.17.2, “The firewall_group_allowlist Table”", "Section 27.12.17.1, “The firewall_groups Table”", "Section 27.12.17.3, “The firewall_membership Table”", "Section 27.12.21.2, “The host_cache Table”", "Section 27.12.8.2, “The hosts Table”", "Section 26.4.20, “The INFORMATION_SCHEMA INNODB_INDEXES Table”", "Section 26.4.25, “The INFORMATION_SCHEMA INNODB_TABLES Table”", "Section 15.20.7, “The InnoDB memcached Plugin and Replication”", "Section 27.12.18.1, “The keyring_component_status Table”", "Section 27.12.18.2, “The keyring_keys table”", "Section 27.12.21.3, “The log_status Table”", "Section 16.3, “The MEMORY Storage Engine”", "Section 27.12.13.3, “The metadata_locks Table”", "Section 27.12.3.3, “The mutex_instances Table”", "Section 27.12.21.4, “The performance_timers Table”", "Section 27.12.6.4, “The prepared_statements_instances Table”", "Section 27.12.21.5, “The processlist Table”", "Section 28.4.4.24, “The ps_truncate_all_tables() Procedure”", "Section 27.12.11.5, “The replication_applier_configuration Table”", "Section 27.12.11.6, “The replication_applier_status Table”", "Section 27.12.11.3, “The replication_asynchronous_connection_failover Table”", "Section 27.12.11.4, “The replication_asynchronous_connection_failover_managed Table”", "Section 27.12.11.1, “The replication_connection_configuration Table”", "Section 27.12.11.12, “The replication_group_member_stats Table”", "Section 27.12.11.11, “The replication_group_members Table”", "Section 27.12.3.4, “The rwlock_instances Table”", "Section 27.12.9.1, “The session_account_connect_attrs Table”", "Section 27.12.9.2, “The session_connect_attrs Table”", "Section 27.12.2.1, “The setup_actors Table”", "Section 27.12.2.2, “The setup_consumers Table”", "Section 27.12.2.3, “The setup_instruments Table”", "Section 27.12.2.4, “The setup_objects Table”", "Section 27.12.2.5, “The setup_threads Table”", "Section 27.12.3.5, “The socket_instances Table”", "Section 27.12.13.4, “The table_handles Table”", "The table_io_waits_summary_by_index_usage Table", "The table_io_waits_summary_by_table Table", "The table_lock_waits_summary_by_table Table", "Section 27.12.21.6, “The threads Table”" ]
[ [ 927, 964, 37, 11 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ], [ 170, 94, 690, 835 ] ]
[ [ 927, 964, 37, 11 ], [ 170, 94, 347, 11 ], [ 170, 110, 334, 11 ], [ 170, 126, 427, 11 ], [ 170, 141, 425, 11 ], [ 170, 157, 466, 11 ], [ 170, 172, 460, 11 ], [ 170, 188, 457, 11 ], [ 170, 203, 498, 11 ], [ 170, 219, 468, 11 ], [ 170, 234, 466, 11 ], [ 170, 250, 506, 11 ], [ 170, 265, 416, 11 ], [ 170, 281, 413, 11 ], [ 170, 296, 454, 11 ], [ 170, 312, 359, 11 ], [ 170, 327, 439, 11 ], [ 170, 343, 380, 11 ], [ 170, 358, 421, 11 ], [ 170, 374, 353, 11 ], [ 170, 390, 298, 11 ], [ 170, 405, 595, 11 ], [ 170, 421, 586, 11 ], [ 170, 436, 520, 11 ], [ 170, 452, 467, 11 ], [ 170, 467, 359, 11 ], [ 170, 483, 344, 11 ], [ 170, 498, 370, 11 ], [ 170, 514, 385, 11 ], [ 170, 529, 384, 11 ], [ 170, 545, 416, 11 ], [ 170, 560, 496, 11 ], [ 170, 576, 346, 11 ], [ 170, 591, 472, 11 ], [ 170, 607, 508, 11 ], [ 170, 622, 457, 11 ], [ 170, 638, 611, 11 ], [ 170, 654, 690, 11 ], [ 170, 669, 539, 11 ], [ 170, 685, 520, 11 ], [ 170, 700, 484, 11 ], [ 170, 716, 385, 11 ], [ 170, 731, 493, 11 ], [ 170, 747, 425, 11 ], [ 170, 762, 354, 11 ], [ 170, 778, 390, 11 ], [ 170, 793, 395, 11 ], [ 170, 809, 361, 11 ], [ 170, 824, 364, 11 ], [ 170, 840, 386, 11 ], [ 170, 855, 372, 11 ], [ 170, 871, 395, 11 ], [ 170, 887, 336, 11 ], [ 170, 902, 353, 11 ], [ 170, 918, 323, 11 ] ]
[ 4, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9 ]
0b10d198332546ef24c4fe5251497d7622c4b8a05c95696aa9f145a75da39a45
refman-8.0-en.pdf
6,010
6,228
612
792
1,025
1,025
manuals
manuals
3390
[ "CONSOLIDATED STATEMENT OF FINANCIAL ", "POSITION AS AT 30 JUNE 2011", "Notes", "2011", "2010", "CURRENT ASSETS", "Cash and cash equivalents", "12", "75,983,334 ", "29,496,627 ", "Trade and other receivables", "13", "12,470,596 ", "14,910,209 ", "Inventories", "14", "13,168,960 ", "14,821,577 ", "Other assets", "15", "146,177 ", "874,561 ", "Other financial assets", "16", "3,320,730 ", "5,005,260 ", "105,089,797 ", "65,108,234 ", "Assets of disposal group classified as held for sale", "11", "1,476,212 ", "1,491,219 ", "Total current assets", "106,566,009 ", "66,599,453 ", "NON-CURRENT ASSETS", "Available-for-sale financial assets", "17", "49,004,755 ", "34,064,803 ", "Derivative financial instruments", "18", "228,269 ", "57,464 ", "Investment in associates", "19", "22,801,822 ", "22,525,913 ", "Property, plant and equipment", "20", "15,062,434 ", "18,651,376 ", "Mine properties and development costs", "21", "77,888,899 ", "20,774,615 ", "Intangible assets", "22", "2,648,484", "2,648,484 ", "Exploration and evaluation expenditure", "23", "827, 9 47", "53,353,863 ", "Deferred tax assets", "8", "-", "-", "Total non-current assets", "168,462,610 ", "152,076,518 ", "TOTAL ASSETS", "275,028,619 ", "218,675,971 ", "CURRENT LIABILITIES", "Trade and other payables", "24", "5,679,553 ", "9,947,691 ", "Interest bearing loans and borrowings", "25", "941,788 ", "2,153,380 ", "Provisions", "26", "819,678 ", "789,757 ", "7,441,019 ", "12,890,828 ", "Liabilities directly associated with the assets classified as held for sale", "11", "886,260 ", "886,260 ", "Total current liabilities", "8,327,279 ", "13,777,088 ", "NON-CURRENT LIABILITIES", "Provisions", "27", "2,530,378 ", "2,351,475 ", "Interest bearing loans and borrowings", "28", "217,041 ", "681,339 ", "Total non-current liabilities", "2,747,419 ", "3,032,814 ", "TOTAL LIABILITIES", "11,074,698 ", "16,809,902 ", "NET ASSETS", "263,953,921 ", "201,866,069 ", "EQUITY", "Issued capital", "29", "290,056,226 ", "290,141,787 ", "Accumulated losses", "30", "(41,680,191)", "(104,123,039)", "Option premium reserve", "31", "18,326,178 ", "18,222,793 ", "Other reserves", "31", "(2,729,920)", "(2,503,340)", "Parent interests", "263,972,293 ", "201,738,201 ", "Minority interests", "32", "(18,372)", "127,868 ", "TOTAL EQUITY", "263,953,921 ", "201,866,069 ", "The above consolidated statement of financial position should be read in conjunction with the accompanying notes.", "50 ", "CONSOLIDATED STATEMENT OF FINANCIAL POSITION AS AT 30 JUNE 2011" ]
[ [ 131, 67, 663, 59 ], [ 131, 67, 663, 59 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 129, 787, 766 ], [ 131, 899, 644, 12 ], [ 875, 907, 49, 33 ], [ 299, 936, 618, 19 ] ]
[ [ 131, 67, 663, 35 ], [ 131, 91, 474, 35 ], [ 654, 133, 33, 12 ], [ 742, 133, 28, 12 ], [ 849, 133, 28, 12 ], [ 139, 150, 99, 12 ], [ 139, 166, 151, 12 ], [ 664, 166, 12, 12 ], [ 736, 166, 69, 12 ], [ 844, 166, 69, 12 ], [ 139, 182, 155, 12 ], [ 664, 182, 12, 12 ], [ 737, 182, 68, 12 ], [ 845, 182, 68, 12 ], [ 139, 198, 63, 12 ], [ 664, 198, 12, 12 ], [ 738, 198, 68, 12 ], [ 847, 198, 66, 12 ], [ 139, 215, 71, 12 ], [ 664, 215, 13, 12 ], [ 757, 215, 48, 12 ], [ 864, 215, 49, 12 ], [ 139, 231, 123, 12 ], [ 664, 231, 13, 12 ], [ 744, 231, 61, 12 ], [ 850, 231, 63, 12 ], [ 729, 247, 76, 12 ], [ 845, 247, 67, 12 ], [ 139, 263, 283, 12 ], [ 664, 263, 13, 12 ], [ 747, 263, 59, 12 ], [ 854, 263, 59, 12 ], [ 139, 280, 115, 12 ], [ 726, 280, 80, 12 ], [ 842, 280, 71, 12 ], [ 139, 312, 128, 12 ], [ 139, 328, 189, 12 ], [ 664, 328, 12, 12 ], [ 737, 328, 69, 12 ], [ 843, 328, 70, 12 ], [ 139, 344, 181, 12 ], [ 664, 344, 13, 12 ], [ 754, 344, 51, 12 ], [ 872, 344, 41, 12 ], [ 139, 361, 143, 12 ], [ 664, 361, 13, 12 ], [ 735, 361, 70, 12 ], [ 844, 361, 68, 12 ], [ 139, 377, 173, 12 ], [ 663, 377, 14, 12 ], [ 737, 377, 68, 12 ], [ 846, 377, 67, 12 ], [ 139, 393, 223, 12 ], [ 664, 393, 12, 12 ], [ 738, 393, 67, 12 ], [ 847, 393, 66, 12 ], [ 139, 409, 97, 12 ], [ 663, 409, 15, 12 ], [ 743, 409, 59, 12 ], [ 851, 409, 62, 12 ], [ 139, 426, 221, 12 ], [ 664, 426, 13, 12 ], [ 757, 426, 43, 12 ], [ 844, 426, 69, 12 ], [ 139, 442, 110, 12 ], [ 667, 442, 7, 12 ], [ 799, 442, 1, 12 ], [ 907, 442, 1, 12 ], [ 139, 458, 142, 12 ], [ 728, 458, 77, 12 ], [ 836, 458, 77, 12 ], [ 139, 474, 78, 12 ], [ 729, 474, 76, 12 ], [ 838, 474, 75, 12 ], [ 139, 507, 122, 12 ], [ 139, 523, 142, 12 ], [ 664, 523, 13, 12 ], [ 745, 523, 61, 12 ], [ 854, 523, 59, 12 ], [ 138, 539, 215, 12 ], [ 663, 539, 14, 12 ], [ 756, 539, 49, 12 ], [ 852, 539, 61, 12 ], [ 138, 555, 59, 12 ], [ 663, 555, 14, 12 ], [ 757, 555, 49, 12 ], [ 864, 555, 49, 12 ], [ 748, 572, 58, 12 ], [ 844, 572, 69, 12 ], [ 138, 588, 399, 12 ], [ 663, 588, 13, 12 ], [ 754, 588, 52, 12 ], [ 861, 588, 52, 12 ], [ 138, 604, 130, 12 ], [ 745, 604, 60, 12 ], [ 845, 604, 68, 12 ], [ 138, 636, 151, 12 ], [ 138, 653, 59, 12 ], [ 663, 653, 14, 12 ], [ 744, 653, 62, 12 ], [ 853, 653, 60, 12 ], [ 138, 669, 215, 12 ], [ 663, 669, 14, 12 ], [ 760, 669, 46, 12 ], [ 863, 669, 50, 12 ], [ 138, 685, 157, 12 ], [ 746, 685, 59, 12 ], [ 851, 685, 62, 12 ], [ 138, 701, 101, 12 ], [ 736, 701, 70, 12 ], [ 842, 701, 71, 12 ], [ 138, 717, 67, 12 ], [ 728, 717, 78, 12 ], [ 834, 717, 79, 12 ], [ 138, 750, 40, 12 ], [ 138, 766, 77, 12 ], [ 663, 766, 14, 12 ], [ 727, 766, 78, 12 ], [ 840, 766, 73, 12 ], [ 138, 782, 113, 12 ], [ 663, 782, 15, 12 ], [ 726, 782, 77, 12 ], [ 827, 782, 83, 12 ], [ 138, 799, 137, 12 ], [ 663, 799, 13, 12 ], [ 739, 799, 66, 12 ], [ 844, 799, 69, 12 ], [ 138, 815, 83, 12 ], [ 663, 815, 13, 12 ], [ 733, 815, 70, 12 ], [ 838, 815, 72, 12 ], [ 138, 831, 93, 12 ], [ 727, 831, 78, 12 ], [ 836, 831, 77, 12 ], [ 138, 863, 104, 12 ], [ 663, 863, 14, 12 ], [ 752, 863, 51, 12 ], [ 865, 863, 48, 12 ], [ 139, 879, 77, 12 ], [ 728, 879, 78, 12 ], [ 834, 879, 79, 12 ], [ 131, 899, 644, 12 ], [ 875, 907, 49, 33 ], [ 299, 936, 618, 19 ] ]
[ 7, 7, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 9, 4, 4 ]
ca88600d2ce1173580bcc0efc8180d0ee46390417fa7be5fbdcdfc9ff19af3dd
ASX_MLX_2011.pdf
52
126
595
841
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3391
[ "89", "Infotainment Amundsen › ", "SmartLink", "Restriction", "Connection conditions", "General connection conditions", "Restriction of SmartLink applications while driving", "For reasons of safety, the operation of some Smar-", "tLink applications while driving is not possible or only", "limited.", "▶", "For the duration of the connection, the external de-", "vice cannot be used as an audio source in the ", "Me-", "dia", " menu.", "▶", "By connecting the device, all currently connected", "Bluetooth® devices will be disconnected and the", "device will automatically be connected as the main", "telephone.", "✓", "The mobile device supports the type of Smar-", "tLink connection Android Auto, Apple CarPlay or", "MirrorLink.", "✓", "Mobile devices, as well as the type of SmartLink", "connection, are supported in the respective mar-", "ket.", "✓", "Some connected mobile devices require the mo-", "bile device to be “unlocked”.", "✓", "The device to be connected must have Android", "Auto connection.", "Functionality restriction of Infotainment with an", "Android Auto connection", "Conditions for Android Auto", "Functionality restriction of Infotainment with an", "Apple CarPlay connection", "A list of devices, supported regions and applica-", "tions that support the Android Auto connection", "can be found on the Google, Inc. website.", "▶", "For the duration of the connection, no other Blue-", "tooth® devices can be connected to the Infotain-", "ment system.", "▶", "If route guidance is taking place at this moment in", "Infotainment, then there is the option to start the", "route guidance in the Android Auto application.", "And vice versa, if route guidance is currently taking", "place in the Android Auto application, then there is", "the possibility that this will be terminated by the", "start of route guidance by the Infotainment sys-", "tem.", "✓", "The Android Auto application needs to be instal-", "led on the mobile device.", "✓", "Some applications require the data connection in", "the mobile device to be turned on.", "✓", "Connect the mobile device for the first time", "when the vehicle is stationary.", "✓", "The device to be connected must have Apple", "CarPlay connection.", "▶", "For the duration of the connection, the external de-", "vice cannot be used as an audio source in the ", "Me-", "dia", " menu.", "▶", "Connecting the device disconnects all currently", "connected Bluetooth® devices.", "▶", "For the duration of the connection, no Bluetooth®", "devices can be connected to the Infotainment sys-", "tem.", "✓", "Siri voice control is on.", "✓", "The data connection in the mobile device is", "switched on.", "✓", "The device to be connected must have MirrorLink", "connection.", "▶", "If route guidance is taking place at this moment in", "Infotainment, then there is the option to start the", "route guidance in the Apple CarPlay application.", "And vice versa, if route guidance is currently taking", "place in the Apple CarPlay application, then there is", "the possibility that this will be terminated by the", "start of route guidance by the Infotainment sys-", "tem.", "Conditions for Apple CarPlay", "A list of devices, supported regions and applica-", "tions that support the Apple CarPlay connection", "can be found on the Apple Inc website.", "A list of devices and applications that support the", "MirrorLink connection can be found on the web-", "sites of Car Connectivity Consorcium®.", "Conditions for MirrorLink", "Functionality restriction of Infotainment with an", "MirrorLink connection", "Operation", "✓", "The MirrorLink application needs to be installed", "on the mobile device.", "✓", "Some applications require the data connection in", "the connected mobile device to be turned on.", "▶", "For the duration of the connection, the external de-", "vice cannot be used as an audio source in the ", "Me-", "dia", " menu.", "▶", "If you wish to use the device to be connected in", "the ", "Telephone", " menu, the device must be paired", "with and connected to the Infotainment system by", "Bluetooth® before establishing the MirrorLink con-", "nection.", "›", "To display the following operation surfaces, press", "the right rotary control ", ".", "Operation of the running MirrorLink application", "Display of control surfaces at the bottom", "Display of control surfaces at the top", "Return to the MirrorLink main menu" ]
[ [ 616, 62, 310, 14 ], [ 616, 62, 310, 14 ], [ 616, 62, 310, 14 ], [ 536, 92, 91, 16 ], [ 115, 92, 189, 16 ], [ 115, 118, 234, 14 ], [ 536, 118, 384, 14 ], [ 536, 132, 389, 43 ], [ 536, 132, 389, 43 ], [ 536, 132, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 213, 389, 43 ], [ 536, 260, 385, 58 ], [ 536, 260, 385, 58 ], [ 536, 260, 385, 58 ], [ 536, 260, 385, 58 ], [ 536, 260, 385, 58 ], [ 115, 132, 381, 43 ], [ 115, 132, 381, 43 ], [ 115, 132, 381, 43 ], [ 115, 132, 381, 43 ], [ 115, 178, 383, 43 ], [ 115, 178, 383, 43 ], [ 115, 178, 383, 43 ], [ 115, 178, 383, 43 ], [ 115, 225, 381, 29 ], [ 115, 225, 381, 29 ], [ 115, 225, 381, 29 ], [ 115, 276, 372, 29 ], [ 115, 276, 372, 29 ], [ 115, 276, 372, 29 ], [ 536, 184, 367, 29 ], [ 536, 184, 367, 29 ], [ 115, 262, 217, 14 ], [ 536, 491, 367, 29 ], [ 536, 491, 367, 29 ], [ 140, 311, 351, 43 ], [ 140, 311, 351, 43 ], [ 140, 311, 351, 43 ], [ 536, 320, 378, 43 ], [ 536, 320, 378, 43 ], [ 536, 320, 378, 43 ], [ 536, 320, 378, 43 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 536, 366, 388, 117 ], [ 115, 357, 379, 29 ], [ 115, 357, 379, 29 ], [ 115, 357, 379, 29 ], [ 115, 389, 383, 29 ], [ 115, 389, 383, 29 ], [ 115, 389, 383, 29 ], [ 115, 420, 346, 29 ], [ 115, 420, 346, 29 ], [ 115, 420, 346, 29 ], [ 115, 472, 356, 29 ], [ 115, 472, 356, 29 ], [ 115, 472, 356, 29 ], [ 536, 521, 389, 43 ], [ 536, 521, 389, 43 ], [ 536, 521, 389, 43 ], [ 536, 521, 389, 43 ], [ 536, 521, 389, 43 ], [ 536, 521, 389, 43 ], [ 536, 567, 362, 29 ], [ 536, 567, 362, 29 ], [ 536, 567, 362, 29 ], [ 536, 598, 385, 43 ], [ 536, 598, 385, 43 ], [ 536, 598, 385, 43 ], [ 536, 598, 385, 43 ], [ 115, 553, 189, 14 ], [ 115, 553, 189, 14 ], [ 115, 569, 341, 29 ], [ 115, 569, 341, 29 ], [ 115, 569, 341, 29 ], [ 115, 621, 390, 29 ], [ 115, 621, 390, 29 ], [ 115, 621, 390, 29 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 536, 644, 388, 117 ], [ 115, 457, 223, 14 ], [ 140, 506, 354, 43 ], [ 140, 506, 354, 43 ], [ 140, 506, 354, 43 ], [ 140, 656, 363, 43 ], [ 140, 656, 363, 43 ], [ 140, 656, 363, 43 ], [ 115, 607, 193, 14 ], [ 536, 769, 367, 29 ], [ 536, 769, 367, 29 ], [ 115, 789, 84, 16 ], [ 115, 702, 373, 29 ], [ 115, 702, 373, 29 ], [ 115, 702, 373, 29 ], [ 115, 733, 383, 29 ], [ 115, 733, 383, 29 ], [ 115, 733, 383, 29 ], [ 536, 798, 389, 43 ], [ 536, 798, 389, 43 ], [ 536, 798, 389, 43 ], [ 536, 798, 389, 43 ], [ 536, 798, 389, 43 ], [ 536, 798, 389, 43 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 536, 845, 386, 73 ], [ 115, 827, 375, 32 ], [ 115, 827, 375, 32 ], [ 115, 827, 375, 32 ], [ 115, 827, 375, 32 ], [ 115, 815, 361, 14 ], [ 114, 864, 337, 46 ], [ 114, 864, 337, 46 ], [ 114, 864, 337, 46 ] ]
[ [ 907, 62, 19, 14 ], [ 616, 62, 198, 14 ], [ 815, 62, 75, 14 ], [ 536, 92, 91, 16 ], [ 115, 92, 189, 16 ], [ 115, 118, 234, 14 ], [ 536, 118, 384, 14 ], [ 536, 132, 374, 14 ], [ 536, 147, 389, 14 ], [ 536, 162, 54, 14 ], [ 536, 217, 8, 11 ], [ 550, 213, 376, 14 ], [ 550, 228, 334, 14 ], [ 884, 228, 30, 14 ], [ 550, 243, 22, 14 ], [ 572, 243, 48, 14 ], [ 536, 263, 8, 11 ], [ 550, 260, 362, 14 ], [ 550, 274, 353, 14 ], [ 550, 289, 372, 14 ], [ 550, 303, 77, 14 ], [ 115, 136, 18, 10 ], [ 140, 132, 337, 14 ], [ 140, 147, 356, 14 ], [ 140, 162, 80, 14 ], [ 115, 182, 18, 10 ], [ 140, 178, 351, 14 ], [ 140, 193, 358, 14 ], [ 140, 208, 27, 14 ], [ 115, 228, 18, 10 ], [ 140, 225, 357, 14 ], [ 140, 239, 207, 14 ], [ 115, 280, 18, 10 ], [ 140, 276, 347, 14 ], [ 140, 291, 126, 14 ], [ 536, 184, 367, 14 ], [ 536, 199, 193, 14 ], [ 115, 262, 217, 14 ], [ 536, 491, 367, 14 ], [ 536, 506, 198, 14 ], [ 140, 311, 351, 14 ], [ 140, 326, 350, 14 ], [ 140, 340, 303, 14 ], [ 536, 323, 8, 11 ], [ 550, 320, 365, 14 ], [ 550, 335, 358, 14 ], [ 550, 350, 99, 14 ], [ 536, 369, 8, 11 ], [ 550, 366, 366, 14 ], [ 550, 381, 362, 14 ], [ 550, 396, 347, 14 ], [ 550, 410, 374, 14 ], [ 550, 425, 371, 14 ], [ 550, 439, 354, 14 ], [ 550, 454, 353, 14 ], [ 550, 469, 33, 14 ], [ 115, 360, 18, 10 ], [ 140, 357, 355, 14 ], [ 140, 372, 182, 14 ], [ 115, 392, 18, 10 ], [ 140, 389, 358, 14 ], [ 140, 403, 251, 14 ], [ 115, 423, 18, 10 ], [ 140, 420, 322, 14 ], [ 140, 435, 221, 14 ], [ 115, 475, 18, 10 ], [ 140, 472, 331, 14 ], [ 140, 487, 146, 14 ], [ 536, 524, 8, 11 ], [ 550, 521, 376, 14 ], [ 550, 535, 334, 14 ], [ 884, 535, 30, 14 ], [ 550, 550, 22, 14 ], [ 572, 550, 48, 14 ], [ 536, 570, 8, 11 ], [ 550, 567, 348, 14 ], [ 550, 581, 226, 14 ], [ 536, 601, 8, 11 ], [ 550, 598, 363, 14 ], [ 550, 613, 372, 14 ], [ 550, 627, 33, 14 ], [ 115, 556, 18, 10 ], [ 140, 553, 165, 14 ], [ 115, 573, 18, 10 ], [ 140, 569, 317, 14 ], [ 140, 584, 93, 14 ], [ 115, 625, 18, 10 ], [ 140, 621, 365, 14 ], [ 140, 636, 86, 14 ], [ 536, 647, 8, 11 ], [ 550, 644, 366, 14 ], [ 550, 659, 362, 14 ], [ 550, 673, 350, 14 ], [ 550, 688, 374, 14 ], [ 550, 703, 375, 14 ], [ 550, 717, 354, 14 ], [ 550, 732, 353, 14 ], [ 550, 747, 33, 14 ], [ 115, 457, 223, 14 ], [ 140, 506, 351, 14 ], [ 140, 521, 354, 14 ], [ 140, 536, 285, 14 ], [ 140, 656, 363, 14 ], [ 140, 671, 356, 14 ], [ 140, 685, 285, 14 ], [ 115, 607, 193, 14 ], [ 536, 769, 367, 14 ], [ 536, 784, 169, 14 ], [ 115, 789, 84, 16 ], [ 115, 705, 18, 10 ], [ 140, 702, 348, 14 ], [ 140, 717, 156, 14 ], [ 115, 737, 18, 10 ], [ 140, 733, 358, 14 ], [ 140, 748, 334, 14 ], [ 536, 802, 8, 11 ], [ 550, 798, 376, 14 ], [ 550, 813, 334, 14 ], [ 884, 813, 30, 14 ], [ 550, 828, 22, 14 ], [ 572, 828, 48, 14 ], [ 536, 848, 8, 11 ], [ 550, 845, 351, 14 ], [ 550, 859, 28, 14 ], [ 578, 859, 78, 14 ], [ 657, 859, 243, 14 ], [ 550, 874, 372, 14 ], [ 550, 888, 372, 14 ], [ 550, 903, 58, 14 ], [ 115, 827, 7, 19 ], [ 129, 830, 361, 14 ], [ 129, 845, 173, 14 ], [ 317, 845, 3, 14 ], [ 115, 815, 361, 14 ], [ 146, 865, 303, 14 ], [ 146, 879, 272, 14 ], [ 146, 894, 263, 14 ] ]
[ 5, 5, 5, 7, 7, 7, 7, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 7, 7, 7, 7, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 9, 9, 9, 9, 9, 9, 7, 7, 7, 7, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 8, 8, 8 ]
e17b03637a41d99af8f6fcbc82ed218727ac1e0a01e015484b937510d40153e9
2021-skoda-fabia-116475.pdf
90
166
476
651
1,025
1,025
manuals
manuals
3392
[ "keyring_oci_virtual_vault, 1463", "keyring_okv_conf_dir, 1464", "keyring_operations, 1464", "key_buffer_size, 813", "key_cache_age_threshold, 814", "key_cache_block_size, 814", "key_cache_division_limit, 815", "large_files_support, 815", "large_pages, 815", "large_page_size, 816", "last_insert_id, 816", "lc_messages, 816", "lc_messages_dir, 816", "lc_time_names, 816", "license, 817", "local_infile, 817, 1179", "locked_in_memory, 818", "lock_order, 1161", "lock_order_debug_loop, 1161", "lock_order_debug_missing_arc, 1161", "lock_order_debug_missing_key, 1162", "lock_order_debug_missing_unlock, 1162", "lock_order_dependencies, 1162", "lock_order_extra_dependencies, 1163", "lock_order_output_directory, 1163", "lock_order_print_txt, 1163", "lock_order_trace_loop, 1164", "lock_order_trace_missing_arc, 1164", "lock_order_trace_missing_key, 1164", "lock_order_trace_missing_unlock, 1165", "lock_wait_timeout, 817", "log_bin, 3563", "log_bin_basename, 3563", "log_bin_index, 3563", "log_bin_trust_function_creators, 3564", "log_bin_use_v1_row_events, 3564", "log_error, 818", "log_error_services, 819", "log_error_suppression_list, 819", "log_error_verbosity, 820", "log_output, 820", "log_queries_not_using_indexes, 821", "log_raw, 821", "log_slave_updates, 3564", "log_slow_extra, 822", "log_slow_slave_statements, 3517", "log_statements_unsafe_for_binlog, 3565", "log_syslog, 822", "log_syslog_facility, 823", "log_syslog_include_pid, 823", "log_syslog_tag, 823", "log_throttle_queries_not_using_indexes, 824", "log_timestamps, 823", "long_query_time, 824", "5581" ]
[ [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 110, 94, 333, 835 ], [ 927, 964, 37, 11 ] ]
[ [ 110, 94, 229, 11 ], [ 110, 110, 204, 11 ], [ 110, 126, 188, 11 ], [ 110, 141, 154, 11 ], [ 110, 157, 232, 11 ], [ 110, 172, 204, 11 ], [ 110, 188, 221, 11 ], [ 110, 203, 178, 11 ], [ 110, 219, 129, 11 ], [ 110, 234, 160, 11 ], [ 110, 250, 135, 11 ], [ 110, 265, 134, 11 ], [ 110, 281, 162, 11 ], [ 110, 296, 149, 11 ], [ 110, 312, 89, 11 ], [ 110, 327, 161, 11 ], [ 110, 343, 177, 11 ], [ 110, 358, 124, 11 ], [ 110, 374, 221, 11 ], [ 110, 390, 279, 11 ], [ 110, 405, 282, 11 ], [ 110, 421, 304, 11 ], [ 110, 436, 238, 11 ], [ 110, 452, 284, 11 ], [ 110, 467, 254, 11 ], [ 110, 483, 193, 11 ], [ 110, 498, 212, 11 ], [ 110, 514, 269, 11 ], [ 110, 529, 272, 11 ], [ 110, 545, 295, 11 ], [ 110, 560, 170, 11 ], [ 110, 576, 100, 11 ], [ 110, 591, 188, 11 ], [ 110, 607, 149, 11 ], [ 110, 622, 280, 11 ], [ 110, 638, 258, 11 ], [ 110, 654, 104, 11 ], [ 110, 669, 174, 11 ], [ 110, 685, 233, 11 ], [ 110, 700, 180, 11 ], [ 110, 716, 115, 11 ], [ 110, 731, 272, 11 ], [ 110, 747, 95, 11 ], [ 110, 762, 186, 11 ], [ 110, 778, 148, 11 ], [ 110, 793, 251, 11 ], [ 110, 809, 302, 11 ], [ 110, 824, 116, 11 ], [ 110, 840, 172, 11 ], [ 110, 855, 210, 11 ], [ 110, 871, 148, 11 ], [ 110, 887, 333, 11 ], [ 110, 902, 154, 11 ], [ 110, 918, 161, 11 ], [ 927, 964, 37, 11 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
686966c91e7bcb5f2e8cec75ae7dfd136624e0890e5f50a8e5f4c79aa0af78ef
refman-8.0-en.pdf
5,610
6,228
612
792
1,025
1,025
manuals
manuals
3393
[ "MongoDB Documentation, Release 3.0.4", "mongod --port 27019 --dbpath /srv/mongodb/rs0-2 --replSet rs0 --smallfiles --oplogSize", "128", "This starts each instance as a member of a replica set named", "rs0", ", each running on a distinct port, and specifies", "the path to your data directory with the", "--dbpath", "setting. If you are already using the suggested ports, select", "different ports.", "The", "--smallfiles", "and", "--oplogSize", "settings", "reduce", "the", "disk", "space", "that", "each", "mongod", "instance", "uses.", "This", "is", "ideal", "for", "testing", "and", "development", "deployments", "as", "it", "prevents", "over-", "loading", "your", "machine.", "For", "more", "information", "on", "these", "and", "other", "configuration", "options,", "see", "http://docs.mongodb.org/manual/reference/configuration-options", ".", "mongo --port 27017", "3.", "Connect to one of your", "mongod", "instances through the", "mongo", "shell. You will need to indicate which instance", "by specifying its port number. For the sake of simplicity and clarity, you may want to choose the first one, as in", "the following command;", "4.", "In the", "mongo", "shell, use", "rs.initiate()", "to initiate the replica set. You can create a replica set configuration", "object in the", "mongo", "shell environment, as in the following example:", "rsconf = {", "_id: \"rs0\",", "members: [", "{", "_id: 0,", "host: \"<hostname>:27017\"", "}", "]", "}", "replacing", "<hostname>", "with your system’s hostname, and then pass the", "rsconf", "file to", "rs.initiate()", "as", "follows:", "rs.conf()", "rs.initiate( rsconf )", "The replica set configuration object resembles the following", "rs.add(\"<hostname>:27018\")", "rs.add(\"<hostname>:27019\")", "6.", "In the", "mongo", "shell connected to the", "primary", ", add the second and third", "mongod", "instances to the replica set", "using the", "rs.add()", "method. Replace", "<hostname>", "with your system’s hostname in the following examples:", "5.", "Display the current", "replica configuration", "(page 652) by issuing the following command:", "{", "\"_id\" : \"rs0\",", "\"version\" : 4,", "\"members\" : [", "{", "\"_id\" : 1,", "\"host\" : \"localhost:27017\"", "}", "]", "}", "9.3.", "Replica Set Tutorials", "607", "When complete, you should have a fully functional replica set. The new replica set will elect a", "primary", "." ]
[ [ 585, 46, 318, 12 ], [ 162, 102, 810, 8 ], [ 162, 102, 810, 8 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 130, 742, 42 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 184, 742, 57 ], [ 162, 310, 162, 8 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 254, 762, 42 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 141, 338, 762, 26 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 378, 423, 122 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 519, 742, 26 ], [ 162, 612, 81, 8 ], [ 162, 559, 189, 8 ], [ 162, 639, 400, 11 ], [ 162, 859, 234, 23 ], [ 162, 859, 234, 23 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 819, 762, 26 ], [ 141, 587, 609, 11 ], [ 141, 587, 609, 11 ], [ 141, 587, 609, 11 ], [ 141, 587, 609, 11 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 162, 664, 315, 136 ], [ 120, 961, 201, 12 ], [ 120, 961, 201, 12 ], [ 876, 961, 27, 12 ], [ 162, 901, 692, 11 ], [ 162, 901, 692, 11 ], [ 162, 901, 692, 11 ] ]
[ [ 585, 46, 318, 12 ], [ 162, 102, 774, 8 ], [ 946, 102, 27, 8 ], [ 162, 130, 401, 11 ], [ 568, 131, 30, 9 ], [ 598, 130, 305, 11 ], [ 162, 146, 260, 11 ], [ 427, 146, 80, 9 ], [ 512, 146, 392, 11 ], [ 162, 161, 98, 11 ], [ 162, 184, 25, 11 ], [ 203, 185, 120, 9 ], [ 338, 184, 24, 11 ], [ 377, 185, 110, 9 ], [ 502, 184, 50, 11 ], [ 568, 184, 44, 11 ], [ 628, 184, 20, 11 ], [ 663, 184, 27, 11 ], [ 706, 184, 37, 11 ], [ 758, 184, 25, 11 ], [ 798, 184, 30, 11 ], [ 844, 185, 60, 9 ], [ 162, 200, 54, 11 ], [ 231, 200, 32, 11 ], [ 300, 200, 29, 11 ], [ 344, 200, 11, 11 ], [ 369, 200, 32, 11 ], [ 416, 200, 19, 11 ], [ 450, 200, 44, 11 ], [ 509, 200, 24, 11 ], [ 548, 200, 85, 11 ], [ 648, 200, 85, 11 ], [ 747, 200, 13, 11 ], [ 776, 200, 9, 11 ], [ 799, 200, 55, 11 ], [ 870, 200, 34, 11 ], [ 162, 215, 50, 11 ], [ 226, 215, 30, 11 ], [ 271, 215, 60, 11 ], [ 366, 215, 22, 11 ], [ 403, 215, 34, 11 ], [ 451, 215, 78, 11 ], [ 544, 215, 16, 11 ], [ 575, 215, 34, 11 ], [ 623, 215, 24, 11 ], [ 661, 215, 34, 11 ], [ 710, 215, 88, 11 ], [ 813, 215, 53, 11 ], [ 883, 215, 21, 11 ], [ 162, 232, 620, 9 ], [ 783, 231, 4, 11 ], [ 162, 310, 162, 8 ], [ 141, 254, 12, 11 ], [ 158, 254, 159, 11 ], [ 322, 255, 60, 9 ], [ 387, 254, 142, 11 ], [ 534, 255, 50, 9 ], [ 589, 254, 315, 11 ], [ 162, 270, 742, 11 ], [ 162, 285, 163, 11 ], [ 141, 338, 13, 11 ], [ 159, 338, 41, 11 ], [ 204, 338, 50, 9 ], [ 259, 338, 62, 11 ], [ 325, 338, 130, 9 ], [ 459, 338, 444, 11 ], [ 162, 353, 82, 11 ], [ 248, 354, 50, 9 ], [ 303, 353, 317, 11 ], [ 162, 378, 90, 8 ], [ 261, 392, 99, 8 ], [ 261, 407, 90, 8 ], [ 360, 421, 9, 8 ], [ 369, 435, 63, 8 ], [ 369, 449, 216, 8 ], [ 360, 463, 9, 8 ], [ 342, 477, 9, 8 ], [ 243, 492, 9, 8 ], [ 162, 519, 62, 11 ], [ 228, 520, 100, 9 ], [ 332, 519, 314, 11 ], [ 650, 520, 60, 9 ], [ 714, 519, 38, 11 ], [ 756, 520, 130, 9 ], [ 890, 519, 13, 11 ], [ 162, 534, 54, 11 ], [ 162, 612, 81, 8 ], [ 162, 559, 189, 8 ], [ 162, 639, 400, 11 ], [ 162, 859, 234, 8 ], [ 162, 874, 234, 8 ], [ 141, 819, 13, 11 ], [ 159, 819, 42, 11 ], [ 207, 820, 50, 9 ], [ 263, 819, 149, 11 ], [ 418, 819, 53, 11 ], [ 472, 819, 179, 11 ], [ 657, 820, 60, 9 ], [ 723, 819, 181, 11 ], [ 162, 834, 60, 11 ], [ 226, 835, 80, 9 ], [ 310, 834, 113, 11 ], [ 427, 835, 100, 9 ], [ 530, 834, 373, 11 ], [ 141, 587, 12, 11 ], [ 158, 587, 131, 11 ], [ 294, 587, 140, 11 ], [ 439, 587, 311, 11 ], [ 162, 664, 9, 8 ], [ 189, 678, 126, 8 ], [ 189, 692, 126, 8 ], [ 189, 706, 117, 8 ], [ 216, 721, 9, 8 ], [ 243, 735, 90, 8 ], [ 243, 749, 234, 8 ], [ 216, 763, 9, 8 ], [ 189, 777, 9, 8 ], [ 162, 792, 9, 8 ], [ 120, 961, 28, 12 ], [ 153, 961, 168, 12 ], [ 876, 961, 27, 12 ], [ 162, 901, 630, 11 ], [ 796, 901, 53, 11 ], [ 850, 901, 4, 11 ] ]
[ 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 4, 9, 9, 9 ]
f44facd3654aa96ac9865d8f56c4bd3d129f189a57e90dbc93e9233e11495a87
MongoDB-manual.pdf
610
946
612
792
1,025
1,025
manuals
manuals
3394
[ "MetLife, Inc.", "Notes to the Consolidated Financial Statements — (Continued)", "Information regarding goodwill by segment, as well as Corporate & Other, was as follows:", "(1)", "Includes goodwill of $5.2 billion and $5.4 billion from the Japan operations at December 31, 2012 and 2011, respectively.", "(2)", "The $405 million of net goodwill in Corporate & Other at December 31, 2011 relates to goodwill acquired as a part of the 2005 Travelers acquisition.", "For purposes of goodwill impairment testing, the $405 million of Corporate & Other goodwill was allocated to business units of the Retail; Group,", "Voluntary & Worksite Benefits; and Corporate Benefit Funding segments in the amounts of $210 million, $9 million and $186 million, respectively.", "The Retail segment amount was further allocated within the segment to the Life & Other and the Annuities reporting units in the amounts of", "$34 million and $176 million, respectively. As reflected in the table, the $176 million related to the Retail Annuities reporting unit was impaired in the", "third quarter of 2012.", "(3)", "Goodwill associated with the ALICO Acquisition was allocated among the Company’s segments in the first quarter of 2011.", "(4)", "As of November 1, 2011, American Life’s current and deferred income taxes were affected by measurement period adjustments, which resulted in a", "$39 million increase to the goodwill recorded as part of the ALICO Acquisition related to Japan which is included in the Asia segment. See Note 19.", "(5)", "In 2011, the Company performed a goodwill impairment test on MetLife Bank, which was a separate reporting unit in Corporate & Other. A", "comparison of the fair value of the reporting unit, using a market multiple approach, to its carrying value indicated a potential for goodwill impairment.", "A further comparison of the implied fair value of the reporting unit’s goodwill with its carrying amount indicated that the entire amount of goodwill", "associated with MetLife Bank was impaired. Consequently, the Company recorded a $65 million goodwill impairment charge that is reflected as a", "net investment loss for the year ended December 31, 2011.", "MetLife, Inc.", "164", "Retail", "Group,", "Voluntary &", "Worksite", "Benefits", "Corporate", "Benefit", "Funding", "Latin", "America", "Asia (1)", "EMEA", "Corporate", "& Other (2)", "Unallocated", "Goodwill", "Total", "(In millions)", "Balance at January 1, 2010", "Goodwill ...............................", "$3,125", "$138", "$900", "$214", "$", "160", "$", "40", "$ 470", "$", "—", "$ 5,047", "Accumulated impairment ..................", "—", "—", "—", "—", "—", "—", "—", "—", "—", "Total goodwill, net .....................", "3,125", "138", "900", "214", "160", "40", "470", "—", "5,047", "Acquisitions ............................", "—", "—", "—", "—", "—", "—", "—", "6,959", "6,959", "Effect of foreign currency", "translation and other ....................", "—", "—", "—", "15", "(88)", "(2)", "—", "(150)", "(225)", "Balance at December 31, 2010", "Goodwill ...............................", "3,125", "138", "900", "229", "72", "38", "470", "6,809", "11,781", "Accumulated impairment ..................", "—", "—", "—", "—", "—", "—", "—", "—", "—", "Total goodwill, net .....................", "3,125", "138", "900", "229", "72", "38", "470", "6,809", "11,781", "Goodwill allocation (3) ....................", "—", "—", "—", "312", "5,163", "1,334", "—", "(6,809)", "—", "Acquisitions (4)", ".........................", "—", "—", "—", "—", "39", "—", "—", "—", "39", "Impairments (5)", ".........................", "—", "—", "—", "—", "—", "—", "(65)", "—", "(65)", "Effect of foreign currency", "translation and other ....................", "—", "—", "—", "(40)", "259", "(39)", "—", "—", "180", "Balance at December 31, 2011", "Goodwill ...............................", "3,125", "138", "900", "501", "5,533", "1,333", "470", "—", "12,000", "Accumulated impairment ..................", "—", "—", "—", "—", "—", "—", "(65)", "—", "(65)", "Total goodwill, net .....................", "3,125", "138", "900", "501", "5,533", "1,333", "405", "—", "11,935", "Acquisitions ............................", "—", "—", "—", "—", "—", "1", "—", "—", "1", "Impairments ............................", "(1,692)", "—", "—", "—", "—", "—", "(176)", "—", "(1,868)", "Effect of foreign currency", "translation and other ....................", "—", "—", "—", "26", "(146)", "5", "—", "—", "(115)", "Balance at December 31, 2012", "Goodwill ...............................", "3,125", "138", "900", "527", "5,387", "1,339", "470", "—", "11,886", "Accumulated impairment ..................", "(1,692)", "—", "—", "—", "—", "—", "(241)", "—", "(1,933)", "Total goodwill, net .....................", "$1,433", "$138", "$900", "$527", "$5,387", "$1,339", "$ 229", "$", "—", "$ 9,953" ]
[ [ 463, 70, 98, 11 ], [ 263, 93, 499, 11 ], [ 111, 123, 494, 9 ], [ 91, 658, 698, 9 ], [ 91, 658, 698, 9 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 671, 844, 74 ], [ 91, 749, 702, 9 ], [ 91, 749, 702, 9 ], [ 91, 761, 844, 22 ], [ 91, 761, 844, 22 ], [ 91, 761, 844, 22 ], [ 91, 787, 844, 61 ], [ 91, 787, 844, 61 ], [ 91, 787, 844, 61 ], [ 91, 787, 844, 61 ], [ 91, 787, 844, 61 ], [ 91, 787, 844, 61 ], [ 884, 954, 50, 7 ], [ 91, 954, 19, 8 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ], [ 89, 140, 849, 496 ] ]
[ [ 463, 70, 98, 11 ], [ 263, 93, 499, 11 ], [ 111, 123, 494, 9 ], [ 91, 658, 11, 9 ], [ 112, 658, 676, 9 ], [ 91, 671, 10, 9 ], [ 112, 671, 823, 9 ], [ 111, 684, 824, 9 ], [ 111, 697, 824, 9 ], [ 111, 710, 823, 9 ], [ 111, 723, 824, 9 ], [ 111, 736, 117, 9 ], [ 91, 749, 11, 9 ], [ 112, 749, 681, 9 ], [ 91, 761, 11, 9 ], [ 112, 761, 822, 9 ], [ 111, 774, 818, 9 ], [ 91, 787, 11, 9 ], [ 114, 787, 821, 9 ], [ 111, 800, 824, 9 ], [ 111, 813, 823, 9 ], [ 111, 826, 824, 9 ], [ 111, 839, 333, 9 ], [ 884, 954, 50, 7 ], [ 91, 954, 19, 8 ], [ 383, 164, 27, 7 ], [ 447, 141, 32, 7 ], [ 435, 149, 55, 7 ], [ 441, 156, 42, 7 ], [ 443, 164, 39, 7 ], [ 507, 149, 48, 7 ], [ 514, 156, 34, 7 ], [ 512, 164, 38, 7 ], [ 581, 156, 23, 7 ], [ 573, 164, 39, 7 ], [ 632, 164, 34, 7 ], [ 693, 164, 29, 7 ], [ 746, 156, 48, 7 ], [ 745, 164, 50, 7 ], [ 812, 156, 57, 7 ], [ 820, 164, 42, 7 ], [ 899, 164, 24, 7 ], [ 627, 177, 54, 7 ], [ 91, 191, 154, 9 ], [ 91, 206, 270, 9 ], [ 374, 206, 44, 9 ], [ 448, 206, 29, 9 ], [ 517, 206, 29, 9 ], [ 578, 206, 29, 9 ], [ 629, 206, 7, 9 ], [ 648, 206, 22, 9 ], [ 687, 206, 7, 9 ], [ 713, 206, 14, 9 ], [ 754, 206, 33, 9 ], [ 819, 206, 7, 9 ], [ 850, 206, 13, 9 ], [ 886, 206, 48, 9 ], [ 91, 222, 270, 9 ], [ 405, 222, 16, 9 ], [ 464, 222, 16, 9 ], [ 533, 222, 16, 9 ], [ 594, 222, 16, 9 ], [ 657, 222, 16, 9 ], [ 714, 222, 16, 9 ], [ 773, 222, 16, 9 ], [ 850, 222, 16, 9 ], [ 921, 222, 16, 9 ], [ 104, 242, 256, 9 ], [ 385, 242, 33, 9 ], [ 455, 242, 22, 9 ], [ 524, 242, 22, 9 ], [ 585, 242, 22, 9 ], [ 648, 242, 22, 9 ], [ 713, 242, 14, 9 ], [ 764, 242, 22, 9 ], [ 850, 242, 13, 9 ], [ 901, 242, 33, 9 ], [ 91, 258, 270, 9 ], [ 405, 258, 16, 9 ], [ 464, 258, 16, 9 ], [ 533, 258, 16, 9 ], [ 594, 258, 16, 9 ], [ 657, 258, 16, 9 ], [ 714, 258, 16, 9 ], [ 773, 258, 16, 9 ], [ 830, 258, 33, 9 ], [ 901, 258, 33, 9 ], [ 91, 274, 138, 9 ], [ 104, 285, 256, 9 ], [ 405, 285, 16, 9 ], [ 464, 285, 16, 9 ], [ 533, 285, 16, 9 ], [ 592, 285, 18, 9 ], [ 652, 285, 21, 9 ], [ 717, 285, 13, 9 ], [ 773, 285, 13, 9 ], [ 838, 285, 28, 9 ], [ 909, 285, 28, 9 ], [ 91, 306, 176, 9 ], [ 91, 321, 270, 9 ], [ 385, 321, 33, 9 ], [ 455, 321, 22, 9 ], [ 524, 321, 22, 9 ], [ 585, 321, 22, 9 ], [ 655, 321, 14, 9 ], [ 713, 321, 14, 9 ], [ 764, 321, 22, 9 ], [ 830, 321, 33, 9 ], [ 894, 321, 40, 9 ], [ 91, 337, 270, 9 ], [ 405, 337, 16, 9 ], [ 464, 337, 16, 9 ], [ 533, 337, 16, 9 ], [ 594, 337, 16, 9 ], [ 657, 337, 16, 9 ], [ 714, 337, 16, 9 ], [ 773, 337, 16, 9 ], [ 850, 337, 16, 9 ], [ 921, 337, 16, 9 ], [ 104, 355, 256, 9 ], [ 385, 355, 33, 9 ], [ 455, 355, 22, 9 ], [ 524, 355, 22, 9 ], [ 585, 355, 22, 9 ], [ 655, 355, 14, 9 ], [ 713, 355, 14, 9 ], [ 764, 355, 22, 9 ], [ 830, 355, 33, 9 ], [ 894, 355, 40, 9 ], [ 91, 371, 270, 9 ], [ 405, 371, 16, 9 ], [ 464, 371, 16, 9 ], [ 533, 371, 16, 9 ], [ 585, 371, 25, 9 ], [ 637, 371, 33, 9 ], [ 694, 371, 33, 9 ], [ 773, 371, 13, 9 ], [ 826, 371, 39, 9 ], [ 921, 371, 13, 9 ], [ 91, 386, 84, 9 ], [ 185, 386, 175, 9 ], [ 405, 386, 16, 9 ], [ 464, 386, 16, 9 ], [ 533, 386, 16, 9 ], [ 594, 386, 16, 9 ], [ 655, 386, 18, 9 ], [ 714, 386, 16, 9 ], [ 773, 386, 16, 9 ], [ 850, 386, 16, 9 ], [ 920, 386, 18, 9 ], [ 91, 402, 85, 9 ], [ 185, 402, 175, 9 ], [ 405, 402, 16, 9 ], [ 464, 402, 16, 9 ], [ 533, 402, 16, 9 ], [ 594, 402, 16, 9 ], [ 657, 402, 16, 9 ], [ 714, 402, 16, 9 ], [ 768, 402, 21, 9 ], [ 850, 402, 13, 9 ], [ 917, 402, 21, 9 ], [ 91, 417, 138, 9 ], [ 104, 429, 256, 9 ], [ 405, 429, 16, 9 ], [ 464, 429, 16, 9 ], [ 533, 429, 16, 9 ], [ 589, 429, 21, 9 ], [ 648, 429, 22, 9 ], [ 710, 429, 21, 9 ], [ 773, 429, 13, 9 ], [ 850, 429, 13, 9 ], [ 913, 429, 22, 9 ], [ 91, 447, 176, 9 ], [ 91, 462, 270, 9 ], [ 385, 462, 33, 9 ], [ 455, 462, 22, 9 ], [ 524, 462, 22, 9 ], [ 585, 462, 22, 9 ], [ 637, 462, 33, 9 ], [ 694, 462, 33, 9 ], [ 764, 462, 22, 9 ], [ 850, 462, 13, 9 ], [ 894, 462, 40, 9 ], [ 91, 478, 270, 9 ], [ 405, 478, 16, 9 ], [ 464, 478, 16, 9 ], [ 533, 478, 16, 9 ], [ 594, 478, 16, 9 ], [ 657, 478, 16, 9 ], [ 714, 478, 16, 9 ], [ 768, 478, 21, 9 ], [ 850, 478, 13, 9 ], [ 917, 478, 21, 9 ], [ 104, 496, 256, 9 ], [ 385, 496, 33, 9 ], [ 455, 496, 22, 9 ], [ 524, 496, 22, 9 ], [ 585, 496, 22, 9 ], [ 637, 496, 33, 9 ], [ 694, 496, 33, 9 ], [ 764, 496, 22, 9 ], [ 850, 496, 13, 9 ], [ 894, 496, 40, 9 ], [ 91, 512, 270, 9 ], [ 405, 512, 16, 9 ], [ 464, 512, 16, 9 ], [ 533, 512, 16, 9 ], [ 594, 512, 16, 9 ], [ 657, 512, 16, 9 ], [ 720, 512, 10, 9 ], [ 773, 512, 16, 9 ], [ 850, 512, 16, 9 ], [ 927, 512, 10, 9 ], [ 91, 527, 270, 9 ], [ 382, 527, 39, 9 ], [ 464, 527, 13, 9 ], [ 533, 527, 13, 9 ], [ 594, 527, 13, 9 ], [ 657, 527, 13, 9 ], [ 714, 527, 13, 9 ], [ 761, 527, 28, 9 ], [ 850, 527, 13, 9 ], [ 898, 527, 39, 9 ], [ 91, 543, 138, 9 ], [ 104, 554, 256, 9 ], [ 405, 554, 16, 9 ], [ 464, 554, 16, 9 ], [ 533, 554, 16, 9 ], [ 592, 554, 18, 9 ], [ 644, 554, 28, 9 ], [ 720, 554, 7, 9 ], [ 773, 554, 13, 9 ], [ 850, 554, 13, 9 ], [ 909, 554, 28, 9 ], [ 91, 572, 176, 9 ], [ 91, 588, 270, 9 ], [ 385, 588, 33, 9 ], [ 455, 588, 22, 9 ], [ 524, 588, 22, 9 ], [ 585, 588, 22, 9 ], [ 637, 588, 33, 9 ], [ 694, 588, 33, 9 ], [ 764, 588, 22, 9 ], [ 850, 588, 13, 9 ], [ 894, 588, 40, 9 ], [ 91, 604, 270, 9 ], [ 382, 604, 39, 9 ], [ 464, 604, 13, 9 ], [ 533, 604, 13, 9 ], [ 594, 604, 13, 9 ], [ 657, 604, 13, 9 ], [ 714, 604, 13, 9 ], [ 761, 604, 28, 9 ], [ 850, 604, 13, 9 ], [ 898, 604, 39, 9 ], [ 104, 622, 256, 9 ], [ 374, 622, 44, 9 ], [ 448, 622, 29, 9 ], [ 517, 622, 29, 9 ], [ 578, 622, 29, 9 ], [ 629, 622, 40, 9 ], [ 687, 622, 40, 9 ], [ 754, 622, 33, 9 ], [ 819, 622, 7, 9 ], [ 850, 622, 13, 9 ], [ 886, 622, 48, 9 ] ]
[ 7, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8 ]
dd544a5157f74c63684f9ed14a4fcdf61c617cb3f3b3528af35deea76224b55e
NYSE_MET_2012.pdf
169
215
612
792
1,025
1,025
ann_reports_10_14_fancy
financial_reports
3395
[ "4. ", "If on a main container, take a piece of Type-3 tape big ", "enough to match the outside patch as marked. Cover ", "the inside of the damaged area with the tape.", "5. ", "Pin or glue the tape patch to the inside as marked. Use ", "the single needle to sew around the patch overstitching ", "the ends a minimum of 1 inch.", "6. ", "Take the zigzag machine and stitch the edges of the ", "damaged area together as described in step 4, Hidden ", "Patches. ", "[Figure L] ", "Repair complete.", "2. ", "Lay the patch in place over the damaged area and mark ", "the corners with a marking pencil. ", "[Figure J]", "3. ", "Take a straight pin and transfer the corners of the patch ", "area through to the inside. ", "[Figure K]", "1. ", "Duplicate", "steps", "1–5", "that", "was", "used", "in", "the", "“Overlay ", "Patches” section above but substitute webbing for ", "the inside patch and use container fabric for the ", "outside patch.", "2. ", "Fold the edges of the outside patch under a minimum ", "of .5 inch. Stitch around the perimeter approximately ", ".12 inch from the edge. Run a second row of stitches ", "approximately", ".25", "inch", "inside and", "parallel to", "the ", "first. ", "[Figure M]", " This gives added strength to the ", "patch and an appearance of a French fell seam patch. ", "Repair complete.", "Single-Side Fabric Patches", "For most fabric patches on a container panel, there is not ", "enough", "area to perform a proper French", "fell seam patch. ", "Consequently, the single-side patch is the most common ", "technique used. By using matching fabric and thread, a large ", "damaged area may be covered to affect the necessary repair. ", "While called a single-side patch, in effect it is an enlarged ", "version of the overlay patch. A smaller piece of webbing or ", "fabric is used to cover the damaged area on the inside and the ", "outside is covered with the single-side patch. This technique ", "is used where there may be large holes or widespread damage ", "and replacement of the panel is not practical.", "7-41" ]
[ [ 569, 56, 397, 48 ], [ 569, 56, 397, 48 ], [ 569, 56, 397, 48 ], [ 569, 56, 397, 48 ], [ 569, 112, 397, 48 ], [ 569, 112, 397, 48 ], [ 569, 112, 397, 48 ], [ 569, 112, 397, 48 ], [ 569, 167, 397, 48 ], [ 569, 167, 397, 48 ], [ 569, 167, 397, 48 ], [ 569, 167, 397, 48 ], [ 569, 167, 397, 48 ], [ 569, 167, 397, 48 ], [ 139, 301, 399, 31 ], [ 139, 301, 399, 31 ], [ 139, 301, 399, 31 ], [ 139, 301, 399, 31 ], [ 139, 605, 399, 31 ], [ 139, 605, 399, 31 ], [ 139, 605, 399, 31 ], [ 139, 605, 399, 31 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 700, 397, 64 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 569, 772, 400, 114 ], [ 553, 492, 213, 17 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 553, 512, 415, 180 ], [ 928, 964, 34, 16 ] ]
[ [ 569, 56, 17, 15 ], [ 600, 56, 366, 15 ], [ 600, 73, 366, 15 ], [ 600, 89, 308, 15 ], [ 569, 112, 17, 15 ], [ 600, 112, 366, 15 ], [ 600, 128, 365, 15 ], [ 600, 145, 210, 15 ], [ 569, 167, 17, 15 ], [ 600, 167, 366, 15 ], [ 600, 184, 366, 15 ], [ 600, 200, 61, 15 ], [ 661, 201, 78, 15 ], [ 740, 200, 117, 15 ], [ 139, 301, 17, 15 ], [ 170, 301, 368, 15 ], [ 170, 317, 240, 15 ], [ 410, 318, 72, 15 ], [ 139, 605, 17, 15 ], [ 170, 605, 368, 15 ], [ 170, 621, 184, 15 ], [ 354, 622, 76, 15 ], [ 569, 700, 17, 15 ], [ 600, 700, 52, 15 ], [ 666, 700, 33, 15 ], [ 713, 700, 15, 15 ], [ 741, 700, 26, 15 ], [ 781, 700, 20, 15 ], [ 815, 700, 22, 15 ], [ 851, 700, 13, 15 ], [ 877, 700, 20, 15 ], [ 911, 700, 55, 15 ], [ 600, 717, 366, 15 ], [ 600, 733, 366, 15 ], [ 600, 750, 95, 15 ], [ 569, 772, 17, 15 ], [ 600, 772, 366, 15 ], [ 600, 789, 366, 15 ], [ 600, 806, 366, 15 ], [ 600, 822, 88, 15 ], [ 702, 822, 11, 15 ], [ 727, 822, 27, 15 ], [ 768, 822, 67, 15 ], [ 849, 822, 74, 15 ], [ 938, 822, 27, 15 ], [ 600, 839, 36, 15 ], [ 638, 839, 82, 15 ], [ 721, 839, 248, 15 ], [ 600, 855, 366, 15 ], [ 600, 872, 117, 15 ], [ 553, 492, 213, 17 ], [ 553, 512, 415, 15 ], [ 553, 529, 39, 15 ], [ 608, 529, 222, 15 ], [ 845, 529, 121, 15 ], [ 553, 545, 415, 15 ], [ 553, 562, 413, 15 ], [ 553, 578, 413, 15 ], [ 553, 595, 413, 15 ], [ 553, 612, 413, 15 ], [ 553, 628, 412, 15 ], [ 553, 645, 413, 15 ], [ 553, 661, 411, 15 ], [ 553, 678, 309, 15 ], [ 928, 964, 34, 16 ] ]
[ 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 7, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4 ]
932bba2123d231a6f5d42ca046770b5f1cf4af6ad31ccaee6c8fa7fc0b06db75
prh_change1.pdf
216
350
594
774
1,025
1,025
faa_regulations
laws_and_regulations
3396
[ "for the non-Christian people.", "SECTION ", "82", ".", "General", "Authority", "of", "Governor-General", "to", "Fix", "Boundaries and Make New Subdivisions", ". — The Governor-General may by", "executive order define the boundary, or boundaries, of any province, subprovince,", "municipality, township, or other political subdiv", "ision, and increase or diminish the", "territory", "comprised", "therein,", "may", "divide", "any", "province", "into", "one", "or", "more", "subprovinces, separate any political division other than a province, into such", "portions as may be required, merge any of such subdivisions or portions w", "ith", "another, name any new subdivision so created, and may change the seat of", "Government within any subdivision to such place therein as the public welfare may", "require. When any action by the Governor-General in accordance herewith makes", "necessary a chang", "e of the territory under the jurisdiction of any administrative", "officer or any judicial officer, the Governor-General, with the recommendation and", "advice of the head of the Department having executive control of such officer,", "shall redistrict the territory", " of the several officers affected and assign such officers", "to the new districts so formed. ", "[1748-2; Comp. 343.]", "Upon the changing of the limits of political divisions in pursuance of the", "foregoing authority, an equitable distribution of the funds and obligations of the", "divisions thereby affected shall be made in such manner as may be recommended", "by the Insular Audit", "or and approved by the Governor-General.", "[1748-1.]", "SECTION ", "83", ".", "Deportation of Subject of Foreign Power", ". — A subject", "of a foreign power residing in the Philippine Islands shall not be deported,", "expelled, or excluded from said Islands or repatriated to his own country by the", "Governor-General except upon prior ", "investigation, conducted by said Executive or", "his authorized agent, of the ground upon which such action is contemplated. In", "such case the person concerned shall be informed of the charge or charges against", "him and he shall be allowed not less than three", " days for the preparation of his", "defense. He shall also have the right to be heard by himself or counsel, to produce", "witnesses in his own behalf, and to cross-examine the opposing witnesses.", "[2113-1.]", "SECTION ", "84", ".", "Examination of Books and Accounts of Auditor and", "Treasurer", ". — The Governor-General shall cause to be made, as often as by him", "deemed advisable, an examination of the books and accounts of the Auditor and", "Treasurer, and a comparison of the resul", "ts shown by the same, and also an", "36", "Copyright 2012", "CD Technologies Asia, Inc. and Accesslaw, Inc.", "Philippine Law Encyclopedia 2011" ]
[ [ 140, 102, 258, 20 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 140, 136, 745, 293 ], [ 202, 442, 180, 19 ], [ 140, 475, 744, 79 ], [ 140, 475, 744, 79 ], [ 140, 475, 744, 79 ], [ 140, 475, 744, 79 ], [ 140, 475, 744, 79 ], [ 202, 568, 77, 19 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 140, 601, 744, 176 ], [ 202, 791, 77, 19 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 140, 823, 745, 79 ], [ 886, 925, 11, 9 ], [ 123, 925, 503, 9 ], [ 123, 925, 503, 9 ], [ 123, 925, 503, 9 ] ]
[ [ 140, 102, 258, 20 ], [ 202, 136, 99, 20 ], [ 301, 136, 22, 20 ], [ 324, 136, 5, 20 ], [ 371, 136, 73, 20 ], [ 469, 136, 84, 20 ], [ 578, 136, 17, 20 ], [ 621, 136, 167, 20 ], [ 813, 136, 17, 20 ], [ 855, 136, 29, 20 ], [ 140, 155, 392, 20 ], [ 532, 155, 353, 20 ], [ 140, 175, 744, 20 ], [ 140, 194, 434, 20 ], [ 574, 194, 310, 20 ], [ 140, 214, 72, 20 ], [ 230, 214, 92, 20 ], [ 341, 214, 67, 20 ], [ 426, 214, 37, 20 ], [ 481, 214, 55, 20 ], [ 555, 214, 31, 20 ], [ 604, 214, 78, 20 ], [ 700, 214, 34, 20 ], [ 752, 214, 32, 20 ], [ 803, 214, 18, 20 ], [ 839, 214, 45, 20 ], [ 140, 233, 744, 20 ], [ 140, 252, 721, 20 ], [ 861, 252, 23, 20 ], [ 140, 272, 744, 20 ], [ 140, 291, 745, 20 ], [ 140, 311, 744, 20 ], [ 140, 330, 169, 20 ], [ 309, 330, 575, 20 ], [ 140, 350, 744, 20 ], [ 140, 369, 745, 20 ], [ 140, 388, 241, 20 ], [ 380, 388, 504, 20 ], [ 140, 408, 275, 20 ], [ 202, 442, 180, 19 ], [ 202, 475, 682, 20 ], [ 140, 495, 744, 20 ], [ 140, 514, 744, 20 ], [ 140, 534, 178, 20 ], [ 318, 534, 379, 20 ], [ 202, 568, 77, 19 ], [ 202, 601, 99, 20 ], [ 301, 601, 22, 20 ], [ 324, 601, 5, 20 ], [ 371, 601, 381, 20 ], [ 752, 601, 132, 20 ], [ 140, 620, 744, 20 ], [ 140, 640, 744, 20 ], [ 140, 659, 335, 20 ], [ 475, 659, 409, 20 ], [ 140, 679, 744, 20 ], [ 140, 698, 744, 20 ], [ 140, 717, 450, 20 ], [ 590, 717, 294, 20 ], [ 140, 737, 744, 20 ], [ 140, 756, 663, 20 ], [ 202, 791, 77, 19 ], [ 202, 824, 99, 20 ], [ 301, 824, 22, 20 ], [ 324, 824, 5, 20 ], [ 371, 823, 513, 20 ], [ 140, 843, 89, 20 ], [ 229, 843, 655, 20 ], [ 140, 863, 745, 20 ], [ 140, 882, 398, 20 ], [ 538, 882, 346, 20 ], [ 886, 925, 11, 9 ], [ 123, 925, 70, 9 ], [ 208, 925, 220, 9 ], [ 469, 925, 158, 9 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 4, 4 ]
f1dbc79d664bb445476e2734b972276610ee852ec3ce93a2d528f88e5ca42bd8
19161231-Act-2657.pdf
35
884
595
841
1,025
1,025
philippine_laws
laws_and_regulations
3397
[ "TM 1-320 ", "4 ", "AIRSHIP AERODYNAMICS ", "of symmetry, usually parallel to axis of the propeller, is called ", "the longitudinal axis; the axis perpendicular to this in the plane ", "of symmetry is called the normal axis; and the third axis perpen›", "dicular to the other two is called the lateral axis. ", "In mathe›", "matical discussions, the first of these axes, drawn from front to ", "rear, is called the ", "X ", "axis; the second, drawn upward, the ", "Z ", "axis; ", "and the third, running from right to left, the ", "Y ", "axis. ", "Ballast.-Any ", "substance, usually sand or water, carried in a balloon ", "or airship and intended to be thrown out, if necessary, for the pur›", "pose of reducing load carried and thus altering aerostatic rela›", "tions. ", "Ballonet.- Compartment ", "of variable volume constructed of fabric ", "or partitioned otf within the interior of a balloon or airship. ", "It ", "is ", "usually partially inflated with air under control of valves from a ", "blower or from an air scoop. ", "By blowing in or letting out air, ", "it serves to compensate for changes of volume in gas contained in ", "the envelope and to maintain gas pressure, thus preventing defor›", "mation or structural failure. ", "By means of two or niore ballonets, ", "often used in nonrigid airships, the trim can also be controlled. ", "The ballonet should not be confused with gas cell. ", "Blade back.-Si<le ", "of propeller blade which corresponds to upper ", "surface of an airfoil. ", "Blade face.-Surface ", "of propeller blade which corresponds to lower ", "surface of an airfoil. ", "Sometimes called \"thrust face\" or \"driving ", "face.\" ", "Blade width ratio.-Ratio ", "of developed width of propeller blade at ", "any point to circumference of •a circle whose radius is the distance ", "of that point from the propeller axis. ", "Bow stiffener.-Rigid ", "member attached to bow of nonrigid or semi›", "rigid envelope to reinforce it against pressure caused by motion ", "of the airship. ", "Sometimes called \"nose stiffener\" or \"nose batten.\" ", "Buoyancy.-Upward ", "air force on aerostat which is derived from ", "aerostatic conditions. ", "It ", "is equal to weight of air displaced. ", "Buoyancy, center of ", "(aerostat).-Center of gravity of volume of ", "contained gas. ", "Oamber.-Rise ", "in curve of an airfoil section from its chord, usually ", "expressed as ratio of departure of the curve from the chord to the ", "length of the chord. ", "\"Upper camber\" refers to the upper surface ", "of an airfoil and \"lower camber\" to the lower surface; \"mean ", "camber\" is the mean of these two. ", "Capacity.-", "Volume of the gas-containing portion of an aerostat. ", "Oar.-", "That portion of an airship intended to carry power unit or units, ", "6 " ]
[ [ 796, 31, 149, 33 ], [ 796, 31, 149, 33 ], [ 333, 53, 299, 12 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 100, 85, 798, 138 ], [ 75, 227, 821, 77 ], [ 75, 227, 821, 77 ], [ 75, 227, 821, 77 ], [ 75, 227, 821, 77 ], [ 75, 227, 821, 77 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 76, 307, 823, 177 ], [ 77, 489, 821, 36 ], [ 77, 489, 821, 36 ], [ 77, 489, 821, 36 ], [ 77, 529, 823, 57 ], [ 77, 529, 823, 57 ], [ 77, 529, 823, 57 ], [ 77, 529, 823, 57 ], [ 77, 529, 823, 57 ], [ 77, 590, 823, 56 ], [ 77, 590, 823, 56 ], [ 77, 590, 823, 56 ], [ 77, 590, 823, 56 ], [ 78, 650, 822, 56 ], [ 78, 650, 822, 56 ], [ 78, 650, 822, 56 ], [ 78, 650, 822, 56 ], [ 78, 650, 822, 56 ], [ 79, 711, 818, 36 ], [ 79, 711, 818, 36 ], [ 79, 711, 818, 36 ], [ 79, 711, 818, 36 ], [ 79, 711, 818, 36 ], [ 79, 751, 822, 36 ], [ 79, 751, 822, 36 ], [ 79, 751, 822, 36 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 78, 792, 821, 96 ], [ 79, 893, 766, 16 ], [ 79, 893, 766, 16 ], [ 79, 913, 820, 16 ], [ 79, 913, 820, 16 ], [ 476, 955, 19, 14 ] ]
[ [ 796, 31, 149, 15 ], [ 856, 51, 17, 13 ], [ 333, 53, 299, 12 ], [ 100, 85, 795, 15 ], [ 100, 105, 796, 15 ], [ 100, 126, 788, 15 ], [ 101, 146, 642, 15 ], [ 763, 146, 124, 15 ], [ 100, 166, 797, 15 ], [ 100, 186, 216, 15 ], [ 318, 186, 25, 17 ], [ 352, 186, 448, 15 ], [ 802, 186, 23, 17 ], [ 831, 186, 65, 15 ], [ 101, 207, 559, 15 ], [ 663, 207, 22, 16 ], [ 697, 207, 57, 15 ], [ 75, 227, 176, 16 ], [ 249, 227, 646, 15 ], [ 101, 247, 788, 15 ], [ 101, 267, 787, 15 ], [ 101, 288, 67, 15 ], [ 76, 307, 297, 16 ], [ 381, 308, 516, 15 ], [ 102, 328, 716, 15 ], [ 837, 328, 39, 15 ], [ 870, 328, 27, 15 ], [ 101, 348, 793, 15 ], [ 101, 368, 356, 15 ], [ 479, 368, 420, 15 ], [ 102, 388, 797, 15 ], [ 102, 409, 788, 15 ], [ 102, 429, 339, 15 ], [ 462, 429, 434, 15 ], [ 103, 449, 794, 15 ], [ 103, 469, 617, 15 ], [ 77, 489, 225, 16 ], [ 310, 490, 588, 15 ], [ 102, 510, 253, 15 ], [ 77, 529, 257, 16 ], [ 334, 530, 563, 15 ], [ 103, 549, 253, 15 ], [ 375, 549, 525, 15 ], [ 103, 571, 71, 15 ], [ 77, 590, 318, 16 ], [ 397, 590, 503, 15 ], [ 104, 610, 794, 15 ], [ 104, 631, 459, 15 ], [ 78, 650, 264, 16 ], [ 342, 651, 548, 15 ], [ 104, 671, 793, 15 ], [ 104, 691, 171, 15 ], [ 295, 691, 605, 15 ], [ 79, 711, 245, 16 ], [ 335, 711, 562, 15 ], [ 104, 731, 252, 15 ], [ 374, 731, 41, 15 ], [ 409, 731, 425, 15 ], [ 79, 751, 258, 16 ], [ 344, 751, 557, 15 ], [ 104, 772, 172, 15 ], [ 78, 792, 181, 16 ], [ 260, 792, 639, 15 ], [ 104, 812, 796, 15 ], [ 104, 832, 244, 15 ], [ 367, 832, 533, 15 ], [ 105, 853, 792, 15 ], [ 104, 873, 404, 15 ], [ 79, 893, 136, 16 ], [ 214, 893, 631, 15 ], [ 79, 913, 57, 16 ], [ 154, 913, 746, 15 ], [ 476, 955, 19, 14 ] ]
[ 5, 5, 5, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 9, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 3, 4 ]
11e72bb8ef743c46b7b43abbac512d946eaa5ab1861f7dc4568e1b0ebb5f8560
airship_aerodynamics.pdf
5
68
930
1,437
1,025
1,025
faa_regulations
laws_and_regulations
3398
[ "Lfd.", "Nr.", "Frequenzbereich", "(GHz)", "Zuweisung an Funkdienste", "Nutzung", "500", "231,5 – 232", "5", "31", "FESTER FUNKDIENST", "MOBILFUNKDIENST", "Nichtnavigatorischer Ortungsfunkdienst", "ziv., mil.", "501", "232 – 235", "5", "31", "FESTER FUNKDIENST", "FESTER FUNKDIENST ÜBER SATELLITEN", "(Richtung Weltraum – Erde)", "MOBILFUNKDIENST", "Nichtnavigatorischer Ortungsfunkdienst", "ziv., mil.", "502", "235 – 238", "D563B", "5", "31", "ERDERKUNDUNGSFUNKDIENST ÜBER SATELLITEN (passiv)", "FESTER FUNKDIENST ÜBER SATELLITEN", "(Richtung Weltraum – Erde)", "WELTRAUMFORSCHUNGSFUNKDIENST (passiv)", "ziv., mil.", "503", "238 – 240", "5", "31", "FESTER FUNKDIENST", "FESTER FUNKDIENST ÜBER SATELLITEN", "(Richtung Weltraum – Erde)", "MOBILFUNKDIENST", "NICHTNAVIGATORISCHER ORTUNGSFUNKDIENST", "NAVIGATIONSFUNKDIENST", "NAVIGATIONSFUNKDIENST ÜBER SATELLITEN", "ziv., mil.", "504", "240 – 241", "5", "31", "FESTER FUNKDIENST", "MOBILFUNKDIENST", "NICHTNAVIGATORISCHER ORTUNGSFUNKDIENST", "ziv., mil.", "505", "241 – 248", "D138 D149", "5", "10 31", "NICHTNAVIGATORISCHER ORTUNGSFUNKDIENST", "RADIOASTRONOMIEFUNKDIENST", "Amateurfunkdienst", "Amateurfunkdienst über Satelliten", "ziv., mil.", "506", "248 – 250", "D149", "5", "31", "AMATEURFUNKDIENST", "AMATEURFUNKDIENST ÜBER SATELLITEN", "Radioastronomiefunkdienst", "ziv.", "507", "250 – 252", "D340", "31", "ERDERKUNDUNGSFUNKDIENST ÜBER SATELLITEN (passiv)", "RADIOASTRONOMIEFUNKDIENST", "WELTRAUMFORSCHUNGSFUNKDIENST (passiv)", "ziv.", "508", "252 – 265", "D149 D554", "5", "31", "FESTER FUNKDIENST", "MOBILFUNKDIENST", "MOBILFUNKDIENST ÜBER SATELLITEN", "(Richtung Erde – Weltraum)", "NAVIGATIONSFUNKDIENST", "NAVIGATIONSFUNKDIENST ÜBER SATELLITEN", "RADIOASTRONOMIEFUNKDIENST", "ziv., mil.", "509", "265 – 275", "D149", "5", "31", "FESTER FUNKDIENST", "FESTER FUNKDIENST ÜBER SATELLITEN", "(Richtung Erde – Weltraum)", "MOBILFUNKDIENST", "RADIOASTRONOMIEFUNKDIENST", "ziv., mil.", "510", "275 – 3 000", "D565", "5", "31", "RADIOASTRONOMIEFUNKDIENST", "ERDERKUNDUNGSFUNKDIENST ÜBER SATELLITEN (passiv)", "WELTRAUMFORSCHUNGSFUNKDIENST (passiv)", "Amateurfunkdienst", "ziv.", "511", "oberhalb", "3", "000", "nicht zugewiesen", "- Seite 39 von 56 -", "Ein Service des Bundesministeriums der Justiz und für Verbraucherschutz", "sowie des Bundesamts für Justiz ‒ www.gesetze-im-internet.de" ]
[ [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 85, 76, 894, 859 ], [ 472, 993, 114, 15 ], [ 480, 14, 456, 27 ], [ 480, 14, 456, 27 ] ]
[ [ 116, 77, 28, 19 ], [ 119, 92, 22, 19 ], [ 200, 77, 129, 19 ], [ 243, 92, 43, 19 ], [ 499, 84, 208, 19 ], [ 884, 84, 65, 19 ], [ 116, 114, 29, 19 ], [ 181, 114, 99, 19 ], [ 181, 129, 5, 19 ], [ 192, 129, 23, 19 ], [ 359, 114, 162, 19 ], [ 359, 129, 148, 19 ], [ 359, 143, 309, 19 ], [ 884, 114, 64, 19 ], [ 116, 165, 29, 19 ], [ 181, 165, 83, 19 ], [ 181, 180, 5, 19 ], [ 192, 180, 23, 19 ], [ 359, 165, 162, 19 ], [ 359, 180, 307, 19 ], [ 359, 194, 214, 19 ], [ 359, 209, 148, 19 ], [ 359, 224, 309, 19 ], [ 884, 165, 64, 19 ], [ 116, 246, 29, 19 ], [ 181, 246, 83, 19 ], [ 181, 260, 52, 19 ], [ 181, 275, 5, 19 ], [ 192, 275, 23, 19 ], [ 359, 246, 452, 19 ], [ 359, 260, 307, 19 ], [ 359, 275, 214, 19 ], [ 359, 290, 363, 19 ], [ 884, 246, 64, 19 ], [ 116, 312, 29, 19 ], [ 181, 312, 83, 19 ], [ 181, 326, 5, 19 ], [ 192, 326, 23, 19 ], [ 359, 312, 162, 19 ], [ 359, 326, 307, 19 ], [ 359, 341, 214, 19 ], [ 359, 356, 148, 19 ], [ 359, 370, 378, 19 ], [ 359, 385, 206, 19 ], [ 359, 399, 351, 19 ], [ 884, 312, 64, 19 ], [ 116, 422, 29, 19 ], [ 181, 421, 83, 19 ], [ 181, 436, 5, 19 ], [ 192, 436, 23, 19 ], [ 359, 422, 162, 19 ], [ 359, 436, 148, 19 ], [ 359, 451, 378, 19 ], [ 884, 422, 64, 19 ], [ 116, 473, 29, 19 ], [ 181, 473, 83, 19 ], [ 181, 487, 87, 19 ], [ 181, 502, 5, 19 ], [ 192, 502, 47, 19 ], [ 359, 473, 378, 19 ], [ 359, 487, 253, 19 ], [ 359, 502, 148, 19 ], [ 359, 517, 267, 19 ], [ 884, 473, 64, 19 ], [ 116, 539, 29, 19 ], [ 181, 539, 83, 19 ], [ 181, 553, 41, 19 ], [ 181, 568, 5, 19 ], [ 192, 568, 23, 19 ], [ 359, 539, 174, 19 ], [ 359, 553, 319, 19 ], [ 359, 568, 213, 19 ], [ 903, 539, 26, 19 ], [ 116, 590, 29, 19 ], [ 181, 590, 83, 19 ], [ 181, 605, 41, 19 ], [ 181, 619, 19, 19 ], [ 359, 590, 452, 19 ], [ 359, 605, 253, 19 ], [ 359, 619, 363, 19 ], [ 903, 590, 26, 19 ], [ 116, 642, 29, 19 ], [ 181, 641, 83, 19 ], [ 181, 656, 87, 19 ], [ 181, 671, 5, 19 ], [ 192, 671, 23, 19 ], [ 359, 642, 162, 19 ], [ 359, 656, 148, 19 ], [ 359, 671, 292, 19 ], [ 359, 685, 214, 19 ], [ 359, 700, 206, 19 ], [ 359, 715, 351, 19 ], [ 359, 729, 253, 19 ], [ 884, 642, 64, 19 ], [ 116, 751, 29, 19 ], [ 181, 751, 83, 19 ], [ 181, 766, 41, 19 ], [ 181, 780, 5, 19 ], [ 192, 780, 23, 19 ], [ 359, 751, 162, 19 ], [ 359, 766, 307, 19 ], [ 359, 780, 214, 19 ], [ 359, 795, 148, 19 ], [ 359, 810, 253, 19 ], [ 884, 751, 64, 19 ], [ 116, 832, 29, 19 ], [ 181, 832, 99, 19 ], [ 181, 846, 41, 19 ], [ 181, 861, 5, 19 ], [ 192, 861, 23, 19 ], [ 359, 832, 253, 19 ], [ 359, 846, 452, 19 ], [ 359, 861, 363, 19 ], [ 359, 876, 148, 19 ], [ 903, 832, 26, 19 ], [ 116, 898, 29, 19 ], [ 181, 898, 77, 19 ], [ 181, 912, 8, 19 ], [ 197, 912, 31, 19 ], [ 359, 898, 134, 19 ], [ 472, 993, 114, 15 ], [ 480, 14, 456, 15 ], [ 545, 25, 391, 15 ] ]
[ 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 4, 5, 5 ]
9b59438f8b1beebf79180f3494ee1c5225464d9e758d3b0d2759ecb795a2a01a
FreqV.pdf
38
56
595
841
1,025
1,025
german_laws
laws_and_regulations
3399
[ "The most recent actuarial valuation of the UK defined benefit pension plan for funding purposes was as of January 1, 2008. The", "next required actuarial valuation will be as of January 1, 2011. The new valuation will be finalized towards the end of the first quarter", "in 2012.", "The most recent actuarial valuation for funding purposes for the executive defined benefit pension plan in Canada was as of", "January 1, 2009. The next required actuarial valuation will be as of January 1, 2012.", "The Company has chosen to recognize all defined benefit post-employment plan actuarial gains or losses in other comprehensive", "income immediately.", "Information for December 31 regarding the defined benefit post-employment plans, including the defined benefit pension plans,", "supplemental retirement plans and other post-employment defined benefit plans discussed above is as follows:", "70", "CCL Industries Inc. 2011 Annual Report", "Dec 31, 2011", "Dec 31, 2010", "Jan 1, 2010", "Present value of unfunded defined benefit obligations", "$", "59,319", "$", "55,441", "$", "53,483", "Present value of wholly or partly funded defined benefit obligations", "33,154", "28,834", "31,641", "Total present value of obligations", "92,473", "84,275", "85,124", "Fair value of plan assets", "(20,703)", "(19,540)", "(20,691)", "Recognized liability for defined benefit obligations", "71,770", "64,735", "64,433", "Liability for long-service leave and jubilee plans", "1,677", "1,600", "1,652", "Liability for long-term incentive plan", "5,559", "1,792", "—", "Cash-settled share-based payment liability", "2,417", "1,654", "1,150", "Total employee benefits", "81,423", "69,781", "67,235", "Total employee benefits reported in other payables", "3,617", "3,562", "1,756", "Total employee benefits reported in non-current liabilities", "$", "77,806", "$", "66,219", "$", "65,479", "2011", "Canada/U.S.", "U.K.", "Germany", "Other", "Total", "Accrued benefit obligation:", "Balance, beginning of year", "$", "49,977", "$", "22,044", "$", "7,011", "$", "5,243", "$", "84,275", "Current service cost", "418", "—", "244", "453", "1,115", "Interest cost", "2,584", "1,202", "325", "239", "4,350", "Employee contributions", "624", "—", "—", "—", "624", "Benefits paid", "(1,401)", "(536)", "(264)", "(639)", "(2,840)", "Actuarial (gain)/loss", "1,748", "2,458", "(189)", "126", "4,143", "Effect of movements in exchange", "rates", "660", "394", "(72)", "(176)", "806", "Balance, end of year", "$", "54,610", "$", "25,562", "$", "7,055", "$", "5,246", "$", "92,473", "Plan assets:", "Fair value, beginning of year", "$", "4,408", "$", "15,132", "$", "—", "$", "—", "$", "19,540", "Expected return on plan assets", "284", "990", "—", "—", "1,274", "Actuarial losses", "(326)", "(471)", "—", "—", "(797)", "Employee contributions", "—", "—", "103", "—", "103", "Employer contributions", "1,316", "1,031", "161", "639", "3,147", "Benefits paid", "(1,401)", "(536)", "(264)", "(639)", "(2,840)", "Effect of movements in exchange", "rates", "—", "276", "—", "—", "276", "Fair value, end of year", "$", "4,281", "$", "16,422", "$", "—", "$", "—", "$", "20,703", "Funded status, net deficit of plans", "$", "(50,329)", "$", "(9,140)", "$", "(7,055)", "$", "(5,246)", "$", "(71,770)", "Accrued benefit liability", "$", "(50,329)", "$", "(9,140)", "$", "(7,055)", "$", "(5,246)", "$", "(71,770)", "NOTES TO THE CONSOLIDATED FINANCIAL STATEMENTS", "Years ended December 31, 2011 and 2010 (In thousands of Canadian dollars, except share and per share information)" ]
[ [ 60, 123, 843, 41 ], [ 60, 123, 843, 41 ], [ 60, 123, 843, 41 ], [ 60, 182, 843, 25 ], [ 60, 182, 843, 25 ], [ 60, 225, 843, 25 ], [ 60, 225, 843, 25 ], [ 60, 503, 843, 25 ], [ 60, 503, 843, 25 ], [ 60, 985, 230, 7 ], [ 60, 985, 230, 7 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 54, 266, 856, 219 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 57, 542, 854, 396 ], [ 60, 47, 617, 24 ], [ 60, 47, 617, 24 ] ]
[ [ 60, 123, 843, 10 ], [ 60, 139, 843, 10 ], [ 60, 155, 54, 10 ], [ 60, 182, 843, 10 ], [ 60, 198, 536, 10 ], [ 60, 225, 843, 10 ], [ 60, 241, 131, 10 ], [ 60, 503, 843, 10 ], [ 60, 519, 709, 10 ], [ 60, 985, 14, 7 ], [ 86, 985, 204, 7 ], [ 569, 269, 94, 10 ], [ 690, 269, 93, 10 ], [ 823, 269, 81, 10 ], [ 60, 288, 352, 10 ], [ 569, 288, 9, 10 ], [ 613, 288, 49, 10 ], [ 690, 288, 9, 10 ], [ 734, 288, 49, 10 ], [ 810, 288, 9, 10 ], [ 854, 288, 49, 10 ], [ 60, 303, 438, 10 ], [ 613, 303, 49, 10 ], [ 734, 303, 49, 10 ], [ 854, 303, 49, 10 ], [ 60, 325, 219, 10 ], [ 613, 325, 49, 10 ], [ 734, 325, 49, 10 ], [ 854, 325, 49, 10 ], [ 60, 341, 161, 10 ], [ 607, 341, 61, 10 ], [ 729, 341, 58, 10 ], [ 850, 341, 58, 10 ], [ 60, 363, 326, 10 ], [ 613, 363, 49, 10 ], [ 734, 363, 49, 10 ], [ 854, 363, 49, 10 ], [ 60, 379, 309, 10 ], [ 622, 379, 40, 10 ], [ 743, 379, 40, 10 ], [ 863, 379, 40, 10 ], [ 60, 394, 232, 10 ], [ 622, 394, 40, 10 ], [ 743, 394, 40, 10 ], [ 889, 394, 15, 10 ], [ 60, 410, 278, 10 ], [ 622, 410, 40, 10 ], [ 743, 410, 40, 10 ], [ 863, 410, 40, 10 ], [ 60, 432, 157, 10 ], [ 613, 432, 49, 10 ], [ 734, 432, 49, 10 ], [ 854, 432, 49, 10 ], [ 60, 447, 335, 10 ], [ 622, 447, 40, 10 ], [ 743, 447, 40, 10 ], [ 863, 447, 40, 10 ], [ 60, 469, 375, 10 ], [ 569, 469, 9, 10 ], [ 613, 469, 49, 10 ], [ 690, 469, 9, 10 ], [ 734, 469, 49, 10 ], [ 810, 469, 9, 10 ], [ 854, 469, 49, 10 ], [ 60, 546, 36, 10 ], [ 354, 548, 66, 7 ], [ 520, 548, 21, 7 ], [ 618, 548, 45, 7 ], [ 755, 548, 27, 7 ], [ 877, 548, 26, 7 ], [ 60, 566, 175, 10 ], [ 75, 581, 173, 10 ], [ 328, 581, 9, 10 ], [ 372, 581, 49, 10 ], [ 448, 581, 9, 10 ], [ 492, 581, 49, 10 ], [ 569, 581, 9, 10 ], [ 622, 581, 40, 10 ], [ 679, 581, 9, 10 ], [ 743, 581, 40, 10 ], [ 800, 581, 9, 10 ], [ 854, 581, 49, 10 ], [ 75, 597, 131, 10 ], [ 394, 597, 27, 10 ], [ 527, 597, 15, 10 ], [ 636, 597, 27, 10 ], [ 756, 597, 27, 10 ], [ 863, 597, 40, 10 ], [ 75, 612, 83, 10 ], [ 381, 612, 40, 10 ], [ 501, 612, 40, 10 ], [ 636, 612, 27, 10 ], [ 756, 612, 27, 10 ], [ 863, 612, 40, 10 ], [ 75, 628, 153, 10 ], [ 394, 628, 27, 10 ], [ 527, 628, 15, 10 ], [ 648, 628, 15, 10 ], [ 768, 628, 15, 10 ], [ 877, 628, 27, 10 ], [ 75, 643, 87, 10 ], [ 376, 643, 49, 10 ], [ 510, 643, 36, 10 ], [ 631, 643, 36, 10 ], [ 752, 643, 36, 10 ], [ 858, 643, 52, 10 ], [ 75, 659, 133, 10 ], [ 381, 659, 40, 10 ], [ 501, 659, 40, 10 ], [ 631, 659, 36, 10 ], [ 756, 659, 27, 10 ], [ 863, 659, 40, 10 ], [ 75, 674, 218, 10 ], [ 90, 690, 33, 10 ], [ 394, 690, 27, 10 ], [ 515, 690, 27, 10 ], [ 640, 690, 27, 10 ], [ 752, 690, 36, 10 ], [ 877, 690, 27, 10 ], [ 60, 712, 135, 10 ], [ 328, 712, 9, 10 ], [ 372, 712, 49, 10 ], [ 448, 712, 9, 10 ], [ 492, 712, 49, 10 ], [ 569, 712, 9, 10 ], [ 622, 712, 40, 10 ], [ 679, 712, 9, 10 ], [ 743, 712, 40, 10 ], [ 800, 712, 9, 10 ], [ 854, 712, 49, 10 ], [ 60, 734, 81, 10 ], [ 75, 750, 183, 10 ], [ 328, 750, 9, 10 ], [ 381, 750, 40, 10 ], [ 448, 750, 9, 10 ], [ 492, 750, 49, 10 ], [ 569, 750, 9, 10 ], [ 648, 750, 15, 10 ], [ 679, 750, 9, 10 ], [ 768, 750, 15, 10 ], [ 800, 750, 9, 10 ], [ 854, 750, 49, 10 ], [ 75, 765, 205, 10 ], [ 394, 765, 27, 10 ], [ 515, 765, 27, 10 ], [ 648, 765, 15, 10 ], [ 768, 765, 15, 10 ], [ 863, 765, 40, 10 ], [ 75, 781, 104, 10 ], [ 390, 781, 36, 10 ], [ 510, 781, 36, 10 ], [ 648, 781, 15, 10 ], [ 768, 781, 15, 10 ], [ 871, 781, 38, 10 ], [ 75, 796, 153, 10 ], [ 406, 796, 15, 10 ], [ 527, 796, 15, 10 ], [ 636, 796, 27, 10 ], [ 768, 796, 15, 10 ], [ 877, 796, 27, 10 ], [ 75, 812, 150, 10 ], [ 381, 812, 40, 10 ], [ 501, 812, 40, 10 ], [ 636, 812, 27, 10 ], [ 756, 812, 27, 10 ], [ 863, 812, 40, 10 ], [ 75, 827, 87, 10 ], [ 376, 827, 49, 10 ], [ 510, 827, 36, 10 ], [ 631, 827, 36, 10 ], [ 752, 827, 36, 10 ], [ 858, 827, 52, 10 ], [ 75, 843, 218, 10 ], [ 90, 858, 33, 10 ], [ 406, 858, 15, 10 ], [ 515, 858, 27, 10 ], [ 648, 858, 15, 10 ], [ 768, 858, 15, 10 ], [ 877, 858, 27, 10 ], [ 60, 880, 145, 10 ], [ 328, 880, 9, 10 ], [ 381, 880, 40, 10 ], [ 448, 880, 9, 10 ], [ 492, 880, 49, 10 ], [ 569, 880, 9, 10 ], [ 648, 880, 15, 10 ], [ 679, 880, 9, 10 ], [ 768, 880, 15, 10 ], [ 800, 880, 9, 10 ], [ 854, 880, 49, 10 ], [ 60, 902, 226, 10 ], [ 328, 902, 9, 10 ], [ 367, 902, 58, 10 ], [ 448, 902, 9, 10 ], [ 497, 902, 49, 10 ], [ 569, 902, 9, 10 ], [ 618, 902, 49, 10 ], [ 679, 902, 9, 10 ], [ 738, 902, 49, 10 ], [ 800, 902, 9, 10 ], [ 848, 902, 61, 10 ], [ 60, 924, 152, 10 ], [ 328, 924, 9, 10 ], [ 367, 924, 58, 10 ], [ 448, 924, 9, 10 ], [ 497, 924, 49, 10 ], [ 569, 924, 9, 10 ], [ 618, 924, 49, 10 ], [ 679, 924, 9, 10 ], [ 738, 924, 49, 10 ], [ 800, 924, 9, 10 ], [ 848, 924, 61, 10 ], [ 60, 47, 440, 8 ], [ 60, 63, 617, 7 ] ]
[ 9, 9, 9, 9, 9, 9, 9, 9, 9, 4, 4, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 8, 5, 5 ]
3cc793ea8d2a5d8fbee10fc801a97a5789f15ad58d0605533b3f72d169fc7826
NYSE_CBL_2011.pdf
71
96
612
792
1,025
1,025
ann_reports_10_14_fancy
financial_reports