h$/2,}      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\None$ #$'(-./23589>?+ pretty-types Internal ]' format generation. Used internally by  instances to generate the format string piece by piece with the values for the instances of e.g. , , or . pretty-typesGenerate a piece of a ]' format string from a proxy for a type. pretty-typesInternal state used by  in  pretty-types)Internal type of the indentation used by  in  pretty-typesThe monad used by  to keep track of indentation. pretty-typesAn internal' type class for rendering the types of kind . pretty-types-Given any proxy to a promoted constructor of , generate a String.  pretty-typesReturn ^= if contents would be writting to the output of rendered via   pretty-types&Write a title and print the indented, H&-fied body starting on the next line.  pretty-typesApply a   to a type in order to get a   pretty-typesAn abstract declaration of a pretty-printing (type-)function3 that takes a specific kind of types as parameter.  pretty-typesKind of   data types.The type that all data types share, such that they can be passed to  .)Sometimes it is desirable to pass around pretty-printing functions called   in this library. A   is a parameterized pretty-printer. that accepts a parameter of a specific kind. For example: data PutStrIsh :: Prettifies Symbol type instance PrettifyWith PutStrIsh str = PutStr str  ++ PutStr "ish" showPretty (Proxy @(PrettifyWith PutStrIsh "That's pretty okay"))"That's pretty okayish" pretty-types formatting options. pretty-typesHexa decimal rendering:showPretty (Proxy::Proxy (PrettyNat PrettyUnpadded PrettyPrecise PrettyHex 51966))"cafe" pretty-types$Hexa decimal rendering (upper case):showPretty (Proxy::Proxy (PrettyNat PrettyUnpadded PrettyPrecise PrettyHexU 51966))"CAFE" pretty-typesDecimal rendering:showPretty (Proxy::Proxy (PrettyNat PrettyUnpadded PrettyPrecise PrettyHexU 51966))"51966" pretty-typesBinary rendering:showPretty (Proxy::Proxy (PrettyNat PrettyUnpadded PrettyPrecise PrettyHexU 51966))"1100101011111110" pretty-typesThe precision for  and . pretty-typesNo minimum precision. pretty-typesPrecision, for _s the maximum width, for `s the minimum digits. NOTEs will never be shorter than the minimum number of digits, wheres  PutStr "bar"))@foo: bar@1 pretty-typesLike 2" but begin the body on a new line.=showPretty (Proxy :: Proxy (PutStr "foo" <:$$> PutStr "bar"))@foo:bar@2 pretty-types&A label followed by a colon and space :  followed by another element.4showPretty (Proxy :: Proxy ("foo" <:> PutStr "bar"))@foo: bar@3 pretty-typesCreate  from a `( formatted as 64-bit bit representation,)showPretty (Proxy :: Proxy (PutBits64 5))"00000000000000000000000000000000000000000000000000000000000000000000101"4 pretty-typesCreate  from a `( formatted as 32-bit bit representation,)showPretty (Proxy :: Proxy (PutBits32 5))%"00000000000000000000000000000000101"5 pretty-typesCreate  from a `( formatted as 16-bit bit representation,)showPretty (Proxy :: Proxy (PutBits16 5))"00000000000000101"6 pretty-typesCreate  from a `' formatted as 8-bit bit representation,(showPretty (Proxy :: Proxy (PutBits8 5)) "00000101"7 pretty-typesCreate  from a `! formatted as bit representation,'showPretty (Proxy :: Proxy (PutBits 5))"101"8 pretty-typesCreate  from a ` formatted as 64 bit hex number using uppercase letters for the hex digits.9 pretty-typesCreate  from a ` formatted as 32 bit hex number using uppercase letters for the hex digits.: pretty-typesCreate  from a ` formatted as 16 bit hex number using uppercase letters for the hex digits.; pretty-typesCreate  from a ` formatted as 8 bit hex number using uppercase letters for the hex digits.< pretty-typesCreate  from a ` formatted as hex number using lower-case letters for the hex digits.= pretty-typesCreate  from a ` formatted as 64 bit hex number using lower-case letters for the hex digits.> pretty-typesCreate  from a ` formatted as 32 bit hex number using lower-case letters for the hex digits.? pretty-typesCreate  from a ` formatted as 16 bit hex number using lower-case letters for the hex digits.@ pretty-typesCreate  from a ` formatted as 8 bit hex number using lower-case letters for the hex digits.A pretty-typesCreate  from a ` formatted as hex number using lower-case letters for the hex digits.B pretty-typesA  for a number with a width.C pretty-typesA  for a number.D pretty-typesA 2 for a string with a newline character at the end.E pretty-typesA ) for a string with the exact given width.F pretty-typesA  for a string.G pretty-typesRender a type of kind a.H pretty-types Create a  from a type.'This is a type-level equivalent of the b class.Write an instance of this for converting your type (preferrable of your kind also) to a promoted .I pretty-types"Pretty print either types of kind  or any other type with a H instance.J pretty-types;Internal; write a possibly indented string, and update the  accordingly.c pretty-typesPretty print a d value.e pretty-typesRender f as F Doubleg pretty-typesRender h as F Floati pretty-typesRender j as F Boolk pretty-typesRender l as F Integerm pretty-typesRender n as F Into pretty-typesRender p as F Int64q pretty-typesRender r as F Int32s pretty-typesRender t as F Int16u pretty-typesRender v as F Int8w pretty-typesRender x as F Word64y pretty-typesRender z as F Word32{ pretty-typesRender | as F Word16} pretty-typesRender ~ as F Word8 pretty-typesRender  as F "'False" pretty-typesRender ^ as F "'True" pretty-typesA type of kind _ is translated to F. pretty-typesA type of kind  has a trivial id-likeH instance. pretty-typesRender a type of kind a. pretty-typesA type of kind ` is translated to C.K pretty-types Render an indented, nested type.L pretty-types9Render the first document, and if it is empty, the secondM pretty-typesAdd a  suffix to x, but only if   holds.N pretty-types Prefix a  to x, but only if   of x holds.O pretty-typesConcatenate two s. If one of them is empty print the other without any seperation character.P pretty-types!Print a single newline character.Q pretty-typesPrint a single space character.R pretty-typesPrint nothing.S pretty-typesTranslation of  to a string with the numeric precision value, prependen by a dot ".".T pretty-typesTranslation of  to an empty modifier stringU pretty-typesTranslation of , to a string with the numeric padding value.V pretty-typesTranslation of  to an empty modifier stringW pretty-typesTranslation of  to ] format character: bX pretty-typesTranslation of  to ] format character: dY pretty-typesTranslation of  to ] format character: XZ pretty-typesTranslation of  to ] format character: x[ pretty-typesPrint a ` using the ]! and the given format parameters.\ pretty-typesPrint a _ using the ]! and the given format parameters.I pretty-types A proxy to the type to print. A H instance for t must exists.  "# !$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJIHGFEDCBA@?>=<;:9876543210/.-,+*)('&%$"# !  J+3,4-5.5/6031525      !"#$%&'()*+,-./0123456789:;<=>?@ABCDEFGHIJKLMNOPQRSTUVWXYZ[\]^_`ab`ac`ad]ef]ghijklm`ano`apq`arstuvw`axy]z{|]z}~]z]z]]]]`a+pretty-types-0.4.0.0-C491wt8N4GT7wtpACivd8fData.Type.PrettyPrintfArgModifiertoPrintfArgModifier PTRenderStateAtBeginningOfLineAlreadyIndented IndentationPTMPrettyTypeShowptShow ptHasContent PrettyTitled PrettifyWith Prettifier PrettifiesPrettyNatFormat PrettyHex PrettyHexU PrettyDec PrettyBitPrettyPrecision PrettyPrecise PrettyPaddedPrettyUnpadded PrettyType PrettyEmpty PrettySpace PrettyNewline PrettySymbol PrettyNat PrettyPrefix PrettyInfix PrettySuffix PrettyIndentPrettyAlternative PrettyOften PrettyMany PrettyManyIn PrettyHigh PrettyWidePrettySurrounded PrettyParens<$$--><$$><||><+><++><:$$--><:$$><:> PutBits64 PutBits32 PutBits16PutBits8PutBitsPutHeX64PutHeX32PutHeX16PutHeX8PutHeXPutHex64PutHex32PutHex16PutHex8PutHexPutNatWPutNatPutStrLnPutStrWPutStr ToPrettyMaybeToPretty showPretty writeIndented$fPrettyTypeShowPrettyIndent!$fPrettyTypeShowPrettyAlternative$fPrettyTypeShowPrettySuffix$fPrettyTypeShowPrettyPrefix$fPrettyTypeShowPrettyInfix$fPrettyTypeShowPrettyNewline$fPrettyTypeShowPrettySpace$fPrettyTypeShowPrettyEmpty1$fPrintfArgModifierPrettyPrecisionPrettyPrecision/$fPrintfArgModifierPrettyPrecisionPrettyPrecise+$fPrintfArgModifierPrettyPaddedPrettyPadded-$fPrintfArgModifierPrettyPaddedPrettyUnpadded+$fPrintfArgModifierPrettyNatFormatPrettyBit+$fPrintfArgModifierPrettyNatFormatPrettyDec,$fPrintfArgModifierPrettyNatFormatPrettyHexU+$fPrintfArgModifierPrettyNatFormatPrettyHex$fPrettyTypeShowPrettyNat$fPrettyTypeShowPrettySymbolbase Text.Printfprintfghc-prim GHC.TypesTrueSymbolNat GHC.MaybeMaybeGHC.ShowShowD:R:ToPrettyTYPETagged%tagged-0.8.6.1-A3E8I7zg2qBFE9O5vQsg6C Data.TaggedTaggedD:R:ToPrettyTYPEDoubleDoubleD:R:ToPrettyTYPEFloatFloatD:R:ToPrettyTYPEBoolBoolD:R:ToPrettyTYPEIntegerinteger-wired-inGHC.Integer.TypeIntegerD:R:ToPrettyTYPEIntIntD:R:ToPrettyTYPEInt64GHC.IntInt64D:R:ToPrettyTYPEInt32Int32D:R:ToPrettyTYPEInt16Int16D:R:ToPrettyTYPEInt8Int8D:R:ToPrettyTYPEWord64GHC.WordWord64D:R:ToPrettyTYPEWord32Word32D:R:ToPrettyTYPEWord16Word16D:R:ToPrettyTYPEWord8Word8D:R:ToPrettyBoolFalseFalseD:R:ToPrettyBoolTrueD:R:ToPrettySymboltD:R:ToPrettyPrettyTypetD:R:ToPrettyMaybetD:R:ToPrettyNatt